New strings to localization (#5225)

* error_can_not_delete_custom_field: Unable to delete custom field
* error_unable_to_connect: Unable to connect ({{value}})
* error_can_not_remove_role: This role is in use and can not be deleted.
* error_can_not_delete_tracker: This tracker contains issues and can't be deleted.


git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3627 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Azamat Hackimov
2010-04-03 11:54:24 +00:00
parent f2993f6ed0
commit eb80b79c26
43 changed files with 161 additions and 10 deletions

View File

@@ -56,7 +56,7 @@ class CustomFieldsController < ApplicationController
@custom_field = CustomField.find(params[:id]).destroy
redirect_to :action => 'index', :tab => @custom_field.class.name
rescue
flash[:error] = "Unable to delete custom field"
flash[:error] = l(:error_can_not_delete_custom_field)
redirect_to :action => 'index'
end
end