Commit 170eb979 authored by Michael Le's avatar Michael Le Committed by Brandon Labuschagne

Change to wiki page title description to "Learn more"

parent dadc7810
...@@ -47,7 +47,7 @@ export default { ...@@ -47,7 +47,7 @@ export default {
newPage: s__( newPage: s__(
'WikiPage|Tip: You can specify the full path for the new file. We will automatically create any missing directories.', 'WikiPage|Tip: You can specify the full path for the new file. We will automatically create any missing directories.',
), ),
moreInformation: s__('WikiPage|More Information.'), learnMore: s__('WikiPage|Learn more.'),
}, },
}, },
format: { format: {
...@@ -402,10 +402,9 @@ export default { ...@@ -402,10 +402,9 @@ export default {
<span class="gl-display-inline-block gl-max-w-full gl-mt-2 gl-text-gray-600"> <span class="gl-display-inline-block gl-max-w-full gl-mt-2 gl-text-gray-600">
<gl-icon class="gl-mr-n1" name="bulb" /> <gl-icon class="gl-mr-n1" name="bulb" />
{{ titleHelpText }} {{ titleHelpText }}
<gl-link :href="helpPath" target="_blank" <gl-link :href="helpPath" target="_blank">
><gl-icon name="question-o" /> {{ $options.i18n.title.helpText.learnMore }}
{{ $options.i18n.title.helpText.moreInformation }}</gl-link </gl-link>
>
</span> </span>
</div> </div>
</div> </div>
......
...@@ -39319,7 +39319,7 @@ msgstr "" ...@@ -39319,7 +39319,7 @@ msgstr ""
msgid "WikiPage|Keep editing" msgid "WikiPage|Keep editing"
msgstr "" msgstr ""
msgid "WikiPage|More Information." msgid "WikiPage|Learn more."
msgstr "" msgstr ""
msgid "WikiPage|Page title" msgid "WikiPage|Page title"
......
...@@ -38,7 +38,7 @@ describe('WikiForm', () => { ...@@ -38,7 +38,7 @@ describe('WikiForm', () => {
wrapper.findByRole('button', { name: 'Try this later' }); wrapper.findByRole('button', { name: 'Try this later' });
const findSwitchToOldEditorButton = () => const findSwitchToOldEditorButton = () =>
wrapper.findByRole('button', { name: 'Switch me back to the classic editor.' }); wrapper.findByRole('button', { name: 'Switch me back to the classic editor.' });
const findTitleHelpLink = () => wrapper.findByRole('link', { name: 'More Information.' }); const findTitleHelpLink = () => wrapper.findByRole('link', { name: 'Learn more.' });
const findMarkdownHelpLink = () => wrapper.findByTestId('wiki-markdown-help-link'); const findMarkdownHelpLink = () => wrapper.findByTestId('wiki-markdown-help-link');
const findContentEditor = () => wrapper.findComponent(ContentEditor); const findContentEditor = () => wrapper.findComponent(ContentEditor);
const findClassicEditor = () => wrapper.findComponent(MarkdownField); const findClassicEditor = () => wrapper.findComponent(MarkdownField);
......
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