Commit 6c5bc881bf69479497e8c43ae457ac9d44c83407

Authored by Leandro Santos
1 parent d3e59ff7
Exists in master

removing interpolation string

controllers/myprofile/dialoga_plugin_myprofile_controller.rb
@@ -9,7 +9,7 @@ class DialogaPluginMyprofileController < MyProfileController @@ -9,7 +9,7 @@ class DialogaPluginMyprofileController < MyProfileController
9 Delayed::Job.enqueue(DialogaPlugin::ReportJob.new(profile.id, report_path)) 9 Delayed::Job.enqueue(DialogaPlugin::ReportJob.new(profile.id, report_path))
10 Delayed::Job.enqueue(DialogaPlugin::RankingJob.new(profile.id, report_path)) 10 Delayed::Job.enqueue(DialogaPlugin::RankingJob.new(profile.id, report_path))
11 Delayed::Job.enqueue(DialogaPlugin::EventJob.new(profile.id, report_path)) 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 redirect_to :back 13 redirect_to :back
14 end 14 end
15 15