diff --git a/resources/lang/en_US/firefly.php b/resources/lang/en_US/firefly.php index 81dc74a139..c85839a5e7 100644 --- a/resources/lang/en_US/firefly.php +++ b/resources/lang/en_US/firefly.php @@ -230,6 +230,8 @@ return [ 'pref_two_factor_auth' => '2-step verification', 'pref_two_factor_auth_help' => 'When you enable 2-step verification (also known as two-factor authentication), you add an extra layer of security to your account. You sign in with something you know (your password) and something you have (a verification code). Verification codes are generated by an application on your phone, such as Authy or Google Authenticator.', 'pref_enable_two_factor_auth' => 'Enable 2-step verification', + 'pref_code' => 'Verify code', + 'pref_code_help' => 'Scan the QR code with an application on your phone such as Authy or Google Authenticator and enter the generated code.', 'pref_save_settings' => 'Save settings', // profile: diff --git a/resources/lang/en_US/validation.php b/resources/lang/en_US/validation.php index 5be1b8d145..86b7ece35c 100644 --- a/resources/lang/en_US/validation.php +++ b/resources/lang/en_US/validation.php @@ -68,4 +68,5 @@ return [ 'string' => 'The :attribute must be a string.', 'url' => 'The :attribute format is invalid.', 'timezone' => 'The :attribute must be a valid zone.', + '2fa_code' => 'The :attribute field is invalid.', ]; diff --git a/resources/lang/nl_NL/firefly.php b/resources/lang/nl_NL/firefly.php index 253317581d..31cd6de233 100644 --- a/resources/lang/nl_NL/firefly.php +++ b/resources/lang/nl_NL/firefly.php @@ -227,6 +227,8 @@ return [ 'pref_fiscal_year_start_label' => 'Start van boekjaar', 'pref_two_factor_auth' => 'Authenticatie in twee stappen', 'pref_two_factor_auth_help' => 'Als je authenticatie in twee stappen (ook wel twee-factor authenticatie genoemd) inschakelt voeg je een extra beveiligingslaag toe aan je account. Je logt in met iets dat je weet (je wachtwoord) en iets dat je hebt (een verificatiecode). Verificatiecodes worden gegeneerd door apps op je telefoon, zoals Authy en Google Authenticator.', + 'pref_code' => 'Verifieer code', + 'pref_code_help' => 'Scan onderstaande QR code met een app op je telefoon zoals Authy of Google Authenticator en vul de code die gegenereerd wordt in.', 'pref_enable_two_factor_auth' => 'Authenticatie in twee stappen inschakelen', 'pref_save_settings' => 'Instellingen opslaan', diff --git a/resources/lang/nl_NL/validation.php b/resources/lang/nl_NL/validation.php index f2f03ebd0b..dede00973c 100644 --- a/resources/lang/nl_NL/validation.php +++ b/resources/lang/nl_NL/validation.php @@ -68,4 +68,6 @@ return [ 'string' => 'Het :attribute moet een tekenreeks zijn.', 'url' => ':attribute is geen geldige URL.', 'timezone' => 'Het :attribute moet een geldige zone zijn.', + '2fa_code' => ':attribute is ongeldig.', ]; +