aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2012-11-27 12:42:34 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2012-11-27 12:42:34 +0100
commit4fad8c5ae31af65bd9bed9f5d849205dbb786965 (patch)
tree1e8d6e7b050a2fe5a8a6c76bd3b0f911d7cdc9e9 /plugins
parentfb260de5b51048ce2ee5413a8205e11039fb174f (diff)
downloadsonarqube-4fad8c5ae31af65bd9bed9f5d849205dbb786965.tar.gz
sonarqube-4fad8c5ae31af65bd9bed9f5d849205dbb786965.zip
SONAR-3841 In the "Description" widget we should display the the language name and not the language key
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/description.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/description.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/description.html.erb
index 9368906541d..26e74cac55f 100644
--- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/description.html.erb
+++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/description.html.erb
@@ -12,7 +12,7 @@
<% if @project.language %>
<tr>
<td><%= message('widget.description.language') -%>: </td>
- <td id="resource_language"><%= @project.language -%></td>
+ <td id="resource_language"><%= Api::Utils.language_name(@project.language) -%></td>
</tr>
<% end %>
<%