Commit 7bd7ee629eac9cea8b51919c1a20a51a3e473210
1 parent
f4f4d347
Exists in
master
and in
29 other branches
Fixing notice message
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/my_profile/tasks_controller.rb
... | ... | @@ -33,7 +33,7 @@ class TasksController < MyProfileController |
33 | 33 | if failed.blank? |
34 | 34 | session[:notice] = _("All decisions were applied successfully.") |
35 | 35 | else |
36 | - session[:notice] = _("Some tasks couldn't be applied.") | |
36 | + session[:notice] = _("Some decisions couldn't be applied.") | |
37 | 37 | end |
38 | 38 | redirect_to params.merge!(:action => 'index', :failed => failed) |
39 | 39 | end | ... | ... |