summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2017-01-14 10:00:41 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2017-01-14 10:00:41 +0000
commit780d95889a4056e7202541c4e9eb7f4c4c8b2c6f (patch)
treef1b6edbcff531eea64a13eb9a9f9b99f176c0f2b /app/views
parent1d63635e9ccfadfa8692a856fc2a1bf7bc303c87 (diff)
downloadredmine-780d95889a4056e7202541c4e9eb7f4c4c8b2c6f.tar.gz
redmine-780d95889a4056e7202541c4e9eb7f4c4c8b2c6f.zip
Remove superfluous spaces before colon (#24720).
Patch by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@16185 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/projects.html.erb2
-rw-r--r--app/views/projects/settings/_versions.html.erb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/projects.html.erb b/app/views/admin/projects.html.erb
index d9c32280d..630e78607 100644
--- a/app/views/admin/projects.html.erb
+++ b/app/views/admin/projects.html.erb
@@ -6,7 +6,7 @@
<%= form_tag({}, :method => :get) do %>
<fieldset><legend><%= l(:label_filter_plural) %></legend>
-<label for='status'><%= l(:field_status) %> :</label>
+<label for='status'><%= l(:field_status) %>:</label>
<%= select_tag 'status', project_status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
<label for='name'><%= l(:label_project) %>:</label>
<%= text_field_tag 'name', params[:name], :size => 30 %>
diff --git a/app/views/projects/settings/_versions.html.erb b/app/views/projects/settings/_versions.html.erb
index 65c2f529e..c88bd01a4 100644
--- a/app/views/projects/settings/_versions.html.erb
+++ b/app/views/projects/settings/_versions.html.erb
@@ -2,7 +2,7 @@
<%= form_tag(settings_project_path(@project, :tab => 'versions'), :method => :get) do %>
<fieldset><legend><%= l(:label_filter_plural) %></legend>
-<label for='status'><%= l(:field_status) %> :</label>
+<label for='status'><%= l(:field_status) %>:</label>
<%= select_tag 'version_status', options_for_select([[l(:label_all), '']] + Version::VERSION_STATUSES.collect {|s| [l("version_status_#{s}"), s]}, @version_status), :onchange => "this.form.submit(); return false;" %>
<label for='name'><%= l(:label_version) %>:</label>
<%= text_field_tag 'version_name', @version_name, :size => 30 %>