From 486a7d7d6fdc849da2012d070f3e053802cfaef2 Mon Sep 17 00:00:00 2001 From: Kevin Reed Date: Mon, 9 Jul 2018 13:37:39 -0500 Subject: [PATCH] web: Fix string that included a variable but needs to be translated so that it uses a placeholder instead of the variable in the string --- html/user/delete_account_confirm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/user/delete_account_confirm.php b/html/user/delete_account_confirm.php index ba9dda83f3..5a40677ec8 100644 --- a/html/user/delete_account_confirm.php +++ b/html/user/delete_account_confirm.php @@ -82,7 +82,7 @@ function delete_account_confirm_action() { page_head(tra("Account Deleted")); - echo "

".tra("Your account has been deleted. If you want to contribute to ".PROJECT." in the future you will need to create a new account.")."

"; + echo "

".tra("Your account has been deleted. If you want to contribute to %1 in the future you will need to create a new account.",PROJECT)."

"; page_tail(); }