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