diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-11-21 19:03:54 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-11-21 19:10:42 +0100 |
commit | 2907b2322404490ce99138d60cc029248adcbc7b (patch) | |
tree | 8213e4ba6265d7648596c52d1b50efc1c39e3fdc | |
parent | 34015ab26d81c59e78168dd795b2573bd1257d81 (diff) | |
download | sonarqube-2907b2322404490ce99138d60cc029248adcbc7b.tar.gz sonarqube-2907b2322404490ce99138d60cc029248adcbc7b.zip |
Minor UI improvements : alignment in components header + labels in coverage widget
-rw-r--r-- | plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties | 8 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties index c12cdf73223..721ae89b67b 100644 --- a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -451,21 +451,21 @@ widget.alerts.description=Display current alerts on the project. widget.alerts.no_alert=No alerts widget.alerts.alerts=Alerts -widget.code_coverage.name=Code Coverage +widget.code_coverage.name=Code coverage widget.code_coverage.description=Reports on units tests and code coverage by unit tests. widget.code_coverage.line_coverage.suffix=\ line coverage widget.code_coverage.branch_coverage.suffix=\ branch coverage widget.code_coverage.lines_to_cover.suffix=\ lines to cover widget.code_coverage.on_new_code=On new code widget.code_coverage.no_new_lines_to_cover=No new lines to cover -widget.code_coverage.test_success=Unit Test Success +widget.code_coverage.test_success=Unit test success widget.code_coverage.failures.suffix=\ failures widget.code_coverage.errors.suffix=\ errors widget.code_coverage.tests.suffix=\ tests widget.code_coverage.skipped.suffix=\ skipped # id of this widget does not use underscore in order to be backward-compatible with previous version of JaCoCo plugin -widget.it-coverage.name=Integration Test Coverage +widget.it-coverage.name=Integration test coverage widget.it-coverage.description=Reports on code coverage by integration tests widget.it-coverage.line_coverage.suffix=\ line coverage widget.it-coverage.branch_coverage.suffix=\ branch coverage @@ -936,7 +936,7 @@ severity.INFO=Info metric_domain.Size=Size metric_domain.Tests=Tests -metric_domain.Integration Tests=L10n Integration Tests +metric_domain.Integration Tests=Integration Tests metric_domain.Complexity=Complexity metric_domain.Documentation=Documentation metric_domain.Rules=Rules diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml b/sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml index fca08c7e99d..c86ae1b5185 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml @@ -3,7 +3,7 @@ <tr > <th></th> <th class="nosort"></th> - <th class="left text <%= 'sortfirstasc' if @components_configuration.sorted_by_project_name? -%>"><%= message('name') -%></th> + <th class="left text <%= 'sortfirstasc' if @components_configuration.sorted_by_project_name? -%>" style="padding-left: 15px"><%= message('name') -%></th> <% configured_columns.each do |column| %> <th class="<%= column.get_table_header_css %>" style="padding-right: 15px"><%= column.name %></th> <% end %> |