Commit 3c16576a authored by Illya Klymov's avatar Illya Klymov

Merge branch '358215-change-webide-button-label' into 'master'

Change button label to "Create commit..." in WebIDE

See merge request gitlab-org/gitlab!84680
parents 00d4f9b3 7157e7e4
......@@ -160,7 +160,7 @@ export default {
data-testid="begin-commit-button"
@click="beginCommit"
>
{{ __('Commit…') }}
{{ __('Create commit...') }}
</gl-button>
</div>
<p class="text-center bold">{{ overviewText }}</p>
......
......@@ -9148,9 +9148,6 @@ msgstr ""
msgid "Committed by"
msgstr ""
msgid "Commit…"
msgstr ""
msgid "Community forum"
msgstr ""
......@@ -10483,6 +10480,9 @@ msgstr ""
msgid "Create commit"
msgstr ""
msgid "Create commit..."
msgstr ""
msgid "Create common files more quickly, and standardize their format."
msgstr ""
......
......@@ -120,7 +120,7 @@ describe('IDE commit form', () => {
it('renders commit button in compact mode', () => {
expect(findBeginCommitButton().exists()).toBe(true);
expect(findBeginCommitButton().text()).toBe('Commit…');
expect(findBeginCommitButton().text()).toBe('Create commit...');
});
it('does not render form', () => {
......
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