diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-01-13 11:32:28 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-01-13 11:32:28 +0100 |
commit | 3f614723774cfd48d1e9c6cb8d7e23ef8c4db80e (patch) | |
tree | 8cf4c2a3b4ef0f7cac31fa995b8a50e87144decf | |
parent | 5f2fbeb4996f0b5b95bb718be9364a63caff4cbb (diff) | |
download | sonarqube-3f614723774cfd48d1e9c6cb8d7e23ef8c4db80e.tar.gz sonarqube-3f614723774cfd48d1e9c6cb8d7e23ef8c4db80e.zip |
improve wording for projects dashboards
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/views/admin_dashboards/index.html.erb | 5 | ||||
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/admin_dashboards/index.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/admin_dashboards/index.html.erb index e264a11f413..65ca690c5e3 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/admin_dashboards/index.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/admin_dashboards/index.html.erb @@ -6,14 +6,14 @@ <%= render :partial => 'list', :locals => {:active_dashboards => @actives.select(&:global?), :group => 'activeGlobal'} %> - <header class="page-header"> + <header class="page-header huge-spacer-top"> <h1 class="page-title"><%= message('dashboard.project_dashboards') -%></h1> <p class="page-description"><%= message('dashboard.project_dashboards.description') -%></p> </header> <%= render :partial => 'list', :locals => {:active_dashboards => @actives.reject(&:global?), :group => 'activeProject'} %> - <header class="page-header"> + <header class="page-header huge-spacer-top"> <h1 class="page-title"><%= message('dashboard.shared_dashboards') -%></h1> <p class="page-description"><%= message('dashboard.shared_dashboards.description') -%></p> </header> @@ -54,4 +54,3 @@ </tbody> </table> </div> - diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index 0c4ad89833b..192ee78f5a9 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -983,7 +983,7 @@ dashboard.default_restored=Default dashboards are restored dashboard.error_delete_default=This dashboard can't be deleted as long as it's defined as a default dashboard dashboard.error_unshare_default=This dashboard can't be unshared as long as it's defined as a default dashboard dashboard.global_dashboards.description=These dashboards are displayed to anonymous users or users who have not customized their dashboards. -dashboard.project_dashboards.description=These dashboards are displayed to anonymous users or users who have not customized their dashboards. +dashboard.project_dashboards.description=These dashboards are available to anonymous users or users who have not customized their dashboards. dashboard.shared_dashboards.description=These dashboards can be added to default dashboards. dashboard.username.default=[SonarQube] dashboard.delete_confirm_title=Delete dashboard |