diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-04-19 10:27:00 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-04-19 10:27:00 +0200 |
commit | 88b7df5c18b13340e8ee859d35593b9de54935ca (patch) | |
tree | d357484b877cb4db3bd45f6a2be0a71191bd2669 | |
parent | 013e08a1b4f395c6616775fc5e5ea27ad61b2c6e (diff) | |
download | sonarqube-88b7df5c18b13340e8ee859d35593b9de54935ca.tar.gz sonarqube-88b7df5c18b13340e8ee859d35593b9de54935ca.zip |
SONAR-7476 apply feedback
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs | 9 | ||||
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 1 |
2 files changed, 7 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs b/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs index 4ec68258a75..61812bf6630 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs +++ b/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs @@ -3,9 +3,6 @@ <div class="column-two-thirds" id="quality-profile-rules"> <header class="page-header"> <h3 class="page-title">{{t 'coding_rules'}}</h3> - <div class="button-group big-spacer-left"> - <a class="button" href="{{link activateRulesUrl}}">{{t 'coding_rules.activate'}}</a> - </div> </header> <div> @@ -31,6 +28,12 @@ {{/each}} </div> {{/notEmpty}} + + <div class="spacer-top"> + <a class="button" href="{{link activateRulesUrl}}"> + {{t 'quality_profiles.activate_more'}} + </a> + </div> </div> {{#notEmpty exporters}} 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 8ce30fca411..f4d62f63fc1 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -1748,6 +1748,7 @@ quality_profiles.no_results=No profiles found. Try installing a language plugin. quality_profiles.projects.select_hint=Click to associate this project with the quality profile quality_profiles.projects.deselect_hint=Click to remove association between this project and the quality profile quality_profiles.no_profiles_for_comparison=There are no profiles for comparison +quality_profiles.activate_more=Activate More |