mirror of https://github.com/byecorps/id.git
16 lines
371 B
PHP
16 lines
371 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
|
||
|
|
||
|
// 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."
|
||
|
|
||
|
]
|
||
|
|
||
|
?>
|