Use lazy translation lookups for redactions
Requires renaming the translation keys
This commit is contained in:
parent
4a9846b078
commit
2c7bc36493
6 changed files with 25 additions and 28 deletions
|
@ -25,7 +25,7 @@ class RedactionsController < ApplicationController
|
|||
# note that the description format will default to 'markdown'
|
||||
|
||||
if @redaction.save
|
||||
flash[:notice] = t("redaction.create.flash")
|
||||
flash[:notice] = t(".flash")
|
||||
redirect_to @redaction
|
||||
else
|
||||
render :action => "new"
|
||||
|
@ -42,7 +42,7 @@ class RedactionsController < ApplicationController
|
|||
@redaction.description = params[:redaction][:description]
|
||||
|
||||
if @redaction.save
|
||||
flash[:notice] = t("redaction.update.flash")
|
||||
flash[:notice] = t(".flash")
|
||||
redirect_to @redaction
|
||||
else
|
||||
render :action => "edit"
|
||||
|
@ -54,14 +54,14 @@ class RedactionsController < ApplicationController
|
|||
@redaction.old_ways.empty? &&
|
||||
@redaction.old_relations.empty?
|
||||
if @redaction.destroy
|
||||
flash[:notice] = t("redaction.destroy.flash")
|
||||
flash[:notice] = t(".flash")
|
||||
redirect_to :redactions
|
||||
else
|
||||
flash[:error] = t("redaction.destroy.error")
|
||||
flash[:error] = t(".error")
|
||||
redirect_to @redaction
|
||||
end
|
||||
else
|
||||
flash[:error] = t("redaction.destroy.not_empty")
|
||||
flash[:error] = t(".not_empty")
|
||||
redirect_to @redaction
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue