Commit 339e55b4 authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'russell/update-bugzilla-integration-ui-text' into 'master'

Update Bugzilla integration UI text

See merge request gitlab-org/gitlab!60080
parents 7a3ece72 a67ca735
# frozen_string_literal: true
class BugzillaService < IssueTrackerService
include ActionView::Helpers::UrlHelper
validates :project_url, :issues_url, :new_issue_url, presence: true, public_url: true, if: :activated?
def title
......@@ -8,7 +10,12 @@ class BugzillaService < IssueTrackerService
end
def description
s_('IssueTracker|Bugzilla issue tracker')
s_("IssueTracker|Use Bugzilla as this project's issue tracker.")
end
def help
docs_link = link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('user/project/integrations/bugzilla'), target: '_blank', rel: 'noopener noreferrer'
s_("IssueTracker|Use Bugzilla as this project's issue tracker. %{docs_link}").html_safe % { docs_link: docs_link.html_safe }
end
def self.to_param
......
---
title: Update Bugzilla integration UI text
merge_request: 60080
author:
type: other
......@@ -17998,10 +17998,13 @@ msgstr ""
msgid "IssueBoards|Switch board"
msgstr ""
msgid "IssueTracker|Bugzilla issue tracker"
msgid "IssueTracker|Custom issue tracker"
msgstr ""
msgid "IssueTracker|Custom issue tracker"
msgid "IssueTracker|Use Bugzilla as this project's issue tracker."
msgstr ""
msgid "IssueTracker|Use Bugzilla as this project's issue tracker. %{docs_link}"
msgstr ""
msgid "IssueTracker|Use IBM Engineering Workflow Management as this project's issue tracker."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment