aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2018-02-02 11:34:03 +0100
committerGuillaume Jambet <guillaume.jambet@gmail.com>2018-03-01 15:21:05 +0100
commit827381f0e4e80b69ba67cd0128f47166eda916be (patch)
tree53068fededf21e19aa6684dd2e258f0f4f233e35 /sonar-core
parent85f7f977c021ea177d3f2442efa114997e313aa2 (diff)
downloadsonarqube-827381f0e4e80b69ba67cd0128f47166eda916be.tar.gz
sonarqube-827381f0e4e80b69ba67cd0128f47166eda916be.zip
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
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/resources/org/sonar/l10n/core.properties11
1 files changed, 11 insertions, 0 deletions
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