]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2589 Modification of all web ruby templates to use bundles
authorFabrice Bellingard <bellingard@gmail.com>
Thu, 21 Jul 2011 08:00:08 +0000 (10:00 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Thu, 21 Jul 2011 08:00:08 +0000 (10:00 +0200)
- Display widget title and description from metadata if I18n keys not
  available

sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_definition.html.erb

index 345f89f10d51e32ad8a9fcf5cbfe626b578149b8..c911a8c0e35bb4f221ad93d968ab3ecd9e672209 100644 (file)
@@ -1,7 +1,7 @@
 <td>
 <div class="widget_def" id="def_<%= definition.getId().tr('_', '') -%>">
-<p><b><%= h message('widget.' + definition.getId() + '.title') -%></b></p>
-<p><%= h message('widget.' + definition.getId() + '.description') -%></p>
+<p><b><%= h message('widget.' + definition.getId() + '.title', :default => definition.getTitle()) -%></b></p>
+<p><%= h message('widget.' + definition.getId() + '.description', :default => definition.getDescription()) -%></p>
 <%= form_tag :action => 'add_widget', :did => dashboard_id, :id => resource_id, :widget => definition.getId() %>
 <input type="submit" value="<%= message('dashboard.add_widget') -%>" >
 </form>