diff options
author | Shane Findley <shane.findley@sonarsource.com> | 2024-08-30 16:04:21 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-08-30 20:02:41 +0000 |
commit | 6d3100b556eacfb5d2a4ee10e010417e0bfdfb82 (patch) | |
tree | 130e134ed4740711a467ac6d9bb2f2bffd78a2f6 /sonar-core | |
parent | 583e4bc1630edd9440af57856f040bf90874e364 (diff) | |
download | sonarqube-6d3100b556eacfb5d2a4ee10e010417e0bfdfb82.tar.gz sonarqube-6d3100b556eacfb5d2a4ee10e010417e0bfdfb82.zip |
SONAR-22666 Adding oauth email support (#11653)
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 47 |
1 files changed, 44 insertions, 3 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 780b6ac602d..f039cd6df6e 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -2680,9 +2680,50 @@ rule.clean_code_attribute.TRUSTWORTHY.title=This is a responsibility rule, the c #------------------------------------------------------------------------------ # -# EMAIL CONFIGURATION -# -#------------------------------------------------------------------------------ +# EMAIL NOTIFICATION CONFIGURATION +# +#------------------------------------------------------------------------------ +email_notification.category=Email Notification +email_notification.header=SMTP Configuration +email_notification.description=Follow the steps below to configure and test your authentication. +email_notification.subheading.1=Select your authentication type and complete the fields below +email_notification.subheading.2=Complete the SMTP fields below +email_notification.subheading.3=Input the ‘sender’ information below to identify your email notification +email_notification.form.basic_auth.title=Basic Authentication +email_notification.form.basic_auth.description=Authenticate with a username and password +email_notification.form.username=SMTP username +email_notification.form.username.description=Username used to authenticate to the SMTP server. +email_notification.form.basic_password=SMTP password +email_notification.form.basic_password.description=Password used to authenticate to the SMTP server. +email_notification.form.oauth_auth.title=Modern Authentication +email_notification.form.oauth_auth.description=Authenticate with OAuth Microsoft +email_notification.form.oauth_auth.recommended_reason=for stronger security compliance +email_notification.form.oauth_authentication_host=Authentication host +email_notification.form.oauth_authentication_host.description=Host of the Identity Provider issuing access tokens. +email_notification.form.oauth_client_id=Client ID +email_notification.form.oauth_client_id.description=Client ID provided by Microsoft Exchange when registering the application. +email_notification.form.oauth_client_secret=Client Secret +email_notification.form.oauth_client_secret.description=Client password provided by Microsoft Exchange when registering the application. +email_notification.form.oauth_tenant=Tenant +email_notification.form.oauth_tenant.description=Microsoft tenant. +email_notification.form.host=SMTP host +email_notification.form.host.description=URL of your SMTP server. +email_notification.form.port=SMTP port +email_notification.form.port.description=Port of your SMTP server (usually 25, 587 or 465). +email_notification.form.security_protocol=Security protocol +email_notification.form.security_protocol.description=Security protocol used to connect to your SMTP server (SSLTLS is recommended). Valid values: NONE, SSLTLS, STARTTLS. +email_notification.form.from_address=From address +email_notification.form.from_address.description=Address emails will come from. +email_notification.form.from_name=From name +email_notification.form.from_name.description=Name emails will come from (usually "SonarQube"). +email_notification.form.subject_prefix=Subject prefix +email_notification.form.subject_prefix.description=Prefix added to email so they can be easily recognized (usually "[SonarQube]"). +email_notification.form.save_configuration=Save configuration +email_notification.form.save_configuration.create_success=Email configuration saved successfully. +email_notification.form.save_configuration.update_success=Email configuration updated successfully. +email_notification.form.delete_configuration=Delete configuration +email_notification.state.value_should_be_valid_email=A valid email address is required. + email_configuration.test.title=Test Configuration email_configuration.test.to_address=To email_configuration.test.subject=Subject |