invites controller i18n
This commit is contained in:
parent
034f6a8f5c
commit
ecce8041a1
2 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
class InvitesController < ApplicationController
|
||||
|
||||
before_filter :authenticate_membership_or_admin, :only => [:new]
|
||||
#TODO: auhtorize also for create action.
|
||||
#TODO: authorize also for create action.
|
||||
|
||||
def new
|
||||
@invite = Invite.new(:user => @current_user, :group => @group)
|
||||
|
@ -14,7 +14,7 @@ class InvitesController < ApplicationController
|
|||
|
||||
respond_to do |format|
|
||||
format.html do
|
||||
redirect_to back_or_default_path, notice: "Benutzerin wurde erfolgreich eingeladen."
|
||||
redirect_to back_or_default_path, notice: I18n.t('invites.success')
|
||||
end
|
||||
format.js { render layout: false }
|
||||
end
|
||||
|
|
|
@ -9,3 +9,6 @@ de:
|
|||
body:
|
||||
<p>Hier kannst du eine Person in die Gruppe <b>%{group}</b> einladen, die noch nicht Mitglied der Foodcoop ist.</p>
|
||||
<p>Die Person ist dann nach erstmaliger Anmeldung automatisch Mitglied dieser Gruppe.</p>
|
||||
|
||||
# used by controller
|
||||
success: 'Benutzerin wurde erfolgreich eingeladen.'
|
||||
|
|
Loading…
Reference in a new issue