diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-13 15:47:06 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-03-13 15:47:06 +0000 |
commit | 508df4a33acba2cc65e141ad9620098316674e7b (patch) | |
tree | c00abdcc6f62e930efce0d023b958b621933f84c /app/views | |
parent | e016f3ef1376ba27e0f376608777087b6ee64f1e (diff) | |
download | redmine-508df4a33acba2cc65e141ad9620098316674e7b.tar.gz redmine-508df4a33acba2cc65e141ad9620098316674e7b.zip |
Slight UI changes to the subtasks tree.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3577 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_relations.rhtml | 2 | ||||
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_relations.rhtml b/app/views/issues/_relations.rhtml index 135bfa681..83a78b1c8 100644 --- a/app/views/issues/_relations.rhtml +++ b/app/views/issues/_relations.rhtml @@ -12,7 +12,7 @@ <tr> <td><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> - <%= link_to_issue relation.other_issue(@issue) %> + <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %> </td> <td><%= relation.other_issue(@issue).status.name %></td> <td><%= format_date(relation.other_issue(@issue).start_date) %></td> diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index c07fa921b..a551efb80 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -65,7 +65,7 @@ <div class="contextual"> <%= link_to(l(:button_add), {:controller => 'issues', :action => 'new', :project_id => @project, :issue => {:parent_issue_id => @issue}}) if User.current.allowed_to?(:manage_subtasks, @project) %> </div> -<p><strong><%=l(:label_subtask_pural)%></strong></p> +<p><strong><%=l(:label_subtask_plural)%></strong></p> <%= render_descendants_tree(@issue) unless @issue.leaf? %> </div> <% end %> |