Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/integrations/gitlab_slack_application/constants.js')
-rw-r--r--app/assets/javascripts/integrations/gitlab_slack_application/constants.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/assets/javascripts/integrations/gitlab_slack_application/constants.js b/app/assets/javascripts/integrations/gitlab_slack_application/constants.js
new file mode 100644
index 00000000000..4f3c75b64fb
--- /dev/null
+++ b/app/assets/javascripts/integrations/gitlab_slack_application/constants.js
@@ -0,0 +1,15 @@
+import { __, s__ } from '~/locale';
+
+export const i18n = {
+ slackErrorMessage: __('Unable to build Slack link.'),
+ gitlabLogoAlt: __('GitLab logo'),
+ slackLogoAlt: __('Slack logo'),
+ title: s__('SlackIntegration|GitLab for Slack'),
+ dropdownLabel: s__('SlackIntegration|Select a GitLab project to link with your Slack workspace.'),
+ dropdownButtonText: __('Continue'),
+ noProjects: __('No projects available.'),
+ noProjectsDescription: __('Make sure you have the correct permissions to link your project.'),
+ learnMore: __('Learn more'),
+ signInLabel: s__('JiraService|Sign in to GitLab to get started.'),
+ signInButtonText: __('Sign in to GitLab'),
+};