ttrss/errors.php

34 lines
1.1 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
2007-03-05 10:04:55 +01:00
2007-03-05 09:45:38 +01:00
$ERRORS[0] = __("Unknown error");
2007-03-05 09:45:38 +01:00
$ERRORS[1] = __("This program requires XmlHttpRequest " .
2006-12-21 18:12:51 +01:00
"to function properly. Your browser doesn't seem to support it.");
2007-03-05 09:45:38 +01:00
$ERRORS[2] = __("This program requires cookies " .
2006-12-21 18:12:51 +01:00
"to function properly. Your browser doesn't seem to support them.");
2007-03-05 09:45:38 +01:00
$ERRORS[3] = __("Backend sanity check failed");
2007-03-05 09:45:38 +01:00
$ERRORS[4] = __("Frontend sanity check failed.");
2007-03-05 09:45:38 +01:00
$ERRORS[5] = __("Incorrect database schema version. &lt;a href='update.php'&gt;Please update&lt;/a&gt;.");
2007-03-05 09:45:38 +01:00
$ERRORS[6] = __("Request not authorized.");
2007-03-05 09:45:38 +01:00
$ERRORS[7] = __("No operation to perform.");
2007-03-05 09:45:38 +01:00
$ERRORS[8] = __("Could not display feed: query failed. Please check label match syntax or local configuration.");
2007-03-05 09:45:38 +01:00
$ERRORS[8] = __("Denied. Your access level is insufficient to access this page.");
2007-03-05 09:45:38 +01:00
$ERRORS[9] = __("Configuration check failed");
2007-03-05 09:45:38 +01:00
$ERRORS[10] = __("Your version of MySQL is not currently supported. Please see
2006-12-21 18:12:51 +01:00
official site for more information.");
2007-04-24 05:32:26 +02:00
$ERRORS[11] = "[This error is not returned by server]";
$ERRORS[12] = __("SQL escaping test failed, check your database and PHP configuration");
?>