diff options
author | eric <eric> | 2004-06-19 00:42:07 +0200 |
---|---|---|
committer | eric <eric> | 2004-06-19 00:42:07 +0200 |
commit | 74594e516d699a3a95a4e8112c914b9225853de7 (patch) | |
tree | 9e07a66a712c17a81873eefbf592b46ebb787cbc /web/lang/aur_po.inc | |
parent | d92682fbfdd9dec43939678b3c5b80c512f148d3 (diff) | |
download | aur-74594e516d699a3a95a4e8112c914b9225853de7.tar.gz aur-74594e516d699a3a95a4e8112c914b9225853de7.tar.xz |
renamed _() function to __() to avoid gettext conflict
Diffstat (limited to 'web/lang/aur_po.inc')
-rw-r--r-- | web/lang/aur_po.inc | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/web/lang/aur_po.inc b/web/lang/aur_po.inc new file mode 100644 index 00000000..5f4ca983 --- /dev/null +++ b/web/lang/aur_po.inc @@ -0,0 +1,64 @@ +<? +# 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"]["ArchLinux User-community Repository"] = "ArchLinux User-community Repository"; +# $_t["es"]["ArchLinux User-community Repository"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["ArchLinux User-community Repository"] = "--> Traduction française ici. <--"; +# $_t["de"]["ArchLinux User-community Repository"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["AUR: An ArchLinux project"] = "AUR: An ArchLinux project"; +# $_t["es"]["AUR: An ArchLinux project"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["AUR: An ArchLinux project"] = "--> Traduction française ici. <--"; +# $_t["de"]["AUR: An ArchLinux project"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Logout"] = "Logout"; +# $_t["es"]["Logout"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Logout"] = "--> Traduction française ici. <--"; +# $_t["de"]["Logout"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Manage"] = "Manage"; +# $_t["es"]["Manage"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Manage"] = "--> Traduction française ici. <--"; +# $_t["de"]["Manage"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Submit"] = "Submit"; +# $_t["es"]["Submit"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Submit"] = "--> Traduction française ici. <--"; +# $_t["de"]["Submit"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["%s: An ArchLinux project"] = "%s: An ArchLinux project"; +# $_t["es"]["%s: An ArchLinux project"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["%s: An ArchLinux project"] = "--> Traduction française ici. <--"; +# $_t["de"]["%s: An ArchLinux project"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Accounts"] = "Accounts"; +# $_t["es"]["Accounts"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Accounts"] = "--> Traduction française ici. <--"; +# $_t["de"]["Accounts"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Vote"] = "Vote"; +# $_t["es"]["Vote"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Vote"] = "--> Traduction française ici. <--"; +# $_t["de"]["Vote"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Home"] = "Home"; +# $_t["es"]["Home"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Home"] = "--> Traduction française ici. <--"; +# $_t["de"]["Home"] = "--> Deutsche Übersetzung hier. <--"; + +$_t["en"]["Packages"] = "Packages"; +# $_t["es"]["Packages"] = "--> Traducción española aquí. <--"; +# $_t["fr"]["Packages"] = "--> Traduction française ici. <--"; +# $_t["de"]["Packages"] = "--> Deutsche Übersetzung hier. <--"; + +?>
\ No newline at end of file |