From a02c3ecc1a8a33835d47173e2d799759bdb2d3ea Mon Sep 17 00:00:00 2001 From: John Date: Fri, 11 Dec 2015 17:33:19 -0500 Subject: [PATCH] Added Two-Factor Auth Translations --- resources/lang/de/auth.php | 1 + resources/lang/de/validation.php | 1 + 2 files changed, 2 insertions(+) diff --git a/resources/lang/de/auth.php b/resources/lang/de/auth.php index dd7eb0ae6..3e7428f63 100644 --- a/resources/lang/de/auth.php +++ b/resources/lang/de/auth.php @@ -18,6 +18,7 @@ return [ 'sendlink' => 'Senden Sie Passwort-Reset Link.', /* Send password reset link */ 'emailsent' => 'E-Mail gesendet.', /* Email Sent */ 'remeberme' => 'Login merken.', /* Remember my Login*/ + 'totp_failed' => 'Die TOTP Token vorgesehen war ist ungültig.' /* The TOTP token was provided is not valid. */ ]; /* diff --git a/resources/lang/de/validation.php b/resources/lang/de/validation.php index b73d0da83..346d3448b 100644 --- a/resources/lang/de/validation.php +++ b/resources/lang/de/validation.php @@ -69,6 +69,7 @@ return [ 'array' => 'The :attribute must contain :size items.', ], 'string' => 'The :attribute must be a string.', + 'totp' => 'The totp token is invalid. Did it expire?', 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.', 'url' => 'The :attribute format is invalid.',