summaryrefslogtreecommitdiff
path: root/errors.php
blob: bab8647d098fe1e17658b76d0c0b9b5460a94d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
	$ERRORS[0] = _("Unknown error");

	$ERRORS[1] = _("This program requires XmlHttpRequest " .
			"to function properly. Your browser doesn't seem to support it.");

	$ERRORS[2] = _("This program requires cookies " .
			"to function properly. Your browser doesn't seem to support them.");

	$ERRORS[3] = _("Backend sanity check failed");

	$ERRORS[4] = _("Frontend sanity check failed.");

	$ERRORS[5] = _("Incorrect database schema version. &lt;a href='update.php'&gt;Please update&lt;/a&gt;.");

	$ERRORS[6] = _("Request not authorized.");

	$ERRORS[7] = _("No operation to perform.");

	$ERRORS[8] = _("Could not display feed: query failed. Please check label match syntax or local configuration.");

	$ERRORS[8] = _("Denied. Your access level is insufficient to access this page.");

	$ERRORS[9] = _("Configuration check failed");

	$ERRORS[10] = _("Your version of MySQL is not currently supported. Please see 
		official site for more information.");
?>