notification-dingtalk/i18n/translation.go (39 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.dingtalk_notification.backend.info.name" InfoDescription = "plugin.dingtalk_notification.backend.info.description" ConfigTipTitle = "plugin.dingtalk_notification.backend.config.tip.title" ConfigNotificationLabel = "plugin.dingtalk_notification.backend.config.notification.label" ConfigNotificationTitle = "plugin.dingtalk_notification.backend.config.notification.title" ConfigNotificationDescription = "plugin.dingtalk_notification.backend.config.notification.description" UserConfigWebhookURLTitle = "plugin.dingtalk_notification.backend.user_config.webhook_url.title" UserConfigInboxNotificationsTitle = "plugin.dingtalk_notification.backend.user_config.inbox_notifications.title" UserConfigInboxNotificationsLabel = "plugin.dingtalk_notification.backend.user_config.inbox_notifications.label" UserConfigInboxNotificationsDescription = "plugin.dingtalk_notification.backend.user_config.inbox_notifications.description" UserConfigAllNewQuestionsNotificationsTitle = "plugin.dingtalk_notification.backend.user_config.all_new_questions.title" UserConfigAllNewQuestionsNotificationsLabel = "plugin.dingtalk_notification.backend.user_config.all_new_questions.label" UserConfigAllNewQuestionsNotificationsDescription = "plugin.dingtalk_notification.backend.user_config.all_new_questions.description" UserConfigNewQuestionsForFollowingTagsTitle = "plugin.dingtalk_notification.backend.user_config.new_questions_for_following_tags.title" UserConfigNewQuestionsForFollowingTagsLabel = "plugin.dingtalk_notification.backend.user_config.new_questions_for_following_tags.label" UserConfigNewQuestionsForFollowingTagsDescription = "plugin.dingtalk_notification.backend.user_config.new_questions_for_following_tags.description" TplUpdateQuestionTitle = "plugin.dingtalk_notification.backend.tpl.update_question.title" TplUpdateQuestion = "plugin.dingtalk_notification.backend.tpl.update_question.text" TplAnswerTheQuestionTitle = "plugin.dingtalk_notification.backend.tpl.answer_the_question.title" TplAnswerTheQuestion = "plugin.dingtalk_notification.backend.tpl.answer_the_question.text" TplUpdateAnswerTitle = "plugin.dingtalk_notification.backend.tpl.update_answer.title" TplUpdateAnswer = "plugin.dingtalk_notification.backend.tpl.update_answer.text" TplAcceptAnswerTitle = "plugin.dingtalk_notification.backend.tpl.accept_answer.title" TplAcceptAnswer = "plugin.dingtalk_notification.backend.tpl.accept_answer.text" TplCommentQuestionTitle = "plugin.dingtalk_notification.backend.tpl.comment_question.title" TplCommentQuestion = "plugin.dingtalk_notification.backend.tpl.comment_question.text" TplCommentAnswerTitle = "plugin.dingtalk_notification.backend.tpl.comment_answer.title" TplCommentAnswer = "plugin.dingtalk_notification.backend.tpl.comment_answer.text" TplReplyToYouTitle = "plugin.dingtalk_notification.backend.tpl.reply_to_you.title" TplReplyToYou = "plugin.dingtalk_notification.backend.tpl.reply_to_you.text" TplMentionYouTitle = "plugin.dingtalk_notification.backend.tpl.mention_you.title" TplMentionYou = "plugin.dingtalk_notification.backend.tpl.mention_you.text" TplInvitedYouToAnswerTitle = "plugin.dingtalk_notification.backend.tpl.invited_you_to_answer.title" TplInvitedYouToAnswer = "plugin.dingtalk_notification.backend.tpl.invited_you_to_answer.text" TplNewQuestionTitle = "plugin.dingtalk_notification.backend.tpl.new_question.title" TplNewQuestion = "plugin.dingtalk_notification.backend.tpl.new_question.text" )