mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
32 lines
781 B
PHP
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";
|
|
|
|
?>
|