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": {
"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",
"maxLength": 500,
"minLength": 1
@ -88765,7 +88765,7 @@
"type": "boolean"
},
"http_method": {
"title": "HTTP method",
"title": "HTTP Method",
"type": "string",
"enum": [
"GET",
@ -88776,7 +88776,7 @@
]
},
"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>.",
"type": "string",
"maxLength": 100,
@ -88784,7 +88784,7 @@
},
"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"
},
"body_template": {

View File

@ -64307,7 +64307,7 @@ definitions:
type: boolean
payload_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
context as the request body.
type: string
@ -64317,7 +64317,7 @@ definitions:
title: Enabled
type: boolean
http_method:
title: HTTP method
title: HTTP Method
type: string
enum:
- GET
@ -64326,7 +64326,7 @@ definitions:
- PATCH
- DELETE
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>.
type: string
maxLength: 100
@ -64334,7 +64334,7 @@ definitions:
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:
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

View File

@ -26,7 +26,7 @@ To learn more about this feature, check out the [GraphQL API documentation](../i
## 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).

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:
* Object type: IPAM > IP address
* HTTP method: `POST`
* HTTP Method: `POST`
* 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 }}!"}`
### Available Context
@ -46,7 +46,7 @@ If no body template is specified, the request body will be populated with a JSON
"id": 19,
"name": "Site 1",
"slug": "site-1",
"status":
"status":
"value": "active",
"label": "Active",
"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 |
| Updates | An existing object has been modified |
| 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 |
### 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 |
| Updates | An existing object has been modified |
| 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 |
### URL

View File

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

View File

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

View File

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

View File

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

View File

@ -191,7 +191,7 @@ class Webhook(CustomFieldsMixin, ExportTemplatesMixin, TagsMixin, ChangeLoggedMo
max_length=500,
verbose_name=_('URL'),
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."
)
)
@ -199,12 +199,12 @@ class Webhook(CustomFieldsMixin, ExportTemplatesMixin, TagsMixin, ChangeLoggedMo
max_length=30,
choices=WebhookHttpMethodChoices,
default=WebhookHttpMethodChoices.METHOD_POST,
verbose_name=_('HTTP method')
verbose_name=_('HTTP Method')
)
http_content_type = models.CharField(
max_length=100,
default=HTTP_CONTENT_TYPE_JSON,
verbose_name=_('HTTP content type'),
verbose_name=_('HTTP Content Type'),
help_text=_(
'The complete list of official content types is available '
'<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'),
blank=True,
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 "
"the same context as the request body (below)."
)

View File

@ -1356,35 +1356,35 @@ msgid "Object Type"
msgstr "Art des Objekts"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Erstellt nach"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Vorher erstellt"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Geplant danach"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Vorher geplant"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Begonnen danach"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Hat schon einmal angefangen"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Abgeschlossen nach"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Vorher abgeschlossen"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "HTTP-Methode"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6801,7 +6801,7 @@ msgid "Content Types"
msgstr "Inhaltstypen"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "HTTP-Inhaltstyp"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6810,27 +6810,27 @@ msgid "Events"
msgstr "Ereignisse"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Art der Aktion"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Kreationen von Objekten"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Objektaktualisierungen"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Löschen von Objekten"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Der Job beginnt"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Kündigungen von Arbeitsstellen"
#: extras/forms/filtersets.py:316
@ -7613,7 +7613,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7638,7 +7638,7 @@ msgstr "zusätzliche Header"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1322,35 +1322,35 @@ msgid "Object Type"
msgstr ""
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr ""
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr ""
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr ""
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr ""
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr ""
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr ""
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr ""
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr ""
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr ""
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6548,7 +6548,7 @@ msgid "Content Types"
msgstr ""
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr ""
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6557,27 +6557,27 @@ msgid "Events"
msgstr ""
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr ""
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr ""
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr ""
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr ""
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr ""
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr ""
#: extras/forms/filtersets.py:316
@ -7300,7 +7300,7 @@ msgstr ""
#: extras/models/models.py:194
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 "
"request body."
msgstr ""
@ -7318,7 +7318,7 @@ msgstr ""
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1354,35 +1354,35 @@ msgid "Object Type"
msgstr "Tipo de objeto"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Creado después"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Creado antes"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Programado después"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Programado antes"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Comenzó después"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Comenzó antes"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Completado después"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Completado antes"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "Método HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6766,7 +6766,7 @@ msgid "Content Types"
msgstr "Tipos de contenido"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "Tipo de contenido HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6775,27 +6775,27 @@ msgid "Events"
msgstr "Eventos"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Tipo de acción"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Creaciones de objetos"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Actualizaciones de objetos"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Eliminaciones de objetos"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Comienza el trabajo"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Cese de puestos"
#: extras/forms/filtersets.py:316
@ -7575,7 +7575,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7600,7 +7600,7 @@ msgstr "encabezados adicionales"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1358,35 +1358,35 @@ msgid "Object Type"
msgstr "Type d'objet"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Créé après"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Créé avant"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Planifié après"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Planifié avant"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Commencé après"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Commencé avant"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Terminé après"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Terminé avant"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "Méthode HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6775,7 +6775,7 @@ msgid "Content Types"
msgstr "Types de contenu"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "Type de contenu HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6784,27 +6784,27 @@ msgid "Events"
msgstr "Évènements"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Type d'action"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Créations d'objets"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "mises à jour des objets"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Suppressions d'objets"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Début du travail"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Résiliations d'emploi"
#: extras/forms/filtersets.py:316
@ -7591,7 +7591,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7616,7 +7616,7 @@ msgstr "en-têtes supplémentaires"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

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

