mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 00:33:18 +01:00
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'service' => 'Service',
|
|
'account' => 'Account',
|
|
'icon' => 'Icon',
|
|
'new' => 'New',
|
|
'no_account_here' => 'No 2FA here!',
|
|
'add_one' => 'Add one',
|
|
'manage' => 'Manage',
|
|
'done' => 'Done',
|
|
'forms' => [
|
|
'service' => [
|
|
'placeholder' => 'example.com',
|
|
],
|
|
'account' => [
|
|
'placeholder' => 'John DOE',
|
|
],
|
|
'new_account' => 'New account',
|
|
'edit_account' => 'Edit account',
|
|
'totp_uri' => 'TOTP Uri',
|
|
'use_qrcode' => [
|
|
'val' => 'Use a qrcode',
|
|
'title' => 'Use a QR code to fill the form magically',
|
|
],
|
|
'unlock' => [
|
|
'val' => 'Unlock',
|
|
'title' => 'Unlock it (at your own risk)',
|
|
],
|
|
'lock' => [
|
|
'val' => 'Lock',
|
|
'title' => 'Lock it',
|
|
],
|
|
'choose_image' => 'Choose an image…',
|
|
'create' => 'Create',
|
|
'save' => 'Save',
|
|
],
|
|
'confirm' => [
|
|
'delete' => 'Are you sure you want to delete this account?',
|
|
],
|
|
|
|
]; |