root/errors.php

Revision 1681, 1.0 kB (checked in by Andrew Dolgov <fox@madoka.spb.ru>, 1 year ago)

[project @ tweak error message]

Line 
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='update.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
Note: See TracBrowser for help on using the browser.