diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-01 09:03:43 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-01 09:03:43 +0000 |
commit | 5ff37187a4c28c76182254b0f31c935cc165f3ae (patch) | |
tree | 2ce14b596ada40b4f5c8fa07e2f12fc52c7c091d | |
parent | e829fe15a210895fb3c436f5716405b7c6ff23c6 (diff) | |
download | sonarqube-5ff37187a4c28c76182254b0f31c935cc165f3ae.tar.gz sonarqube-5ff37187a4c28c76182254b0f31c935cc165f3ae.zip |
rules console: rename the button 'Create new rule from this template' to 'Copy rule'
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb index b958ef981b9..83b8e4460cf 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/_rule.html.erb @@ -44,7 +44,7 @@ </table> <% if is_admin %> <% if rule.template? %> - <%= button_to "Create new rule from this template", :action => 'new', :id => profile.id, :rule_id => rule.id %> + <%= button_to "Copy rule", :action => 'new', :id => profile.id, :rule_id => rule.id %> <% end %> <% if rule.editable? %> <%= button_to "Edit rule", :action => 'edit', :id => profile.id, :rule_id => rule.id -%> |