mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 14:24:27 -04:00
- Show 'Database Migration Required' heading instead of welcome message when migrations pending - Add warning alert explaining credentials needed to authorize migration - Change button text from 'Go' to 'Migrate' during migration flow - Add language strings for clear migration messaging This makes it clear to the user that they are performing a migration authorization step (not a regular login), and will need to re-authenticate after migrations complete.
20 lines
1.1 KiB
PHP
20 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
"gcaptcha" => "I'm not a robot.",
|
|
"go" => "Go",
|
|
"invalid_gcaptcha" => "Please verify that you are not a robot.",
|
|
"invalid_installation" => "The installation is not correct, check your php.ini file.",
|
|
"invalid_username_and_password" => "Invalid username and/or password.",
|
|
"login" => "Login",
|
|
"logout" => "Logout",
|
|
"migration_needed" => "A database migration to {0} will start after login.",
|
|
"migration_required" => "Database Migration Required",
|
|
"migration_auth_message" => "Administrator credentials are required to authorize the database migration to version {0}. Please login to proceed.",
|
|
"migration_complete_redirect" => "Migration complete. Redirecting to login...",
|
|
"password" => "Password",
|
|
"required_username" => "The username field is required.",
|
|
"username" => "Username",
|
|
"welcome" => "Welcome to {0}!",
|
|
];
|