mirror of
https://github.com/redmine/redmine.git
synced 2026-03-10 06:30:54 +01:00
[#9489] set id for message_subject and linked it to label, added invisible label
Contributed by Romano Licker. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7682 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
|
||||
<div class="box">
|
||||
<!--[form:message]-->
|
||||
<p><label><%= l(:field_subject) %></label><br />
|
||||
<%= f.text_field :subject, :size => 120 %>
|
||||
<p><label for="message_subject"><%= l(:field_subject) %></label><br />
|
||||
<%= f.text_field :subject, :size => 120, :id => "message_subject" %>
|
||||
|
||||
<% if !replying && User.current.allowed_to?(:edit_messages, @project) %>
|
||||
<label><%= f.check_box :sticky %><%= l(:label_board_sticky) %></label>
|
||||
@@ -17,7 +17,9 @@
|
||||
<%= f.select :board_id, @project.boards.collect {|b| [b.name, b.id]} %></p>
|
||||
<% end %>
|
||||
|
||||
<p><%= f.text_area :content, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content' %></p>
|
||||
<p>
|
||||
<%= label_tag "message_content", l(:description_message_content), :class => "hidden-for-sighted" %>
|
||||
<%= f.text_area :content, :cols => 80, :rows => 15, :class => 'wiki-edit', :id => 'message_content' %></p>
|
||||
<%= wikitoolbar_for 'message_content' %>
|
||||
<!--[eoform:message]-->
|
||||
|
||||
|
||||
@@ -1003,6 +1003,7 @@ de:
|
||||
description_filter: Filter
|
||||
description_search: Suchfeld
|
||||
description_project_scope: Suchbereich
|
||||
description_message_content: Nachrichteninhalt
|
||||
description_query_sort_criteria_attribute: Sortierattribut
|
||||
description_query_sort_criteria_direction: Sortierrichtung
|
||||
description_available_columns: Verfügbare Spalten
|
||||
|
||||
@@ -981,6 +981,7 @@ en:
|
||||
description_filter: Filter
|
||||
description_search: Searchfield
|
||||
description_project_scope: Search scope
|
||||
description_message_content: Message content
|
||||
description_query_sort_criteria_attribute: Sort attribute
|
||||
description_query_sort_criteria_direction: Sort direction
|
||||
description_available_columns: Available Columns
|
||||
|
||||
Reference in New Issue
Block a user