2023-11-06 16:38:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// This file contains strings inserted by PHP, designed for easy editing and localisation.
|
|
|
|
|
|
|
|
$errors = [
|
|
|
|
// "error_code" => "Message"
|
|
|
|
|
|
|
|
// XX errors are generic messages
|
|
|
|
|
2023-11-10 21:19:08 +00:00
|
|
|
// 1XX errors are server-side errors related to the MySQL server
|
|
|
|
"100" => "Sorry, there was an error with the database.",
|
|
|
|
|
2023-11-06 16:38:18 +00:00
|
|
|
// 9XX errors are user error
|
|
|
|
"900" => "Sorry, those passwords don't match. Please try again.",
|
|
|
|
"901" => "Incorrect password. Please check your spelling and try again."
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
?>
|