admin controllers

This commit is contained in:
Manuel Wiedenmann 2013-02-09 12:47:21 +07:00
parent 8d899581bd
commit 6a564f0a25
3 changed files with 11 additions and 5 deletions

View file

@ -16,8 +16,8 @@ class Admin::OrdergroupsController < Admin::BaseController
def destroy
@ordergroup = Ordergroup.find(params[:id])
@ordergroup.destroy
redirect_to admin_ordergroups_url, :notice => "Bestellgruppe wurde gelöscht"
redirect_to admin_ordergroups_url, notice: t('admin.ordergroups.destroy.notice')
rescue => error
redirect_to admin_ordergroups_url, :alert => "Bestellgruppe konnte nicht gelöscht werden: #{error}"
redirect_to admin_ordergroups_url, alert: t('admin.ordergroups.destroy.error')
end
end

View file

@ -13,8 +13,8 @@ class Admin::WorkgroupsController < Admin::BaseController
def destroy
@workgroup = Workgroup.find(params[:id])
@workgroup.destroy
redirect_to admin_workgroups_url, :notice => "Arbeitsgruppe wurde gelöscht"
redirect_to admin_workgroups_url, notice: t('admin.ordergroups.destroy.notice')
rescue => error
redirect_to admin_workgroups_url, :alert => "Arbeitsgruppe konnte nicht gelöscht werden: #{error}"
redirect_to admin_workgroups_url, alert: t('admin.ordergroups.destroy.error')
end
end

View file

@ -51,6 +51,9 @@ de:
contact: 'Kontakt'
address: 'Adresse'
members: 'Mitglieder'
destroy:
notice: 'Bestellgruppe wurde gelöscht'
error: 'Bestellgruppe konnte nicht gelöscht werden: #{error}'
users:
index:
title: 'Admin/Benutzerinnen'
@ -99,4 +102,7 @@ de:
confirm: 'Bist Du sicher?'
workgroups:
name: 'Name'
members: 'Mitglieder'
members: 'Mitglieder'
destroy:
notice: 'Arbeitsgruppe wurde gelöscht'
error: 'Arbeitsgruppe konnte nicht gelöscht werden: #{error}'