From 79ba6809b76fa0c0157de023dbf39f8e3471e5de Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Thu, 13 Oct 2011 13:22:19 -0700 Subject: [PATCH] actually use the class I define in trans --- apps/addons/templates/addons/paypal_thanks.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/addons/templates/addons/paypal_thanks.html b/apps/addons/templates/addons/paypal_thanks.html index 0b9eabd054..be36e79579 100644 --- a/apps/addons/templates/addons/paypal_thanks.html +++ b/apps/addons/templates/addons/paypal_thanks.html @@ -10,11 +10,11 @@

{{ _('Purchase Add-on') }}

{% endif %}
{{ _('Thank you!') }}
- {% trans addon_name=addon.name, manifest_url=addon.manifest_url, + {% trans addon_name=addon.name, manifest_url=addon.manifest_url if addon.is_webapp() else '', class='trigger_app_install' if addon.is_webapp() else 'trigger_download', href='#' if addon.is_webapp() else download %} Your purchase of {{ addon_name }} is complete. -

If installation does not automatically begin, please click here.

+

If installation does not automatically begin, please click here.

{% endtrans %}

{% trans learn_more='http://www.mozilla.org/causes' %}