Skip to content
Snippets Groups Projects
Select Git revision
  • 5ddb85b24417405b65b1661f9a1a0c4442043f41
  • main default protected
  • rewrite
  • production
4 results

strings.php

Blame
  • strings.php 496 B
    <?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."
    
    ]
    
    ?>