i18n for outfits#destroy flashes
This commit is contained in:
parent
397c556c50
commit
5eb7842e36
3 changed files with 15 additions and 16 deletions
|
@ -28,22 +28,15 @@ class OutfitsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
if @outfit.destroy
|
@outfit.destroy
|
||||||
respond_to do |format|
|
|
||||||
format.html {
|
respond_to do |format|
|
||||||
flash[:success] = "Outfit #{@outfit.name} successfully deleted"
|
format.html {
|
||||||
redirect_to current_user_outfits_path
|
flash[:success] = t('outfits.destroy.success',
|
||||||
}
|
:outfit_name => @outfit.name)
|
||||||
format.json { render :json => true }
|
redirect_to current_user_outfits_path
|
||||||
end
|
}
|
||||||
else
|
format.json { render :json => true }
|
||||||
respond_to do |format|
|
|
||||||
format.html {
|
|
||||||
flash[:alert] = "Error deleting outfit. Try again?"
|
|
||||||
redirect_to current_user_outfits_path, :status => :bad_request
|
|
||||||
}
|
|
||||||
format.json { render :json => false, :status => :bad_request }
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -438,6 +438,9 @@ en-meep:
|
||||||
submit: Meemport all pets
|
submit: Meemport all pets
|
||||||
|
|
||||||
outfits:
|
outfits:
|
||||||
|
destroy:
|
||||||
|
success: Outfit "%{outfit_name}" succeessfully demeeped.
|
||||||
|
|
||||||
new:
|
new:
|
||||||
tagline: Meeps made meepy!
|
tagline: Meeps made meepy!
|
||||||
load_pet_legend: Enter your pet's meep
|
load_pet_legend: Enter your pet's meep
|
||||||
|
|
|
@ -439,6 +439,9 @@ en:
|
||||||
submit: Import all pets
|
submit: Import all pets
|
||||||
|
|
||||||
outfits:
|
outfits:
|
||||||
|
destroy:
|
||||||
|
success: Outfit "%{outfit_name}" successfully deleted.
|
||||||
|
|
||||||
new:
|
new:
|
||||||
tagline: Neopets wearables made easy!
|
tagline: Neopets wearables made easy!
|
||||||
load_pet_legend: Enter your pet's name
|
load_pet_legend: Enter your pet's name
|
||||||
|
|
Loading…
Reference in a new issue