.
require_once("../inc/util.inc");
check_get_args(array("st"));
$st = get_str("st", true);
page_head(tra("PayPal - Transaction Completed"));
if ($st == "Completed") {
echo "
".tra("Thank you for donating!")."
\n";
echo tra("Your donation for has been completed.")."
\n";
echo tra("Your donation will be added to the progress bar after confirmation by PayPal.")."
";
} else {
echo "".tra("You have canceled your donation.")."";
}
page_tail();
?>