mirror of https://github.com/byecorps/id.git
19 lines
496 B
PHP
19 lines
496 B
PHP
<?php
|
|
|
|
// This file contains strings inserted by PHP, designed for easy editing and localisation.
|
|
|
|
$errors = [
|
|
// "error_code" => "Message"
|
|
|
|
// XX errors are generic messages
|
|
|
|
// 1XX errors are server-side errors related to the MySQL server
|
|
"100" => "Sorry, there was an error with the database.",
|
|
|
|
// 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."
|
|
|
|
]
|
|
|
|
?>
|