This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: better localization and clean up of hardcoded text (#10)
- Loading branch information
1 parent
5ca4cee
commit c48ff46
Showing
34 changed files
with
356 additions
and
145 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'disable' => 'Disable', | ||
'enable' => 'Enable', | ||
'export_personal_data' => 'Export Personal Data', | ||
'understand' => 'I Understand', | ||
'update' => 'Update', | ||
'select_timezone' => 'Select Timezone', | ||
'disable' => 'Disable', | ||
'enable' => 'Enable', | ||
'export_personal_data' => 'Export Personal Data', | ||
'understand' => 'I Understand', | ||
'update' => 'Update', | ||
'select_timezone' => 'Select Timezone', | ||
'sign_in' => 'Sign In', | ||
'reset_password' => 'Reset Password', | ||
'use_recovery_code' => 'Use a recovery code', | ||
'use_authentication_code' => 'Use an authentication code', | ||
'verify' => 'Verify', | ||
'delete_account' => 'Delete Account', | ||
'nevermind' => 'Nevermind', | ||
'done' => 'Done', | ||
'confirm_logout' => 'Logout Other Browser Sessions', | ||
]; |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?php | ||
|
||
return [ | ||
'this_device' => 'This Device', | ||
'last_active' => 'Last Active', | ||
]; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'2fa' => 'Two Factor Authentication', | ||
'password-reset-email' => 'Password Reset Email', | ||
'password_reset_email' => 'Password Reset Email', | ||
'register' => 'Register', | ||
'reset-password' => 'Reset Password', | ||
'sign-in' => 'Sign In to MarketSquare', | ||
'sign-up' => 'Sign Up to MarketSquare', | ||
'reset_password' => 'Reset Password', | ||
'sign_in' => 'Sign In to MarketSquare', | ||
'sign_up' => 'Sign Up to MarketSquare', | ||
'verify' => 'Verify Email', | ||
|
||
'home' => 'Home', | ||
]; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
return [ | ||
'invalid_2fa_authentication_code' => 'The provided two factor authentication code was invalid', | ||
]; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'reset-password' => 'Reset Password', | ||
'reset_password' => 'Reset Password', | ||
'login' => 'Login', | ||
'register' => 'Register', | ||
'login-with-two-factor' => 'Login With Two Factor', | ||
'login_with_two_factor' => 'Login With Two Factor', | ||
'verify' => 'Verify', | ||
|
||
]; |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
return [ | ||
'password_doesnt_match' => 'The provided password does not match your current password.', | ||
'password_doesnt_match_records' => 'This password does not match our records.', | ||
|
||
'messages' => [ | ||
'one_time_password' => 'We were not able to enable two-factor authentication with this one-time password.', | ||
], | ||
]; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Confirm Password | ||
@lang('fortify::auth.confirm-password.page_header') |
This file contains 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
Oops, something went wrong.