]> git.wh0rd.org - tt-rss.git/blame - errors.php
sanity_check.php: I18N
[tt-rss.git] / errors.php
CommitLineData
1d3a17c7 1<?php
af106b0e
AD
2 $ERRORS[0] = "Unknown error";
3
4 $ERRORS[1] = "This program requires XmlHttpRequest " .
5 "to function properly. Your browser doesn't seem to support it.";
6
7 $ERRORS[2] = "This program requires cookies " .
8 "to function properly. Your browser doesn't seem to support them.";
9
10 $ERRORS[3] = "Backend sanity check failed";
11
12 $ERRORS[4] = "Frontend sanity check failed.";
13
14 $ERRORS[5] = "Incorrect database schema version.";
15
16 $ERRORS[6] = "Request not authorized.";
17
18 $ERRORS[7] = "No operation to perform.";
19
20 $ERRORS[8] = "Could not display feed: query failed. Please check label match syntax or local configuration.";
21
22 $ERRORS[8] = "Denied. Your access level is insufficient to access this page.";
23
24 $ERRORS[9] = "Configuration check failed";
aec3ce39
AD
25
26 $ERRORS[10] = "Your version of MySQL is not currently supported. Please see
27 official site for more information.";
af106b0e 28?>