]> git.wh0rd.org - tt-rss.git/blob - errors.php
unify update_daemon, update_feeds and update_feedbrowser into update.php; move update...
[tt-rss.git] / errors.php
1 <?php
2
3 $ERRORS[0] = __("Unknown error");
4
5 $ERRORS[1] = __("This program requires XmlHttpRequest " .
6 "to function properly. Your browser doesn't seem to support it.");
7
8 $ERRORS[2] = __("This program requires cookies " .
9 "to function properly. Your browser doesn't seem to support them.");
10
11 $ERRORS[3] = __("Backend sanity check failed");
12
13 $ERRORS[4] = __("Frontend sanity check failed.");
14
15 $ERRORS[5] = __("Incorrect database schema version. &lt;a href='db-updater.php'&gt;Please update&lt;/a&gt;.");
16
17 $ERRORS[6] = __("Request not authorized.");
18
19 $ERRORS[7] = __("No operation to perform.");
20
21 $ERRORS[8] = __("Could not display feed: query failed. Please check label match syntax or local configuration.");
22
23 $ERRORS[8] = __("Denied. Your access level is insufficient to access this page.");
24
25 $ERRORS[9] = __("Configuration check failed");
26
27 $ERRORS[10] = __("Your version of MySQL is not currently supported. Please see
28 official site for more information.");
29
30 $ERRORS[11] = "[This error is not returned by server]";
31
32 $ERRORS[12] = __("SQL escaping test failed, check your database and PHP configuration");
33 ?>