Operations filters

This commit is contained in:
Daniel W. Anner 2024-05-21 20:57:44 +00:00 committed by GitHub
parent ade7984611
commit cd28fff8b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
21 changed files with 217 additions and 217 deletions

View File

@ -88755,7 +88755,7 @@
}, },
"payload_url": { "payload_url": {
"title": "URL", "title": "URL",
"description": "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.", "description": "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.",
"type": "string", "type": "string",
"maxLength": 500, "maxLength": 500,
"minLength": 1 "minLength": 1
@ -88765,7 +88765,7 @@
"type": "boolean" "type": "boolean"
}, },
"http_method": { "http_method": {
"title": "HTTP method", "title": "HTTP Method",
"type": "string", "type": "string",
"enum": [ "enum": [
"GET", "GET",
@ -88776,7 +88776,7 @@
] ]
}, },
"http_content_type": { "http_content_type": {
"title": "HTTP content type", "title": "HTTP Content Type",
"description": "The complete list of official content types is available <a href=\"https://www.iana.org/assignments/media-types/media-types.xhtml\">here</a>.", "description": "The complete list of official content types is available <a href=\"https://www.iana.org/assignments/media-types/media-types.xhtml\">here</a>.",
"type": "string", "type": "string",
"maxLength": 100, "maxLength": 100,
@ -88784,7 +88784,7 @@
}, },
"additional_headers": { "additional_headers": {
"title": "Additional headers", "title": "Additional headers",
"description": "User-supplied HTTP headers to be sent with the request in addition to the HTTP content type. Headers should be defined in the format <code>Name: Value</code>. Jinja2 template processing is supported with the same context as the request body (below).", "description": "User-supplied HTTP headers to be sent with the request in addition to the HTTP Content Type. Headers should be defined in the format <code>Name: Value</code>. Jinja2 template processing is supported with the same context as the request body (below).",
"type": "string" "type": "string"
}, },
"body_template": { "body_template": {

View File

@ -64307,7 +64307,7 @@ definitions:
type: boolean type: boolean
payload_url: payload_url:
title: URL title: URL
description: This URL will be called using the HTTP method defined when the description: This URL will be called using the HTTP Method defined when the
webhook is called. Jinja2 template processing is supported with the same webhook is called. Jinja2 template processing is supported with the same
context as the request body. context as the request body.
type: string type: string
@ -64317,7 +64317,7 @@ definitions:
title: Enabled title: Enabled
type: boolean type: boolean
http_method: http_method:
title: HTTP method title: HTTP Method
type: string type: string
enum: enum:
- GET - GET
@ -64326,7 +64326,7 @@ definitions:
- PATCH - PATCH
- DELETE - DELETE
http_content_type: http_content_type:
title: HTTP content type title: HTTP Content Type
description: The complete list of official content types is available <a href="https://www.iana.org/assignments/media-types/media-types.xhtml">here</a>. description: The complete list of official content types is available <a href="https://www.iana.org/assignments/media-types/media-types.xhtml">here</a>.
type: string type: string
maxLength: 100 maxLength: 100
@ -64334,7 +64334,7 @@ definitions:
additional_headers: additional_headers:
title: Additional headers title: Additional headers
description: 'User-supplied HTTP headers to be sent with the request in addition description: 'User-supplied HTTP headers to be sent with the request in addition
to the HTTP content type. Headers should be defined in the format <code>Name: to the HTTP Content Type. Headers should be defined in the format <code>Name:
Value</code>. Jinja2 template processing is supported with the same context Value</code>. Jinja2 template processing is supported with the same context
as the request body (below).' as the request body (below).'
type: string type: string

View File

@ -26,7 +26,7 @@ To learn more about this feature, check out the [GraphQL API documentation](../i
## Webhooks ## Webhooks
A webhook is a mechanism for conveying to some external system a change that has taken place in NetBox. For example, you may want to notify a monitoring system whenever the status of a device is updated in NetBox. To do this, first create a [webhook](../models/extras/webhook.md) identifying the remote receiver (URL), HTTP method, and any other necessary parameters. Then, define an [event rule](../models/extras/eventrule.md) which is triggered by device changes to transmit the webhook. A webhook is a mechanism for conveying to some external system a change that has taken place in NetBox. For example, you may want to notify a monitoring system whenever the status of a device is updated in NetBox. To do this, first create a [webhook](../models/extras/webhook.md) identifying the remote receiver (URL), HTTP Method, and any other necessary parameters. Then, define an [event rule](../models/extras/eventrule.md) which is triggered by device changes to transmit the webhook.
When NetBox detects a change to a device, an HTTP request containing the details of the change and who made it be sent to the specified receiver. Webhooks are an excellent mechanism for building event-based automation processes. To learn more about this feature, check out the [webhooks documentation](../integrations/webhooks.md). When NetBox detects a change to a device, an HTTP request containing the details of the change and who made it be sent to the specified receiver. Webhooks are an excellent mechanism for building event-based automation processes. To learn more about this feature, check out the [webhooks documentation](../integrations/webhooks.md).

View File

@ -14,9 +14,9 @@ For example, suppose you want to automatically configure a monitoring system to
For example, you might create a NetBox webhook to [trigger a Slack message](https://api.slack.com/messaging/webhooks) any time an IP address is created. You can accomplish this using the following configuration: For example, you might create a NetBox webhook to [trigger a Slack message](https://api.slack.com/messaging/webhooks) any time an IP address is created. You can accomplish this using the following configuration:
* Object type: IPAM > IP address * Object type: IPAM > IP address
* HTTP method: `POST` * HTTP Method: `POST`
* URL: Slack incoming webhook URL * URL: Slack incoming webhook URL
* HTTP content type: `application/json` * HTTP Content Type: `application/json`
* Body template: `{"text": "IP address {{ data['address'] }} was created by {{ username }}!"}` * Body template: `{"text": "IP address {{ data['address'] }} was created by {{ username }}!"}`
### Available Context ### Available Context
@ -46,7 +46,7 @@ If no body template is specified, the request body will be populated with a JSON
"id": 19, "id": 19,
"name": "Site 1", "name": "Site 1",
"slug": "site-1", "slug": "site-1",
"status": "status":
"value": "active", "value": "active",
"label": "Active", "label": "Active",
"id": 1 "id": 1

View File

@ -27,7 +27,7 @@ The events which will trigger the rule. At least one event type must be selected
| Creations | A new object has been created | | Creations | A new object has been created |
| Updates | An existing object has been modified | | Updates | An existing object has been modified |
| Deletions | An object has been deleted | | Deletions | An object has been deleted |
| Job starts | A job for an object starts | | Job Starts | A job for an object starts |
| Job ends | A job for an object terminates | | Job ends | A job for an object terminates |
### Conditions ### Conditions

View File

@ -27,7 +27,7 @@ The events which will trigger the webhook. At least one event type must be selec
| Creations | A new object has been created | | Creations | A new object has been created |
| Updates | An existing object has been modified | | Updates | An existing object has been modified |
| Deletions | An object has been deleted | | Deletions | An object has been deleted |
| Job starts | A job for an object starts | | Job Starts | A job for an object starts |
| Job ends | A job for an object terminates | | Job ends | A job for an object terminates |
### URL ### URL

View File

@ -78,42 +78,42 @@ class JobFilterForm(SavedFiltersMixin, FilterForm):
required=False required=False
) )
created__after = forms.DateTimeField( created__after = forms.DateTimeField(
label=_('Created after'), label=_('Created After'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
created__before = forms.DateTimeField( created__before = forms.DateTimeField(
label=_('Created before'), label=_('Created Before'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
scheduled__after = forms.DateTimeField( scheduled__after = forms.DateTimeField(
label=_('Scheduled after'), label=_('Scheduled After'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
scheduled__before = forms.DateTimeField( scheduled__before = forms.DateTimeField(
label=_('Scheduled before'), label=_('Scheduled Before'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
started__after = forms.DateTimeField( started__after = forms.DateTimeField(
label=_('Started after'), label=_('Started After'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
started__before = forms.DateTimeField( started__before = forms.DateTimeField(
label=_('Started before'), label=_('Started Before'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
completed__after = forms.DateTimeField( completed__after = forms.DateTimeField(
label=_('Completed after'), label=_('Completed After'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )
completed__before = forms.DateTimeField( completed__before = forms.DateTimeField(
label=_('Completed before'), label=_('Completed Before'),
required=False, required=False,
widget=DateTimePicker() widget=DateTimePicker()
) )

View File

@ -187,7 +187,7 @@ class WebhookBulkEditForm(NetBoxModelBulkEditForm):
http_method = forms.ChoiceField( http_method = forms.ChoiceField(
choices=add_blank_choice(WebhookHttpMethodChoices), choices=add_blank_choice(WebhookHttpMethodChoices),
required=False, required=False,
label=_('HTTP method') label=_('HTTP Method')
) )
payload_url = forms.CharField( payload_url = forms.CharField(
required=False, required=False,

View File

@ -230,7 +230,7 @@ class WebhookFilterForm(NetBoxModelFilterSetForm):
FieldSet('payload_url', 'http_method', 'http_content_type', name=_('Attributes')), FieldSet('payload_url', 'http_method', 'http_content_type', name=_('Attributes')),
) )
http_content_type = forms.CharField( http_content_type = forms.CharField(
label=_('HTTP content type'), label=_('HTTP Content Type'),
required=False required=False
) )
payload_url = forms.CharField( payload_url = forms.CharField(
@ -240,7 +240,7 @@ class WebhookFilterForm(NetBoxModelFilterSetForm):
http_method = forms.MultipleChoiceField( http_method = forms.MultipleChoiceField(
choices=WebhookHttpMethodChoices, choices=WebhookHttpMethodChoices,
required=False, required=False,
label=_('HTTP method') label=_('HTTP Method')
) )
tag = TagFilterField(model) tag = TagFilterField(model)
@ -262,7 +262,7 @@ class EventRuleFilterForm(NetBoxModelFilterSetForm):
action_type = forms.ChoiceField( action_type = forms.ChoiceField(
choices=add_blank_choice(EventRuleActionChoices), choices=add_blank_choice(EventRuleActionChoices),
required=False, required=False,
label=_('Action type') label=_('Action Type')
) )
enabled = forms.NullBooleanField( enabled = forms.NullBooleanField(
label=_('Enabled'), label=_('Enabled'),
@ -276,35 +276,35 @@ class EventRuleFilterForm(NetBoxModelFilterSetForm):
widget=forms.Select( widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
), ),
label=_('Object creations') label=_('Object Creations')
) )
type_update = forms.NullBooleanField( type_update = forms.NullBooleanField(
required=False, required=False,
widget=forms.Select( widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
), ),
label=_('Object updates') label=_('Object Updates')
) )
type_delete = forms.NullBooleanField( type_delete = forms.NullBooleanField(
required=False, required=False,
widget=forms.Select( widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
), ),
label=_('Object deletions') label=_('Object Deletions')
) )
type_job_start = forms.NullBooleanField( type_job_start = forms.NullBooleanField(
required=False, required=False,
widget=forms.Select( widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
), ),
label=_('Job starts') label=_('Job Starts')
) )
type_job_end = forms.NullBooleanField( type_job_end = forms.NullBooleanField(
required=False, required=False,
widget=forms.Select( widget=forms.Select(
choices=BOOLEAN_WITH_BLANK_CHOICES choices=BOOLEAN_WITH_BLANK_CHOICES
), ),
label=_('Job terminations') label=_('Job Terminations')
) )

View File

@ -294,7 +294,7 @@ class EventRuleForm(NetBoxModelForm):
'type_update': _('Updates'), 'type_update': _('Updates'),
'type_delete': _('Deletions'), 'type_delete': _('Deletions'),
'type_job_start': _('Job executions'), 'type_job_start': _('Job executions'),
'type_job_end': _('Job terminations'), 'type_job_end': _('Job Terminations'),
} }
widgets = { widgets = {
'conditions': forms.Textarea(attrs={'class': 'font-monospace'}), 'conditions': forms.Textarea(attrs={'class': 'font-monospace'}),

View File

@ -191,7 +191,7 @@ class Webhook(CustomFieldsMixin, ExportTemplatesMixin, TagsMixin, ChangeLoggedMo
max_length=500, max_length=500,
verbose_name=_('URL'), verbose_name=_('URL'),
help_text=_( help_text=_(
"This URL will be called using the HTTP method defined when the webhook is called. Jinja2 template " "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." "processing is supported with the same context as the request body."
) )
) )
@ -199,12 +199,12 @@ class Webhook(CustomFieldsMixin, ExportTemplatesMixin, TagsMixin, ChangeLoggedMo
max_length=30, max_length=30,
choices=WebhookHttpMethodChoices, choices=WebhookHttpMethodChoices,
default=WebhookHttpMethodChoices.METHOD_POST, default=WebhookHttpMethodChoices.METHOD_POST,
verbose_name=_('HTTP method') verbose_name=_('HTTP Method')
) )
http_content_type = models.CharField( http_content_type = models.CharField(
max_length=100, max_length=100,
default=HTTP_CONTENT_TYPE_JSON, default=HTTP_CONTENT_TYPE_JSON,
verbose_name=_('HTTP content type'), verbose_name=_('HTTP Content Type'),
help_text=_( help_text=_(
'The complete list of official content types is available ' 'The complete list of official content types is available '
'<a href="https://www.iana.org/assignments/media-types/media-types.xhtml">here</a>.' '<a href="https://www.iana.org/assignments/media-types/media-types.xhtml">here</a>.'
@ -214,7 +214,7 @@ class Webhook(CustomFieldsMixin, ExportTemplatesMixin, TagsMixin, ChangeLoggedMo
verbose_name=_('additional headers'), verbose_name=_('additional headers'),
blank=True, blank=True,
help_text=_( help_text=_(
"User-supplied HTTP headers to be sent with the request in addition to the HTTP content type. Headers " "User-supplied HTTP headers to be sent with the request in addition to the HTTP Content Type. Headers "
"should be defined in the format <code>Name: Value</code>. Jinja2 template processing is supported with " "should be defined in the format <code>Name: Value</code>. Jinja2 template processing is supported with "
"the same context as the request body (below)." "the same context as the request body (below)."
) )

View File

@ -1356,35 +1356,35 @@ msgid "Object Type"
msgstr "Art des Objekts" msgstr "Art des Objekts"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Erstellt nach" msgstr "Erstellt nach"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Vorher erstellt" msgstr "Vorher erstellt"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Geplant danach" msgstr "Geplant danach"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Vorher geplant" msgstr "Vorher geplant"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Begonnen danach" msgstr "Begonnen danach"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Hat schon einmal angefangen" msgstr "Hat schon einmal angefangen"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Abgeschlossen nach" msgstr "Abgeschlossen nach"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Vorher abgeschlossen" msgstr "Vorher abgeschlossen"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6626,7 +6626,7 @@ msgstr "Geteilt"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "HTTP-Methode" msgstr "HTTP-Methode"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6801,7 +6801,7 @@ msgid "Content Types"
msgstr "Inhaltstypen" msgstr "Inhaltstypen"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "HTTP-Inhaltstyp" msgstr "HTTP-Inhaltstyp"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6810,27 +6810,27 @@ msgid "Events"
msgstr "Ereignisse" msgstr "Ereignisse"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Art der Aktion" msgstr "Art der Aktion"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Kreationen von Objekten" msgstr "Kreationen von Objekten"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Objektaktualisierungen" msgstr "Objektaktualisierungen"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Löschen von Objekten" msgstr "Löschen von Objekten"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Der Job beginnt" msgstr "Der Job beginnt"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Kündigungen von Arbeitsstellen" msgstr "Kündigungen von Arbeitsstellen"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7613,7 +7613,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7638,7 +7638,7 @@ msgstr "zusätzliche Header"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1322,35 +1322,35 @@ msgid "Object Type"
msgstr "" msgstr ""
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "" msgstr ""
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "" msgstr ""
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "" msgstr ""
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "" msgstr ""
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "" msgstr ""
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "" msgstr ""
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "" msgstr ""
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "" msgstr ""
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6383,7 +6383,7 @@ msgstr ""
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "" msgstr ""
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6548,7 +6548,7 @@ msgid "Content Types"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6557,27 +6557,27 @@ msgid "Events"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "" msgstr ""
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7300,7 +7300,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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 " "called. Jinja2 template processing is supported with the same context as the "
"request body." "request body."
msgstr "" msgstr ""
@ -7318,7 +7318,7 @@ msgstr ""
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1354,35 +1354,35 @@ msgid "Object Type"
msgstr "Tipo de objeto" msgstr "Tipo de objeto"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Creado después" msgstr "Creado después"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Creado antes" msgstr "Creado antes"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Programado después" msgstr "Programado después"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Programado antes" msgstr "Programado antes"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Comenzó después" msgstr "Comenzó después"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Comenzó antes" msgstr "Comenzó antes"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Completado después" msgstr "Completado después"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Completado antes" msgstr "Completado antes"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6596,7 +6596,7 @@ msgstr "Compartido"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "Método HTTP" msgstr "Método HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6766,7 +6766,7 @@ msgid "Content Types"
msgstr "Tipos de contenido" msgstr "Tipos de contenido"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "Tipo de contenido HTTP" msgstr "Tipo de contenido HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6775,27 +6775,27 @@ msgid "Events"
msgstr "Eventos" msgstr "Eventos"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Tipo de acción" msgstr "Tipo de acción"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Creaciones de objetos" msgstr "Creaciones de objetos"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Actualizaciones de objetos" msgstr "Actualizaciones de objetos"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Eliminaciones de objetos" msgstr "Eliminaciones de objetos"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Comienza el trabajo" msgstr "Comienza el trabajo"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Cese de puestos" msgstr "Cese de puestos"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7575,7 +7575,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7600,7 +7600,7 @@ msgstr "encabezados adicionales"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1358,35 +1358,35 @@ msgid "Object Type"
msgstr "Type d'objet" msgstr "Type d'objet"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Créé après" msgstr "Créé après"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Créé avant" msgstr "Créé avant"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Planifié après" msgstr "Planifié après"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Planifié avant" msgstr "Planifié avant"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Commencé après" msgstr "Commencé après"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Commencé avant" msgstr "Commencé avant"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Terminé après" msgstr "Terminé après"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Terminé avant" msgstr "Terminé avant"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6606,7 +6606,7 @@ msgstr "Partagé"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "Méthode HTTP" msgstr "Méthode HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6775,7 +6775,7 @@ msgid "Content Types"
msgstr "Types de contenu" msgstr "Types de contenu"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "Type de contenu HTTP" msgstr "Type de contenu HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6784,27 +6784,27 @@ msgid "Events"
msgstr "Évènements" msgstr "Évènements"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Type d'action" msgstr "Type d'action"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Créations d'objets" msgstr "Créations d'objets"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "mises à jour des objets" msgstr "mises à jour des objets"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Suppressions d'objets" msgstr "Suppressions d'objets"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Début du travail" msgstr "Début du travail"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Résiliations d'emploi" msgstr "Résiliations d'emploi"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7591,7 +7591,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7616,7 +7616,7 @@ msgstr "en-têtes supplémentaires"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1352,35 +1352,35 @@ msgid "Object Type"
msgstr "オブジェクトタイプ" msgstr "オブジェクトタイプ"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "以降に作成" msgstr "以降に作成"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "以前に作成" msgstr "以前に作成"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "以降に予定" msgstr "以降に予定"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "以前に予定" msgstr "以前に予定"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "以降に開始" msgstr "以降に開始"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "以前に開始" msgstr "以前に開始"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "以降に完了" msgstr "以降に完了"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "以前に完了" msgstr "以前に完了"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6446,7 +6446,7 @@ msgstr "共有"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "HTTP メソッド" msgstr "HTTP メソッド"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6613,8 +6613,8 @@ msgid "Content Types"
msgstr "コンテンツタイプ" msgstr "コンテンツタイプ"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "HTTP content type" msgstr "HTTP Content Type"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
#: templates/extras/eventrule.html:37 #: templates/extras/eventrule.html:37
@ -6622,27 +6622,27 @@ msgid "Events"
msgstr "イベント" msgstr "イベント"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "アクションタイプ" msgstr "アクションタイプ"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "オブジェクト作成" msgstr "オブジェクト作成"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "オブジェクト更新" msgstr "オブジェクト更新"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "オブジェクト削除" msgstr "オブジェクト削除"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "ジョブの開始" msgstr "ジョブの開始"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "ジョブの終了" msgstr "ジョブの終了"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7374,7 +7374,7 @@ msgstr "少なくとも 1 つのイベントタイプを選択する必要があ
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7397,7 +7397,7 @@ msgstr "追加ヘッダー"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1355,35 +1355,35 @@ msgid "Object Type"
msgstr "Tipo de objeto" msgstr "Tipo de objeto"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Criado após" msgstr "Criado após"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Criado antes" msgstr "Criado antes"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Programado após" msgstr "Programado após"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Programado antes" msgstr "Programado antes"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Começou depois" msgstr "Começou depois"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Começou antes" msgstr "Começou antes"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Concluído após" msgstr "Concluído após"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Concluído antes" msgstr "Concluído antes"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6581,7 +6581,7 @@ msgstr "Compartilhado"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "Método HTTP" msgstr "Método HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6750,7 +6750,7 @@ msgid "Content Types"
msgstr "Tipos de conteúdo" msgstr "Tipos de conteúdo"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "Tipo de conteúdo HTTP" msgstr "Tipo de conteúdo HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6759,27 +6759,27 @@ msgid "Events"
msgstr "Eventos" msgstr "Eventos"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Tipo de ação" msgstr "Tipo de ação"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Criações de objetos" msgstr "Criações de objetos"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Atualizações de objetos" msgstr "Atualizações de objetos"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Exclusões de objetos" msgstr "Exclusões de objetos"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Início do trabalho" msgstr "Início do trabalho"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Rescisões de trabalho" msgstr "Rescisões de trabalho"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7554,7 +7554,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7579,7 +7579,7 @@ msgstr "cabeçalhos adicionais"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1363,35 +1363,35 @@ msgid "Object Type"
msgstr "Тип объекта" msgstr "Тип объекта"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Создано после" msgstr "Создано после"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Создано до" msgstr "Создано до"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Запланировано после" msgstr "Запланировано после"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Запланировано до" msgstr "Запланировано до"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Запустилось после" msgstr "Запустилось после"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Запустилось до" msgstr "Запустилось до"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Завершено после" msgstr "Завершено после"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Завершено до" msgstr "Завершено до"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6580,7 +6580,7 @@ msgstr "Общий"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "Метод HTTP" msgstr "Метод HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6752,7 +6752,7 @@ msgid "Content Types"
msgstr "Типы контента" msgstr "Типы контента"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "Тип содержимого HTTP" msgstr "Тип содержимого HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6761,27 +6761,27 @@ msgid "Events"
msgstr "События" msgstr "События"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Тип действия" msgstr "Тип действия"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Создание объектов" msgstr "Создание объектов"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Обновления объектов" msgstr "Обновления объектов"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Удаление объектов" msgstr "Удаление объектов"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Задание начинается" msgstr "Задание начинается"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Прекращение работы" msgstr "Прекращение работы"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7555,7 +7555,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7580,7 +7580,7 @@ msgstr "дополнительные заголовки"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1352,35 +1352,35 @@ msgid "Object Type"
msgstr "Nesne Türü" msgstr "Nesne Türü"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Sonra oluşturuldu" msgstr "Sonra oluşturuldu"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Daha önce oluşturuldu" msgstr "Daha önce oluşturuldu"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Sonrasında planlandı" msgstr "Sonrasında planlandı"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Önceden planlanmış" msgstr "Önceden planlanmış"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Sonra başladı" msgstr "Sonra başladı"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Daha önce başladı" msgstr "Daha önce başladı"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Sonrasında tamamlandı" msgstr "Sonrasında tamamlandı"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Daha önce tamamlandı" msgstr "Daha önce tamamlandı"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6519,7 +6519,7 @@ msgstr "Paylaşılan"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "HTTP yöntemi" msgstr "HTTP yöntemi"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6688,7 +6688,7 @@ msgid "Content Types"
msgstr "İçerik türleri" msgstr "İçerik türleri"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "HTTP içerik türü" msgstr "HTTP içerik türü"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6697,27 +6697,27 @@ msgid "Events"
msgstr "Olaylar" msgstr "Olaylar"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Eylem türü" msgstr "Eylem türü"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Nesne oluşturma" msgstr "Nesne oluşturma"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Nesne güncellemeleri" msgstr "Nesne güncellemeleri"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Nesne silme" msgstr "Nesne silme"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "İş başlıyor" msgstr "İş başlıyor"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "İş sonlandırmaları" msgstr "İş sonlandırmaları"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7481,7 +7481,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7506,7 +7506,7 @@ msgstr "ek başlıklar"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1353,35 +1353,35 @@ msgid "Object Type"
msgstr "Тип об'єкта" msgstr "Тип об'єкта"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "Створено після" msgstr "Створено після"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "Створено раніше" msgstr "Створено раніше"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "Заплановано після" msgstr "Заплановано після"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "Заплановано раніше" msgstr "Заплановано раніше"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "Починається після" msgstr "Починається після"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "Починав раніше" msgstr "Починав раніше"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "Завершено після" msgstr "Завершено після"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "Завершено раніше" msgstr "Завершено раніше"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6552,7 +6552,7 @@ msgstr "Спільний"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "метод HTTP" msgstr "метод HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6721,7 +6721,7 @@ msgid "Content Types"
msgstr "Типи контенту" msgstr "Типи контенту"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "Тип вмісту HTTP" msgstr "Тип вмісту HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6730,27 +6730,27 @@ msgid "Events"
msgstr "Події" msgstr "Події"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "Тип дії" msgstr "Тип дії"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "Створення об'єктів" msgstr "Створення об'єктів"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "Оновлення об'єктів" msgstr "Оновлення об'єктів"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "Видалення об'єктів" msgstr "Видалення об'єктів"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "Початок роботи" msgstr "Початок роботи"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "Припинення роботи" msgstr "Припинення роботи"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7514,7 +7514,7 @@ msgstr ""
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "" msgstr ""
@ -7539,7 +7539,7 @@ msgstr "додаткові заголовки"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""

View File

@ -1350,35 +1350,35 @@ msgid "Object Type"
msgstr "物体类型" msgstr "物体类型"
#: core/forms/filtersets.py:81 #: core/forms/filtersets.py:81
msgid "Created after" msgid "Created After"
msgstr "之后创建" msgstr "之后创建"
#: core/forms/filtersets.py:86 #: core/forms/filtersets.py:86
msgid "Created before" msgid "Created Before"
msgstr "之前创建" msgstr "之前创建"
#: core/forms/filtersets.py:91 #: core/forms/filtersets.py:91
msgid "Scheduled after" msgid "Scheduled After"
msgstr "预定在之后" msgstr "预定在之后"
#: core/forms/filtersets.py:96 #: core/forms/filtersets.py:96
msgid "Scheduled before" msgid "Scheduled Before"
msgstr "之前预定的" msgstr "之前预定的"
#: core/forms/filtersets.py:101 #: core/forms/filtersets.py:101
msgid "Started after" msgid "Started After"
msgstr "之后开始" msgstr "之后开始"
#: core/forms/filtersets.py:106 #: core/forms/filtersets.py:106
msgid "Started before" msgid "Started Before"
msgstr "之前开始的" msgstr "之前开始的"
#: core/forms/filtersets.py:111 #: core/forms/filtersets.py:111
msgid "Completed after" msgid "Completed After"
msgstr "之后完成" msgstr "之后完成"
#: core/forms/filtersets.py:116 #: core/forms/filtersets.py:116
msgid "Completed before" msgid "Completed Before"
msgstr "之前完成" msgstr "之前完成"
#: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361 #: core/forms/filtersets.py:123 dcim/forms/bulk_edit.py:361
@ -6427,7 +6427,7 @@ msgstr "共享的"
#: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243 #: extras/forms/bulk_edit.py:190 extras/forms/filtersets.py:243
#: extras/models/models.py:202 #: extras/models/models.py:202
msgid "HTTP method" msgid "HTTP Method"
msgstr "HTTP 方法" msgstr "HTTP 方法"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237 #: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6592,7 +6592,7 @@ msgid "Content Types"
msgstr "内容类型" msgstr "内容类型"
#: extras/forms/filtersets.py:233 extras/models/models.py:207 #: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type" msgid "HTTP Content Type"
msgstr "HTTP 内容类型" msgstr "HTTP 内容类型"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280 #: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6601,27 +6601,27 @@ msgid "Events"
msgstr "活动" msgstr "活动"
#: extras/forms/filtersets.py:265 #: extras/forms/filtersets.py:265
msgid "Action type" msgid "Action Type"
msgstr "操作类型" msgstr "操作类型"
#: extras/forms/filtersets.py:279 #: extras/forms/filtersets.py:279
msgid "Object creations" msgid "Object Creations"
msgstr "物体创作" msgstr "物体创作"
#: extras/forms/filtersets.py:286 #: extras/forms/filtersets.py:286
msgid "Object updates" msgid "Object Updates"
msgstr "对象更新" msgstr "对象更新"
#: extras/forms/filtersets.py:293 #: extras/forms/filtersets.py:293
msgid "Object deletions" msgid "Object Deletions"
msgstr "删除对象" msgstr "删除对象"
#: extras/forms/filtersets.py:300 #: extras/forms/filtersets.py:300
msgid "Job starts" msgid "Job Starts"
msgstr "作业开始" msgstr "作业开始"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297 #: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations" msgid "Job Terminations"
msgstr "终止工作" msgstr "终止工作"
#: extras/forms/filtersets.py:316 #: extras/forms/filtersets.py:316
@ -7351,7 +7351,7 @@ msgstr "必须选择至少一种事件类型:创建、更新、删除、作业
#: extras/models/models.py:194 #: extras/models/models.py:194
msgid "" msgid ""
"This URL will be called using the HTTP method defined when the webhook is " "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" "called. Jinja2 template processing is supported with the same context as the"
" request body." " request body."
msgstr "将使用调用 webhook 时定义的 HTTP 方法调用此 URL。支持 Jinja2 模板处理,其上下文与请求正文相同。" msgstr "将使用调用 webhook 时定义的 HTTP 方法调用此 URL。支持 Jinja2 模板处理,其上下文与请求正文相同。"
@ -7372,7 +7372,7 @@ msgstr "其他标题"
#: extras/models/models.py:217 #: extras/models/models.py:217
msgid "" msgid ""
"User-supplied HTTP headers to be sent with the request in addition to the " "User-supplied HTTP headers to be sent with the request in addition to the "
"HTTP content type. Headers should be defined in the format <code>Name: " "HTTP Content Type. Headers should be defined in the format <code>Name: "
"Value</code>. Jinja2 template processing is supported with the same context " "Value</code>. Jinja2 template processing is supported with the same context "
"as the request body (below)." "as the request body (below)."
msgstr "" msgstr ""