From 827381f0e4e80b69ba67cd0128f47166eda916be Mon Sep 17 00:00:00 2001 From: Grégoire Aubert Date: Fri, 2 Feb 2018 11:34:03 +0100 Subject: SONAR-10345 Add webhooks management actions * SONAR-10345 Add the webhooks create/update form * SONAR-10345 Add the webhooks delete action * SONAR-10345 Add fields validation on webhook create page --- sonar-core/src/main/resources/org/sonar/l10n/core.properties | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'sonar-core') diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index 93542c18764..8c4b0f0c56b 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -2814,7 +2814,18 @@ favorite.current.UTS=This test file is marked as favorite. # #------------------------------------------------------------------------------ webhooks.page=Webhooks +webhooks.create=Create Webhook +webhooks.delete=Delete Webhook +webhooks.delete.confirm=Are you sure you want to delete the webhook "{0}"? webhooks.description=Webhooks are used to notify external services when a project analysis is done. An HTTP POST request including a JSON payload is sent to each of the provided URLs. Learn more in the {url}. webhooks.documentation_link=Webhooks documentation +webhooks.maximum_reached=You reached your maximum number of {0} webhooks. You can still update or delete an existing one. +webhooks.name=Name +webhooks.name.required=Name is required. webhooks.no_result=No webhook defined. +webhooks.update=Update Webhook webhooks.url=URL +webhooks.url.bad_auth=Bad format of URL authentication. +webhooks.url.bad_protocol=URL must start with "http://" or "https://". +webhooks.url.description=Server endpoint that will receive the webhook payload, for example: "http://my_server/foo". If HTTP Basic authentication is used, HTTPS is recommended to avoid man in the middle attacks. Example: "https://myLogin:myPassword@my_server/foo" +webhooks.url.required=URL is required. \ No newline at end of file -- cgit v1.2.3