Replace ... with ellipsis in placeholders
This commit is contained in:
parent
54a6ca6f38
commit
88808a1fd4
13 changed files with 17 additions and 17 deletions
|
@ -58,7 +58,7 @@
|
||||||
v-model="formState.description"
|
v-model="formState.description"
|
||||||
ref="textarea"
|
ref="textarea"
|
||||||
slot="textarea"
|
slot="textarea"
|
||||||
placeholder="Write a comment or drag your files here..."
|
placeholder="Write a comment or drag your files here…"
|
||||||
@keydown.meta.enter="updateIssuable"
|
@keydown.meta.enter="updateIssuable"
|
||||||
@keydown.ctrl.enter="updateIssuable">
|
@keydown.ctrl.enter="updateIssuable">
|
||||||
</textarea>
|
</textarea>
|
||||||
|
|
|
@ -361,7 +361,7 @@ js-gfm-input js-autosize markdown-area js-vue-textarea"
|
||||||
ref="textarea"
|
ref="textarea"
|
||||||
slot="textarea"
|
slot="textarea"
|
||||||
:disabled="isSubmitting"
|
:disabled="isSubmitting"
|
||||||
placeholder="Write a comment or drag your files here..."
|
placeholder="Write a comment or drag your files here…"
|
||||||
@keydown.up="editCurrentUserLastNote()"
|
@keydown.up="editCurrentUserLastNote()"
|
||||||
@keydown.meta.enter="handleSave()"
|
@keydown.meta.enter="handleSave()"
|
||||||
@keydown.ctrl.enter="handleSave()">
|
@keydown.ctrl.enter="handleSave()">
|
||||||
|
|
|
@ -173,7 +173,7 @@ js-autosize markdown-area js-vue-issue-note-form js-vue-textarea"
|
||||||
v-model="updatedNoteBody"
|
v-model="updatedNoteBody"
|
||||||
ref="textarea"
|
ref="textarea"
|
||||||
slot="textarea"
|
slot="textarea"
|
||||||
placeholder="Write a comment or drag your files here..."
|
placeholder="Write a comment or drag your files here…"
|
||||||
@keydown.meta.enter="handleUpdate()"
|
@keydown.meta.enter="handleUpdate()"
|
||||||
@keydown.ctrl.enter="handleUpdate()"
|
@keydown.ctrl.enter="handleUpdate()"
|
||||||
@keydown.up="editMyLastNote()"
|
@keydown.up="editMyLastNote()"
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
= form_for(@release, method: :put, url: project_tag_release_path(@project, @tag.name), html: { class: 'common-note-form release-form js-quick-submit' }) do |f|
|
= form_for(@release, method: :put, url: project_tag_release_path(@project, @tag.name), html: { class: 'common-note-form release-form js-quick-submit' }) do |f|
|
||||||
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
|
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
|
||||||
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: "Write your release notes or drag files here..."
|
= render 'projects/zen', f: f, attr: :description, classes: 'note-textarea', placeholder: "Write your release notes or drag files here…"
|
||||||
= render 'shared/notes/hints'
|
= render 'shared/notes/hints'
|
||||||
.error-alert
|
.error-alert
|
||||||
.prepend-top-default
|
.prepend-top-default
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
= label_tag :release_description, s_('TagsPage|Release notes'), class: 'col-form-label col-sm-2'
|
= label_tag :release_description, s_('TagsPage|Release notes'), class: 'col-form-label col-sm-2'
|
||||||
.col-sm-10
|
.col-sm-10
|
||||||
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
|
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do
|
||||||
= render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here...'), current_text: @release_description
|
= render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here…'), current_text: @release_description
|
||||||
= render 'shared/notes/hints'
|
= render 'shared/notes/hints'
|
||||||
.form-text.text-muted
|
.form-text.text-muted
|
||||||
= s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.')
|
= s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.')
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
.col-sm-12= f.label :content, class: 'control-label-full-width'
|
.col-sm-12= f.label :content, class: 'control-label-full-width'
|
||||||
.col-sm-12
|
.col-sm-12
|
||||||
= render layout: 'projects/md_preview', locals: { url: project_wiki_preview_markdown_path(@project, @page.slug) } do
|
= render layout: 'projects/md_preview', locals: { url: project_wiki_preview_markdown_path(@project, @page.slug) } do
|
||||||
= render 'projects/zen', f: f, attr: :content, classes: 'note-textarea', placeholder: s_("WikiPage|Write your content or drag files here...")
|
= render 'projects/zen', f: f, attr: :content, classes: 'note-textarea', placeholder: s_("WikiPage|Write your content or drag files here…")
|
||||||
= render 'shared/notes/hints'
|
= render 'shared/notes/hints'
|
||||||
|
|
||||||
.clearfix
|
.clearfix
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
= render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do
|
= render layout: 'projects/md_preview', locals: { url: preview_url, referenced_users: true } do
|
||||||
= render 'projects/zen', f: form, attr: :description,
|
= render 'projects/zen', f: form, attr: :description,
|
||||||
classes: 'note-textarea qa-issuable-form-description',
|
classes: 'note-textarea qa-issuable-form-description',
|
||||||
placeholder: "Write a comment or drag your files here...",
|
placeholder: "Write a comment or drag your files here…",
|
||||||
supports_quick_actions: supports_quick_actions
|
supports_quick_actions: supports_quick_actions
|
||||||
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
|
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
|
||||||
.clearfix
|
.clearfix
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
= hidden_field_tag :target_id, '', class: 'js-form-target-id'
|
= hidden_field_tag :target_id, '', class: 'js-form-target-id'
|
||||||
= hidden_field_tag :target_type, '', class: 'js-form-target-type'
|
= hidden_field_tag :target_type, '', class: 'js-form-target-type'
|
||||||
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(project), referenced_users: true } do
|
= render layout: 'projects/md_preview', locals: { url: preview_markdown_path(project), referenced_users: true } do
|
||||||
= render 'projects/zen', attr: 'note[note]', classes: 'note-textarea js-note-text js-task-list-field', placeholder: "Write a comment or drag your files here..."
|
= render 'projects/zen', attr: 'note[note]', classes: 'note-textarea js-note-text js-task-list-field', placeholder: "Write a comment or drag your files here…"
|
||||||
= render 'shared/notes/hints'
|
= render 'shared/notes/hints'
|
||||||
|
|
||||||
.note-form-actions.clearfix
|
.note-form-actions.clearfix
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
= render 'projects/zen', f: f,
|
= render 'projects/zen', f: f,
|
||||||
attr: :note,
|
attr: :note,
|
||||||
classes: 'note-textarea js-note-text',
|
classes: 'note-textarea js-note-text',
|
||||||
placeholder: "Write a comment or drag your files here...",
|
placeholder: "Write a comment or drag your files here…",
|
||||||
supports_quick_actions: supports_quick_actions,
|
supports_quick_actions: supports_quick_actions,
|
||||||
supports_autocomplete: supports_autocomplete
|
supports_autocomplete: supports_autocomplete
|
||||||
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
|
= render 'shared/notes/hints', supports_quick_actions: supports_quick_actions
|
||||||
|
|
|
@ -8,8 +8,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gitlab 1.0.0\n"
|
"Project-Id-Version: gitlab 1.0.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2018-06-08 18:19+0200\n"
|
"POT-Creation-Date: 2018-06-11 09:18+0200\n"
|
||||||
"PO-Revision-Date: 2018-06-08 18:19+0200\n"
|
"PO-Revision-Date: 2018-06-11 09:18+0200\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"Language: \n"
|
"Language: \n"
|
||||||
|
@ -4106,7 +4106,7 @@ msgstr ""
|
||||||
msgid "TagsPage|Use git tag command to add a new one:"
|
msgid "TagsPage|Use git tag command to add a new one:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "TagsPage|Write your release notes or drag files here..."
|
msgid "TagsPage|Write your release notes or drag files here…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "TagsPage|protected"
|
msgid "TagsPage|protected"
|
||||||
|
@ -4803,7 +4803,7 @@ msgstr ""
|
||||||
msgid "WikiPage|Page slug"
|
msgid "WikiPage|Page slug"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "WikiPage|Write your content or drag files here..."
|
msgid "WikiPage|Write your content or drag files here…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Wiki|Create Page"
|
msgid "Wiki|Create Page"
|
||||||
|
|
|
@ -84,7 +84,7 @@ describe('issue_comment_form component', () => {
|
||||||
it('should render textarea with placeholder', () => {
|
it('should render textarea with placeholder', () => {
|
||||||
expect(
|
expect(
|
||||||
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
||||||
).toEqual('Write a comment or drag your files here...');
|
).toEqual('Write a comment or drag your files here…');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should make textarea disabled while requesting', (done) => {
|
it('should make textarea disabled while requesting', (done) => {
|
||||||
|
|
|
@ -106,7 +106,7 @@ describe('note_app', () => {
|
||||||
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
||||||
expect(
|
expect(
|
||||||
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
||||||
).toEqual('Write a comment or drag your files here...');
|
).toEqual('Write a comment or drag your files here…');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render form comment button as disabled', () => {
|
it('should render form comment button as disabled', () => {
|
||||||
|
@ -129,7 +129,7 @@ describe('note_app', () => {
|
||||||
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
||||||
expect(
|
expect(
|
||||||
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
||||||
).toEqual('Write a comment or drag your files here...');
|
).toEqual('Write a comment or drag your files here…');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ describe('issue_note_form component', () => {
|
||||||
it('should render text area with placeholder', () => {
|
it('should render text area with placeholder', () => {
|
||||||
expect(
|
expect(
|
||||||
vm.$el.querySelector('textarea').getAttribute('placeholder'),
|
vm.$el.querySelector('textarea').getAttribute('placeholder'),
|
||||||
).toEqual('Write a comment or drag your files here...');
|
).toEqual('Write a comment or drag your files here…');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should link to markdown docs', () => {
|
it('should link to markdown docs', () => {
|
||||||
|
|
Loading…
Reference in a new issue