user-center-slack/i18n/translation.go (58 lines of code) (raw):
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package i18n
const (
InfoName = "plugin.slack_user_center.backend.info.name"
InfoDescription = "plugin.slack_user_center.backend.info.description"
ConfigTipTitle = "plugin.slack_user_center.backend.config.tip.title"
ConfigAutoSyncLabel = "plugin.slack_user_center.backend.config.auto_sync.label"
ConfigAutoSyncTitle = "plugin.slack_user_center.backend.config.auto_sync.title"
ConfigAutoSyncDescription = "plugin.slack_user_center.backend.config.auto_sync.description"
ConfigSyncNowLabel = "plugin.slack_user_center.backend.config.sync_now.label"
ConfigSyncNowLabelForDoing = "plugin.slack_user_center.backend.config.sync_now.label_for_doing"
ConfigSyncNowTitle = "plugin.slack_user_center.backend.config.sync_now.title"
ConfigSyncNowDescription = "plugin.slack_user_center.backend.config.sync_now.description"
ConfigClientIDTitle = "plugin.slack_user_center.backend.config.client_id.title"
ConfigClientIDDescription = "plugin.slack_user_center.backend.config.client_id.description"
ConfigClientSecretTitle = "plugin.slack_user_center.backend.config.client_secret.title"
ConfigClientSecretDescription = "plugin.slack_user_center.backend.config.client_secret.description"
ConfigSigningSecretTitle = "plugin.slack_user_center.backend.config.signing_secret.title"
ConfigSigningSecretDescription = "plugin.slack_user_center.backend.config.signing_secret.description"
ConfigSyncNowSuccessResponse = "plugin.slack_user_center.backend.response.sync_now.success"
ConfigSyncNowFailedResponse = "plugin.slack_user_center.backend.response.sync_now.failed"
ConfigNotificationLabel = "plugin.slack_user_center.backend.config.notification.label"
ConfigNotificationTitle = "plugin.slack_user_center.backend.config.notification.title"
ConfigNotificationDescription = "plugin.slack_user_center.backend.config.notification.description"
UserConfigWebhookURLTitle = "plugin.slack_user_center.backend.user_config.webhook_url.title"
UserConfigInboxNotificationsTitle = "plugin.slack_user_center.backend.user_config.inbox_notifications.title"
UserConfigInboxNotificationsLabel = "plugin.slack_user_center.backend.user_config.inbox_notifications.label"
UserConfigInboxNotificationsDescription = "plugin.slack_user_center.backend.user_config.inbox_notifications.description"
UserConfigAllNewQuestionsNotificationsTitle = "plugin.slack_user_center.backend.user_config.all_new_questions.title"
UserConfigAllNewQuestionsNotificationsLabel = "plugin.slack_user_center.backend.user_config.all_new_questions.label"
UserConfigAllNewQuestionsNotificationsDescription = "plugin.slack_user_center.backend.user_config.all_new_questions.description"
UserConfigNewQuestionsForFollowingTagsTitle = "plugin.slack_user_center.backend.user_config.new_questions_for_following_tags.title"
UserConfigNewQuestionsForFollowingTagsLabel = "plugin.slack_user_center.backend.user_config.new_questions_for_following_tags.label"
UserConfigNewQuestionsForFollowingTagsDescription = "plugin.slack_user_center.backend.user_config.new_questions_for_following_tags.description"
UserConfigUpvotedAnswersTitle = "plugin.slack_user_center.backend.user_config.upvoted_answers.title"
UserConfigUpvotedAnswersLabel = "plugin.slack_user_center.backend.user_config.upvoted_answers.label"
UserConfigUpvotedAnswersDescription = "plugin.slack_user_center.backend.user_config.upvoted_answers.description"
UserConfigDownvotedAnswersTitle = "plugin.slack_user_center.backend.user_config.downvoted_answers.title"
UserConfigDownvotedAnswersLabel = "plugin.slack_user_center.backend.user_config.downvoted_answers.label"
UserConfigDownvotedAnswersDescription = "plugin.slack_user_center.backend.user_config.downvoted_answers.description"
UserConfigUpdatedQuestionsTitle = "plugin.slack_user_center.backend.user_config.updated_questions.title"
UserConfigUpdatedQuestionsLabel = "plugin.slack_user_center.backend.user_config.updated_questions.label"
UserConfigUpdatedQuestionsDescription = "plugin.slack_user_center.backend.user_config.updated_questions.description"
UserConfigUpdatedAnswersTitle = "plugin.slack_user_center.backend.user_config.updated_answers.title"
UserConfigUpdatedAnswersLabel = "plugin.slack_user_center.backend.user_config.updated_answers.label"
UserConfigUpdatedAnswersDescription = "plugin.slack_user_center.backend.user_config.updated_answers.description"
TplUpdatedQuestions = "plugin.slack_user_center.backend.tpl.update_question"
TplAnswerTheQuestion = "plugin.slack_user_center.backend.tpl.answer_the_question"
TplUpdatedAnswers = "plugin.slack_user_center.backend.tpl.update_answer"
TplAcceptAnswer = "plugin.slack_user_center.backend.tpl.accept_answer"
TplCommentQuestion = "plugin.slack_user_center.backend.tpl.comment_question"
TplCommentAnswer = "plugin.slack_user_center.backend.tpl.comment_answer"
TplReplyToYou = "plugin.slack_user_center.backend.tpl.reply_to_you"
TplMentionYou = "plugin.slack_user_center.backend.tpl.mention_you"
TplInvitedYouToAnswer = "plugin.slack_user_center.backend.tpl.invited_you_to_answer"
TplNewQuestion = "plugin.slack_user_center.backend.tpl.new_question"
TplUpvotedAnswer = "plugin.slack_user_center.backend.tpl.upvoted_answer"
TplDownvotedAnswer = "plugin.slack_user_center.backend.tpl.downvoted_answer"
)