add fast description edit button for issues
This commit is contained in:
parent
7bd1f63214
commit
b00c9f02f8
@ -10,6 +10,7 @@ br
|
||||
p = additionals_settings_checkbox :new_issue_on_profile
|
||||
p = additionals_settings_checkbox :issue_assign_to_me
|
||||
p = additionals_settings_checkbox :issue_note_with_author
|
||||
p = additionals_settings_checkbox :issue_fast_description_edit
|
||||
p = additionals_settings_checkbox :issue_change_status_in_sidebar
|
||||
|
||||
p = additionals_settings_checkbox :issue_freezed_with_close
|
||||
|
@ -0,0 +1,13 @@
|
||||
- if @issue.editable? && Additionals.setting?(:issue_fast_description_edit)
|
||||
javascript:
|
||||
$(function() {
|
||||
$('.issue .description .contextual')
|
||||
.prepend("#{escape_javascript link_to(l(:button_edit), edit_issue_path(@issue), class: 'icon icon-edit', id: 'fast-desc-link')} ");
|
||||
|
||||
$("#fast-desc-link").click(function(){
|
||||
showAndScrollTo("update", "issue_notes");
|
||||
$("#issue_description_and_toolbar").show();
|
||||
$("#issue_description").focus();
|
||||
return false;
|
||||
});
|
||||
});
|
@ -204,3 +204,4 @@ cs:
|
||||
label_user_is_author_of: "Tento uživatel je autorem tohoto %{entity}."
|
||||
label_issue_genitive: "Úkol"
|
||||
label_issue_note_with_author: "Zobrazit autora úlohy s poznámkou"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ de:
|
||||
label_user_is_author_of: Dieser Benutzer ist der Autor dieses %{entity}.
|
||||
label_issue_genitive: Tickets
|
||||
label_issue_note_with_author: Ticket-Autor zu Kommentar anzeigen
|
||||
label_issue_fast_description_edit: Schnellbearbeitung Beschreibung
|
||||
|
@ -204,3 +204,4 @@ en:
|
||||
label_user_is_author_of: This user is the author of this %{entity}.
|
||||
label_issue_genitive: issue
|
||||
label_issue_note_with_author: Show issue author with note
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ es:
|
||||
label_user_is_author_of: "Este usuario es el autor de esta %{entity}."
|
||||
label_issue_genitive: "problema"
|
||||
label_issue_note_with_author: "Mostrar autor de tarea con nota"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ fr:
|
||||
label_user_is_author_of: "Cet utilisateur est l'auteur de cette %{entity}."
|
||||
label_issue_genitive: "problème"
|
||||
label_issue_note_with_author: "Afficher l'auteur de la tâche avec une note"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ it:
|
||||
label_user_is_author_of: "Questo utente è l'autore di questo %{entity}."
|
||||
label_issue_genitive: tema
|
||||
label_issue_note_with_author: "Mostra l'autore dell'attività con una nota"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ ja:
|
||||
label_user_is_author_of: "このユーザーは、この %{entity}."
|
||||
label_issue_genitive: "タスク"
|
||||
label_issue_note_with_author: "タスクの作者とメモを表示する"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ ko:
|
||||
label_user_is_author_of: "이 사용자는 이 글의 작성자입니다 %{entity}."
|
||||
label_issue_genitive: "일"
|
||||
label_issue_note_with_author: "메모와 함께 작업 작성자 표시"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ pl:
|
||||
label_user_is_author_of: "Ten użytkownik jest autorem tego %{entity}."
|
||||
label_issue_genitive: issue
|
||||
label_issue_note_with_author: "Pokaż autora zadania z notatką"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ pt-BR:
|
||||
label_user_is_author_of: "Este usuário é o autor deste %{entity}."
|
||||
label_issue_genitive: "Tarefa"
|
||||
label_issue_note_with_author: "Mostrar autor da tarefa com nota"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ ru:
|
||||
label_user_is_author_of: "Этот пользователь является автором этого %{entity}."
|
||||
label_issue_genitive: "Задание"
|
||||
label_issue_note_with_author: "Показать автора задачи с примечанием"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@
|
||||
label_user_is_author_of: "这个用户是这个的作者 %{entity}."
|
||||
label_issue_genitive: "问题"
|
||||
label_issue_note_with_author: "显示任务的作者与注释"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -204,3 +204,4 @@ zh:
|
||||
label_user_is_author_of: "这个用户是这个的作者 %{entity}."
|
||||
label_issue_genitive: "问题"
|
||||
label_issue_note_with_author: "显示任务的作者与注释"
|
||||
label_issue_fast_description_edit: Fast edit for description
|
||||
|
@ -18,6 +18,7 @@ issue_change_status_in_sidebar: 0
|
||||
issue_current_user_status: 0
|
||||
issue_freezed_with_close: 0
|
||||
issue_note_with_author: 0
|
||||
issue_fast_description_edit: 0
|
||||
issue_status_change: 0
|
||||
issue_status_x: ''
|
||||
issue_status_y: ''
|
||||
|
@ -12,6 +12,7 @@ module Additionals
|
||||
|
||||
render_on :view_account_login_bottom, partial: 'login_text'
|
||||
render_on :view_issue_action_menu, partial: 'issues/additionals_action_menu'
|
||||
render_on :view_issues_show_description_bottom, partial: 'issues/additionals_show_description_bottom'
|
||||
render_on :view_issues_context_menu_start, partial: 'additionals_closed_issues'
|
||||
render_on :view_issues_bulk_edit_details_bottom, partial: 'change_author_bulk'
|
||||
render_on :view_issues_form_details_bottom, partial: 'change_author'
|
||||
|
Loading…
Reference in New Issue
Block a user