diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:23:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:23:23 +0000 |
commit | c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104 (patch) | |
tree | 2fb7bb4a74542b44e7d0a80135f91ebb4247fc72 | |
parent | 23cf476891a2bfffb93bb9c424f53e3d70a2a931 (diff) | |
download | redmine-c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104.tar.gz redmine-c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104.zip |
[#9489] added invisible label
Contributed by Romano Licker.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7694 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/journals/_notes_form.html.erb | 1 | ||||
-rw-r--r-- | config/locales/de.yml | 1 | ||||
-rw-r--r-- | config/locales/en.yml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/app/views/journals/_notes_form.html.erb b/app/views/journals/_notes_form.html.erb index b6973d16d..ef95f9df9 100644 --- a/app/views/journals/_notes_form.html.erb +++ b/app/views/journals/_notes_form.html.erb @@ -1,4 +1,5 @@ <% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %> + <%= label_tag "notes", l(:description_notes), :class => "hidden-for-sighted" %> <%= text_area_tag :notes, @journal.notes, :id => "journal_#{@journal.id}_notes", :class => 'wiki-edit', diff --git a/config/locales/de.yml b/config/locales/de.yml index 19794ff99..6e03fc17d 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1004,6 +1004,7 @@ de: description_search: Suchfeld description_choose_project: Projekte description_project_scope: Suchbereich + description_notes: Kommentare description_message_content: Nachrichteninhalt description_query_sort_criteria_attribute: Sortierattribut description_query_sort_criteria_direction: Sortierrichtung diff --git a/config/locales/en.yml b/config/locales/en.yml index 7627650e2..f0e15b171 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -982,6 +982,7 @@ en: description_search: Searchfield description_choose_project: Projects description_project_scope: Search scope + description_notes: Notes description_message_content: Message content description_query_sort_criteria_attribute: Sort attribute description_query_sort_criteria_direction: Sort direction |