# HG changeset patch # User luisf # Date 1336757351 -3600 # Node ID 2187198b6209d1cf3c4ef932d37f919f43f1b294 # Parent b73a59a6acbd299180c19a44cead7d14193dd963 addresses feature #343 (help text in tags input form). diff -r b73a59a6acbd -r 2187198b6209 vendor/plugins/redmine_tags/app/views/projects/_tags_form.html.erb --- a/vendor/plugins/redmine_tags/app/views/projects/_tags_form.html.erb Fri May 11 16:10:11 2012 +0100 +++ b/vendor/plugins/redmine_tags/app/views/projects/_tags_form.html.erb Fri May 11 18:29:11 2012 +0100 @@ -1,8 +1,11 @@ <% fields_for :project, project, :builder => TabularFormBuilder do |f| -%>
-

<%= f.text_field :tag_list, :label => :tags, :size => 60, :class => 'hol' %>

+

<%= f.text_field :tag_list, :label => :tags, :size => 60, :class => 'hol' %> +
+ <%= l(:text_tags_info) %> +

<%= javascript_include_tag 'tags_input', :plugin => 'redmine_tags' %> - <%= javascript_tag "observeProjectTagsField('#{url_for(:controller => 'auto_completes', :action => 'project_tags', :project_id => Project.first.id)}', false)" %> + <%= javascript_tag "observeProjectTagsField('#{url_for(:controller => 'auto_completes', :action => 'project_tags', :project_id => Project.first.id)}', false)" %>
<% end -%> \ No newline at end of file diff -r b73a59a6acbd -r 2187198b6209 vendor/plugins/redmine_tags/config/locales/en.yml --- a/vendor/plugins/redmine_tags/config/locales/en.yml Fri May 11 16:10:11 2012 +0100 +++ b/vendor/plugins/redmine_tags/config/locales/en.yml Fri May 11 18:29:11 2012 +0100 @@ -39,3 +39,7 @@ project_filtering_q_label: "Search for text:" project_filter_no_results: "No matching projects found" button_filter: "Filter" + + text_tags_info: "A tag can be any text you like, but they're most useful if you choose tags that are already being used for the same thing by other projects (where possible).
Some tag examples are: library, plugin, paper, c++, mir, alpha, stable, bsd, android, ...
Tags help others find your work: please don't forget to tag your projects!" + +