View File

@ -1355,35 +1355,35 @@ msgid "Object Type"
msgstr "Tipo de objeto"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Criado após"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Criado antes"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Programado após"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Programado antes"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Começou depois"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Começou antes"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Concluído após"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Concluído antes"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "Método HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6750,7 +6750,7 @@ msgid "Content Types"
msgstr "Tipos de conteúdo"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "Tipo de conteúdo HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6759,27 +6759,27 @@ msgid "Events"
msgstr "Eventos"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Tipo de ação"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Criações de objetos"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Atualizações de objetos"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Exclusões de objetos"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Início do trabalho"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Rescisões de trabalho"
#: extras/forms/filtersets.py:316
@ -7554,7 +7554,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7579,7 +7579,7 @@ msgstr "cabeçalhos adicionais"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1363,35 +1363,35 @@ msgid "Object Type"
msgstr "Тип объекта"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Создано после"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Создано до"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Запланировано после"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Запланировано до"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Запустилось после"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Запустилось до"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Завершено после"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Завершено до"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "Метод HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6752,7 +6752,7 @@ msgid "Content Types"
msgstr "Типы контента"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "Тип содержимого HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6761,27 +6761,27 @@ msgid "Events"
msgstr "События"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Тип действия"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Создание объектов"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Обновления объектов"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Удаление объектов"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Задание начинается"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Прекращение работы"
#: extras/forms/filtersets.py:316
@ -7555,7 +7555,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7580,7 +7580,7 @@ msgstr "дополнительные заголовки"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1352,35 +1352,35 @@ msgid "Object Type"
msgstr "Nesne Türü"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Sonra oluşturuldu"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Daha önce oluşturuldu"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Sonrasında planlandı"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Önceden planlanmış"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Sonra başladı"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Daha önce başladı"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Sonrasında tamamlandı"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Daha önce tamamlandı"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "HTTP yöntemi"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6688,7 +6688,7 @@ msgid "Content Types"
msgstr "İçerik türleri"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "HTTP içerik türü"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6697,27 +6697,27 @@ msgid "Events"
msgstr "Olaylar"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Eylem türü"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Nesne oluşturma"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Nesne güncellemeleri"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Nesne silme"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "İş başlıyor"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "İş sonlandırmaları"
#: extras/forms/filtersets.py:316
@ -7481,7 +7481,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7506,7 +7506,7 @@ msgstr "ek başlıklar"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

@ -1353,35 +1353,35 @@ msgid "Object Type"
msgstr "Тип об'єкта"
#: core/forms/filtersets.py:81
msgid "Created after"
msgid "Created After"
msgstr "Створено після"
#: core/forms/filtersets.py:86
msgid "Created before"
msgid "Created Before"
msgstr "Створено раніше"
#: core/forms/filtersets.py:91
msgid "Scheduled after"
msgid "Scheduled After"
msgstr "Заплановано після"
#: core/forms/filtersets.py:96
msgid "Scheduled before"
msgid "Scheduled Before"
msgstr "Заплановано раніше"
#: core/forms/filtersets.py:101
msgid "Started after"
msgid "Started After"
msgstr "Починається після"
#: core/forms/filtersets.py:106
msgid "Started before"
msgid "Started Before"
msgstr "Починав раніше"
#: core/forms/filtersets.py:111
msgid "Completed after"
msgid "Completed After"
msgstr "Завершено після"
#: core/forms/filtersets.py:116
msgid "Completed before"
msgid "Completed Before"
msgstr "Завершено раніше"
#: 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/models/models.py:202
msgid "HTTP method"
msgid "HTTP Method"
msgstr "метод HTTP"
#: extras/forms/bulk_edit.py:194 extras/forms/filtersets.py:237
@ -6721,7 +6721,7 @@ msgid "Content Types"
msgstr "Типи контенту"
#: extras/forms/filtersets.py:233 extras/models/models.py:207
msgid "HTTP content type"
msgid "HTTP Content Type"
msgstr "Тип вмісту HTTP"
#: extras/forms/filtersets.py:255 extras/forms/model_forms.py:280
@ -6730,27 +6730,27 @@ msgid "Events"
msgstr "Події"
#: extras/forms/filtersets.py:265
msgid "Action type"
msgid "Action Type"
msgstr "Тип дії"
#: extras/forms/filtersets.py:279
msgid "Object creations"
msgid "Object Creations"
msgstr "Створення об'єктів"
#: extras/forms/filtersets.py:286
msgid "Object updates"
msgid "Object Updates"
msgstr "Оновлення об'єктів"
#: extras/forms/filtersets.py:293
msgid "Object deletions"
msgid "Object Deletions"
msgstr "Видалення об'єктів"
#: extras/forms/filtersets.py:300
msgid "Job starts"
msgid "Job Starts"
msgstr "Початок роботи"
#: extras/forms/filtersets.py:307 extras/forms/model_forms.py:297
msgid "Job terminations"
msgid "Job Terminations"
msgstr "Припинення роботи"
#: extras/forms/filtersets.py:316
@ -7514,7 +7514,7 @@ msgstr ""
#: extras/models/models.py:194
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"
" request body."
msgstr ""
@ -7539,7 +7539,7 @@ msgstr "додаткові заголовки"
#: extras/models/models.py:217
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 <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 "
"as the request body (below)."
msgstr ""

View File

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