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