aurweb/web/lang/en/aur_po.inc
Callan Barrett 52a770e7e7 Fix login error and translation bug
Fixes a login error where entering nothing would result in the login message
"Incorrect password for username, ." and changes the translation "TU" to
"Trusted User" so the menu bar on the accounts page doesn't bug up (we need a
new translation system :((()

Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Signed-off-by: Simo Leone <simo@archlinux.org>
2008-01-20 03:16:07 -06:00

32 lines
781 B
PHP

<?php
# INSTRUCTIONS TO TRANSLATORS
#
# This file contains the i18n translations for a subset of the
# Arch Linux User-community Repository (AUR). This is a PHP
# script, and as such, you MUST pay great attention to the syntax.
# If your text contains any double-quotes ("), you MUST escape
# them with the backslash character (\).
#
include_once("translator.inc");
global $_t;
$_t["en"]["Home"] = "Home";
$_t["en"]["%s: An ArchLinux project"] = "%s: An ArchLinux project";
$_t["en"]["Packages"] = "Packages";
$_t["en"]["Accounts"] = "Accounts";
$_t["en"]["Logout"] = "Logout";
$_t["en"]["%s: %sAn ArchLinux project%s"] = "%s: %sAn ArchLinux project%s";
$_t["en"]["Discussion"] = "Discussion";
$_t["en"]["Bugs"] = "Bugs";
$_t["en"]["Trusted User"] = "Trusted User";
?>