diff options
author | Godin <mandrikov@gmail.com> | 2010-12-06 22:40:50 +0000 |
---|---|---|
committer | Godin <mandrikov@gmail.com> | 2010-12-06 22:40:50 +0000 |
commit | 1dcef2da02a23f2d1bc77f49f80f38972db2259d (patch) | |
tree | 95da892eafa37e3e4e37cf40c1e68310886da685 /sonar-server | |
parent | e5793dc6469cd0c17cf67dd946c7124ae3faa3fa (diff) | |
download | sonarqube-1dcef2da02a23f2d1bc77f49f80f38972db2259d.tar.gz sonarqube-1dcef2da02a23f2d1bc77f49f80f38972db2259d.zip |
SONAR-1829: Rename the term 'Priority' by 'Severity' in quality profiles
Diffstat (limited to 'sonar-server')
3 files changed, 4 insertions, 4 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/edit.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/edit.html.erb index efa5b03e238..a156e45d727 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/edit.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/edit.html.erb @@ -31,7 +31,7 @@ <td><input type="text" name="rule[name]" size="80" value="<%= h @rule.name -%>"></input></td> </tr> <tr> - <td width="1%" nowrap>Default priority:</td> + <td width="1%" nowrap>Default severity:</td> <td class="sep"> </td> <td> <select name="rule[priority]"> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb index 0cc3d938051..64e9e11abc9 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb @@ -52,7 +52,7 @@ <%= select_tag "plugins", options_for_select(@select_plugins, @plugins), :id => 'search_plugin', :multiple => true, :size => 6 %> </td> <td class="left" valign="top" width="1%" nowrap> - <span class="note">Priority</span><br/> + <span class="note">Severity</span><br/> <%= select_tag "priorities", options_for_select(@select_priority, @priorities), :id => 'search_priority', :multiple => true, :size => 6 %> </td> <td class="left" valign="top" width="1%" nowrap> @@ -97,7 +97,7 @@ <table class="data width100 marginbottom10" id="result_table"> <thead> <tr> - <th class="left" nowrap>Active/Priority</th> + <th class="left" nowrap>Active/Severity</th> <th class="left">Name <span style="font-weight: normal">[<%= link_to_function("expand/collapse", "toggle_rules()") %>]</span></th> <th class="right">Plugin</th> </tr> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/new.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/new.html.erb index 9eacb5dfcf6..7fd07ac3f0d 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/new.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/new.html.erb @@ -17,7 +17,7 @@ <td><input type="text" name="rule[name]" size="80"></input></td> </tr> <tr> - <td width="1%" nowrap>Default priority:</td> + <td width="1%" nowrap>Default severity:</td> <td class="sep"> </td> <td> <select name="rule[priority]"> |