issue.manual.missing_rule=Missing rule
issue.manual.no_rules=No rules.
issue.reported_by=Reported by
+issue.component_deleted=Removed component
#------------------------------------------------------------------------------
widget.my_reviews.property.numberOfLines.name=Number of lines
widget.my_reviews.property.numberOfLines.desc=Maximum number of issues displayed at the same time.
-widget.false_positive_reviews.name=False Positives Issues
+widget.false_positive_reviews.name=False Positives
widget.false_positive_reviews.description=Shows all the false positives found on the project.
widget.false_positive_reviews.property.numberOfLines.name=Number of lines
widget.false_positive_reviews.property.numberOfLines.desc=Maximum number of issues displayed at the same time.
widget.action_plans.name=Action Plans
widget.action_plans.description=Shows all the open action plans of the project.
widget.action_plans.property.showResolvedIssues.name=Show Resolved Issues
-widget.action_plans.title=Open action plans
+widget.action_plans.title=Open Action Plans
widget.action_plans.no_action_plan=No action plan
widget.action_plans.x_unresolved_issues={0} unresolved issues
<div class="source_title">
<%
project = @issue_results.project(@issue)
- component = @issue_results.component(@issue)
+ component = @issue_results.component(@issue)
%>
- <% if component.key() != project.key() %>
+ <% if @issue.componentKey() != project.key() %>
<div class="subtitle">
<%= h project.longName() -%>
</div>
<% end %>
<span class="h1">
- <a href="<%= ApplicationController.root_context -%>/resource/index/<%= component.key() -%>?layout=false&tab=issues" onclick="window.open(this.href,'resource-<%= component.key().parameterize -%>','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= h component.longName() -%></a>
+ <% if component %>
+ <a href="<%= ApplicationController.root_context -%>/resource/index/<%= component.key() -%>?layout=false&tab=issues"
+ onclick="window.open(this.href,'resource-<%= component.key().parameterize -%>','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= h component.longName() -%></a>
+ <% else %>
+ <%= h @issue.componentKey() + '['+ message('issue.component_deleted') + ']' -%>
+ <% end %>
</span>
</div>
<%= h (truncate(@filter.issues_result.project(issue).name, :length => 100)) -%>
</td>
<td>
- <%= h @filter.issues_result.component(issue).name -%>
+ <% component = @filter.issues_result.component(issue) %>
+ <%= h component.name if component -%>
</td>
<td>
<%= h @filter.issues_result.user(issue.assignee).name if issue.assignee -%>