Commit 6c5bc881bf69479497e8c43ae457ac9d44c83407
1 parent
d3e59ff7
Exists in
master
removing interpolation string
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
controllers/myprofile/dialoga_plugin_myprofile_controller.rb
... | ... | @@ -9,7 +9,7 @@ class DialogaPluginMyprofileController < MyProfileController |
9 | 9 | Delayed::Job.enqueue(DialogaPlugin::ReportJob.new(profile.id, report_path)) |
10 | 10 | Delayed::Job.enqueue(DialogaPlugin::RankingJob.new(profile.id, report_path)) |
11 | 11 | Delayed::Job.enqueue(DialogaPlugin::EventJob.new(profile.id, report_path)) |
12 | - session[:notice] = _("Favor aguardar: o relatório será criado na pasta Relatorios/#{report_path}") | |
12 | + session[:notice] = _("Favor aguardar: o relatório será criado na pasta Relatorios/%s") % report_path | |
13 | 13 | redirect_to :back |
14 | 14 | end |
15 | 15 | ... | ... |