mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
PkgID UserID This implements emailing comment notifications, including a user option to enable/disable it on the package page. It uses php's mail() function to do it and sends to everyone on the notify list as BCC. This needs some more testing before public consumption.
20 lines
No EOL
776 B
PHP
20 lines
No EOL
776 B
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"]["Hi, this is worth reading!"] = "Hi, this is worth reading!";
|
|
# $_t["es"]["Hi, this is worth reading!"] = "--> Traducción espańola aquí. <--";
|
|
# $_t["fr"]["Hi, this is worth reading!"] = "--> Traduction française ici. <--";
|
|
# $_t["de"]["Hi, this is worth reading!"] = "--> Deutsche Übersetzung hier. <--";
|
|
$_t["pl"]["Hi, this is worth reading!"] = "Witaj, warto to przeczytać!";
|
|
|
|
?>
|