From 6a564f0a25af501664eef39b14611bc1c4c8bce4 Mon Sep 17 00:00:00 2001 From: Manuel Wiedenmann Date: Sat, 9 Feb 2013 12:47:21 +0700 Subject: [PATCH] admin controllers --- app/controllers/admin/ordergroups_controller.rb | 4 ++-- app/controllers/admin/workgroups_controller.rb | 4 ++-- config/locales/de/de.admin.yml | 8 +++++++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app/controllers/admin/ordergroups_controller.rb b/app/controllers/admin/ordergroups_controller.rb index 828d91a6..dd868aff 100644 --- a/app/controllers/admin/ordergroups_controller.rb +++ b/app/controllers/admin/ordergroups_controller.rb @@ -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 diff --git a/app/controllers/admin/workgroups_controller.rb b/app/controllers/admin/workgroups_controller.rb index 6aa7a1e4..e7c88fe2 100644 --- a/app/controllers/admin/workgroups_controller.rb +++ b/app/controllers/admin/workgroups_controller.rb @@ -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 diff --git a/config/locales/de/de.admin.yml b/config/locales/de/de.admin.yml index 8708b01f..429960cb 100644 --- a/config/locales/de/de.admin.yml +++ b/config/locales/de/de.admin.yml @@ -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' \ No newline at end of file + members: 'Mitglieder' + destroy: + notice: 'Arbeitsgruppe wurde gelöscht' + error: 'Arbeitsgruppe konnte nicht gelöscht werden: #{error}' \ No newline at end of file