errors.php 912 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. $ERRORS[0] = _("Unknown error");
  3. $ERRORS[1] = _("This program requires XmlHttpRequest " .
  4. "to function properly. Your browser doesn't seem to support it.");
  5. $ERRORS[2] = _("This program requires cookies " .
  6. "to function properly. Your browser doesn't seem to support them.");
  7. $ERRORS[3] = _("Backend sanity check failed");
  8. $ERRORS[4] = _("Frontend sanity check failed.");
  9. $ERRORS[5] = _("Incorrect database schema version.");
  10. $ERRORS[6] = _("Request not authorized.");
  11. $ERRORS[7] = _("No operation to perform.");
  12. $ERRORS[8] = _("Could not display feed: query failed. Please check label match syntax or local configuration.");
  13. $ERRORS[8] = _("Denied. Your access level is insufficient to access this page.");
  14. $ERRORS[9] = _("Configuration check failed");
  15. $ERRORS[10] = _("Your version of MySQL is not currently supported. Please see
  16. official site for more information.");
  17. ?>