summaryrefslogtreecommitdiff
path: root/errors.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-21 18:12:51 +0100
committerAndrew Dolgov <[email protected]>2006-12-21 18:12:51 +0100
commitd3f24242f8d295567332a2813216a9b003d56781 (patch)
tree0da05b4959343224f337a438838aa7127f0ee2a4 /errors.php
parentdd34f155680915e50ad82bcf6e641a4efea64b79 (diff)
I18N
Diffstat (limited to 'errors.php')
-rw-r--r--errors.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/errors.php b/errors.php
index 2963beb8d..6e252ba08 100644
--- a/errors.php
+++ b/errors.php
@@ -1,28 +1,28 @@
<?php
- $ERRORS[0] = "Unknown error";
+ $ERRORS[0] = _("Unknown error");
- $ERRORS[1] = "This program requires XmlHttpRequest " .
- "to function properly. Your browser doesn't seem to support it.";
+ $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[2] = _("This program requires cookies " .
+ "to function properly. Your browser doesn't seem to support them.");
- $ERRORS[3] = "Backend sanity check failed";
+ $ERRORS[3] = _("Backend sanity check failed");
- $ERRORS[4] = "Frontend sanity check failed.";
+ $ERRORS[4] = _("Frontend sanity check failed.");
- $ERRORS[5] = "Incorrect database schema version.";
+ $ERRORS[5] = _("Incorrect database schema version.");
- $ERRORS[6] = "Request not authorized.";
+ $ERRORS[6] = _("Request not authorized.");
- $ERRORS[7] = "No operation to perform.";
+ $ERRORS[7] = _("No operation to perform.");
- $ERRORS[8] = "Could not display feed: query failed. Please check label match syntax or local configuration.";
+ $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[8] = _("Denied. Your access level is insufficient to access this page.");
- $ERRORS[9] = "Configuration check failed";
+ $ERRORS[9] = _("Configuration check failed");
- $ERRORS[10] = "Your version of MySQL is not currently supported. Please see
- official site for more information.";
+ $ERRORS[10] = _("Your version of MySQL is not currently supported. Please see
+ official site for more information.");
?>