This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nl: | |
devise: | |
invitations: | |
send_instructions: 'Een uitnodigingsmail aan %{email} is verstuurd.' | |
invitation_token_invalid: 'De uitnodigingscode is ongeldig!' | |
updated: 'Uw wachtwoord is ingesteld. U bent nu ingelogd.' | |
no_invitations_remaining: 'Geen uitnodigingen over' | |
mailer: | |
invitation_instructions: | |
subject: 'Instructies voor uitnodigingen' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
de: | |
devise: | |
invitations: | |
send_instructions: 'Sie haben eine Einladung in ihrem Email Postfach: %{email}' | |
invitation_token_invalid: 'Der Einladungs Schlüssel ist nicht gültig!' | |
updated: 'Ihr Passwort wurde erfolgreich gesetzt. Sie sind jetzt angemeldet.' | |
no_invitations_remaining: "Sie können keine weiteren Einladungen mehr vornehmen." | |
mailer: | |
invitation_instructions: | |
subject: 'Einladungs-Anweisungen' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
es: | |
errors: | |
messages: | |
not_found: 'no encontrado' | |
already_confirmed: 'ya ha sido confirmada' | |
not_locked: 'no está bloqueada' | |
expired: "ha caducado, por favor pide uno nuevo" | |
not_saved: | |
one: "1 error evitó guardar este %{resource}:" | |
other: "%{count} errores evitaron guardar este %{resource}:" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
has_many :group_memberships, :dependent => :destroy | |
has_many :groups, :through => :group_memberships | |
attr_accessor :skip_invitation | |
devise :invitable, :database_authenticatable, :registerable, | |
:recoverable, :rememberable, :validatable | |
protected | |
def deliver_invitation |
NewerOlder