Commit f1e46a06 authored by Douglas Barbosa Alexandre's avatar Douglas Barbosa Alexandre

Merge branch 'msj-ui-trackers-help' into 'master'

Add issue tracker integration help text

See merge request gitlab-org/gitlab!61158
parents 4a7cb44a 9b952bb8
...@@ -73,9 +73,9 @@ class IssueTrackerService < Service ...@@ -73,9 +73,9 @@ class IssueTrackerService < Service
def fields def fields
[ [
{ type: 'text', name: 'project_url', title: _('Project URL'), required: true }, { type: 'text', name: 'project_url', title: _('Project URL'), help: s_('IssueTracker|The URL to the project in the external issue tracker.'), required: true },
{ type: 'text', name: 'issues_url', title: s_('ProjectService|Issue URL'), required: true }, { type: 'text', name: 'issues_url', title: s_('IssueTracker|Issue URL'), help: s_('IssueTracker|The URL to view an issue in the external issue tracker. Must contain %{colon_id}.') % { colon_id: '<code>:id</code>'.html_safe }, required: true },
{ type: 'text', name: 'new_issue_url', title: s_('ProjectService|New issue URL'), required: true } { type: 'text', name: 'new_issue_url', title: s_('IssueTracker|New issue URL'), help: s_('IssueTracker|The URL to create an issue in the external issue tracker.'), required: true }
] ]
end end
......
...@@ -33,8 +33,8 @@ class YoutrackService < IssueTrackerService ...@@ -33,8 +33,8 @@ class YoutrackService < IssueTrackerService
def fields def fields
[ [
{ type: 'text', name: 'project_url', title: _('Project URL'), required: true }, { type: 'text', name: 'project_url', title: _('Project URL'), help: s_('IssueTracker|The URL to the project in YouTrack.'), required: true },
{ type: 'text', name: 'issues_url', title: s_('ProjectService|Issue URL'), required: true } { type: 'text', name: 'issues_url', title: s_('ProjectService|Issue URL'), help: s_('IssueTracker|The URL to view an issue in the YouTrack project. Must contain %{colon_id}.') % { colon_id: '<code>:id</code>'.html_safe }, required: true }
] ]
end end
end end
---
title: Add issue tracker integrations help text
merge_request: 61158
author:
type: other
...@@ -18195,6 +18195,27 @@ msgstr "" ...@@ -18195,6 +18195,27 @@ msgstr ""
msgid "IssueTracker|Custom issue tracker" msgid "IssueTracker|Custom issue tracker"
msgstr "" msgstr ""
msgid "IssueTracker|Issue URL"
msgstr ""
msgid "IssueTracker|New issue URL"
msgstr ""
msgid "IssueTracker|The URL to create an issue in the external issue tracker."
msgstr ""
msgid "IssueTracker|The URL to the project in YouTrack."
msgstr ""
msgid "IssueTracker|The URL to the project in the external issue tracker."
msgstr ""
msgid "IssueTracker|The URL to view an issue in the YouTrack project. Must contain %{colon_id}."
msgstr ""
msgid "IssueTracker|The URL to view an issue in the external issue tracker. Must contain %{colon_id}."
msgstr ""
msgid "IssueTracker|Use Bugzilla as this project's issue tracker." msgid "IssueTracker|Use Bugzilla as this project's issue tracker."
msgstr "" msgstr ""
...@@ -25366,9 +25387,6 @@ msgstr "" ...@@ -25366,9 +25387,6 @@ msgstr ""
msgid "ProjectService|Must have permission to trigger a manual build in TeamCity." msgid "ProjectService|Must have permission to trigger a manual build in TeamCity."
msgstr "" msgstr ""
msgid "ProjectService|New issue URL"
msgstr ""
msgid "ProjectService|Perform common operations on GitLab project: %{project_name}" msgid "ProjectService|Perform common operations on GitLab project: %{project_name}"
msgstr "" msgstr ""
......
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