diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-12-13 13:54:52 +0100 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-12-13 13:55:31 +0100 |
commit | 31345a8e1a2b6f2860a84041d36c1fed09b3a362 (patch) | |
tree | d7bd5d1eabeeec969f8b26918211e6120074010f | |
parent | 42179b3f75feacda8e28c53bd963b8a861238537 (diff) | |
download | sonarqube-31345a8e1a2b6f2860a84041d36c1fed09b3a362.tar.gz sonarqube-31345a8e1a2b6f2860a84041d36c1fed09b3a362.zip |
Fix missing message .
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties | 1 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/all_projects/index.html.erb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties index 296540d7726..d56128bf503 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -519,6 +519,7 @@ reviews.filtered_by.to=To date #------------------------------------------------------------------------------ all-projects.cols.name=Name +all-projects.results_not_display_due_to_security=Due to security settings, some results are not being displayed. #------------------------------------------------------------------------------ diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/all_projects/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/all_projects/index.html.erb index 1193aac805d..4a65fb9a4d1 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/all_projects/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/all_projects/index.html.erb @@ -5,7 +5,7 @@ <div id="all-projects"> <% if @filter.security_exclusions %> - <p class="notes"><%= message('rows_not_display_due_to_security') -%></p> + <p class="notes"><%= message('all-projects.results_not_display_due_to_security') -%></p> <% end %> <% |