diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-07-17 14:13:27 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-07-17 14:13:27 +0200 |
commit | e2f4d95803eb6b63ddfeb323caa18660be56f013 (patch) | |
tree | f7f618a375279d600ef4036cf148f536a3fcc076 /sonar-server/src/main | |
parent | 3a0f525a09e4f6258cd7694f26aab630fff692e5 (diff) | |
download | sonarqube-e2f4d95803eb6b63ddfeb323caa18660be56f013.tar.gz sonarqube-e2f4d95803eb6b63ddfeb323caa18660be56f013.zip |
SONAR-3552 Fix case in some labels
Diffstat (limited to 'sonar-server/src/main')
3 files changed, 12 insertions, 7 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/project/exclusions.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/project/exclusions.html.erb index c96382cfae0..8941c3fff64 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/project/exclusions.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/project/exclusions.html.erb @@ -1,10 +1,12 @@ -<h1>Exclude sources from code analysis</h1> -<br/> -<div class="yui-g widget" id="widget_exclusions"> +<h1><%= message('project_exclusions.page') -%></h1> + +<p style="margin: 15px 0px"> + Exclude sources from code analysis. Changes will be applied during next code analysis. +</p> +<div class="yui-g widget" id="widget_exclusions"> <div class="yui-u first"> - <p>Changes will be applied during next code analysis.</p> <% form_for( 'set_exclusions', :url => { :action => 'set_exclusions', :id => @project.id } ) do |form| pattern_index=0 %> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/project/history.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/project/history.html.erb index 0099ef7c69d..b842261ef50 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/project/history.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/project/history.html.erb @@ -16,8 +16,11 @@ } </style> -<h1><%= message('project_history.top_title') -%></h1> -<br/> +<h1><%= message('project_history.page') -%></h1> + +<p style="margin: 15px 0px"> + <%= message('project_history.description') -%> +</p> <table id="project-history" class="data" style="width:1%"> <thead> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/project/links.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/project/links.html.erb index 513bbe91ca6..47479d9c8fc 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/project/links.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/project/links.html.erb @@ -1,4 +1,4 @@ -<h1>Project links</h1> +<h1>Project Links</h1> <br/> <div class="yui-g widget" id="widget_links"> |