X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7dbf8d83369cb73929080c4ba23fdd7dcd0184df..5ea1ba8d8427d75aef4bd91ef79891ee0b86de28:/app/controllers/reports_controller.rb diff --git a/app/controllers/reports_controller.rb b/app/controllers/reports_controller.rb index 8a1bed508..08092c073 100644 --- a/app/controllers/reports_controller.rb +++ b/app/controllers/reports_controller.rb @@ -2,6 +2,7 @@ class ReportsController < ApplicationController layout "site" before_action :authorize_web + before_action :set_locale before_action :require_user def new @@ -9,7 +10,7 @@ class ReportsController < ApplicationController @report = Report.new @report.issue = Issue.find_or_initialize_by(create_new_report_params) else - redirect_to root_path, :notice => t("reports.new.missing_params") + redirect_to root_path, :notice => t(".missing_params") end end @@ -20,9 +21,9 @@ class ReportsController < ApplicationController if @report.save @report.issue.save @report.issue.reopen! unless @report.issue.open? - redirect_to helpers.reportable_url(@report.issue.reportable), :notice => t("issues.create.successful_report") + redirect_to helpers.reportable_url(@report.issue.reportable), :notice => t(".successful_report") else - redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t("issues.create.provide_details") + redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t(".provide_details") end end