# HG changeset patch # User luisf # Date 1291827080 0 # Node ID 45aa8d16ec108ea3535a6aad599a73b593b12ca5 # Parent 7c828d63cb0684999af663b50a96efbc19a788dd Feature #43: Added new strings and placeholders to make the new project page's fields more clear. diff -r 7c828d63cb06 -r 45aa8d16ec10 app/views/projects/_form.rhtml --- a/app/views/projects/_form.rhtml Wed Dec 08 15:14:02 2010 +0000 +++ b/app/views/projects/_form.rhtml Wed Dec 08 16:51:20 2010 +0000 @@ -2,7 +2,10 @@
<%= f.text_field :name, :required => true, :size => 60 %>
+<%= f.text_field :name, :required => true, :size => 60 %>
+
+ <%= l(:text_project_name_info) %>
+
<%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %>
@@ -11,10 +14,17 @@<%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %>
<%= f.text_field :identifier, :required => true, :size => 60, :disabled => @project.identifier_frozen? %>
<% unless @project.identifier_frozen? %>
-
<%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info) %>
+
+ <%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info) %>
<% end %>
<%= f.text_field :homepage, :size => 60 %>
-<%= f.check_box :is_public %>
+<%= f.text_field :homepage, :size => 60 %>
+
+ <%= l(:text_project_homepage_info) %>
+
<%= f.check_box :is_public %>
+
+ <%= l(:text_project_visibility_info) %>
+