This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
payments
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Stripe translations (
#4892
)
pull/2/head
Britlog
7 years ago
committed by
Rushabh Mehta
parent
51973c2d3c
commit
771d37a238
2 changed files
with
4 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
payments/templates/includes/stripe_checkout.js
+2
-2
payments/templates/pages/stripe_checkout.html
+ 2
- 1
payments/templates/includes/stripe_checkout.js
View File
@@ -14,7 +14,8 @@ $(document).ready(function(){
description: "{{description}}",
amount: cint("{{ amount }}" * 100), // 2000 paise = INR 20
email: "{{payer_email}}",
currency: "{{currency}}"
currency: "{{currency}}",
locale: "auto"
});
})();
+ 2
- 2
payments/templates/pages/stripe_checkout.html
View File
@@ -12,8 +12,8 @@
{%- block page_content -%}
<p class='lead text-center centered'>
<span class='stripe-loading'>Loading Payment System</span>
<span class='stripe-confirming hidden'>Confirming Payment</span>
<span class='stripe-loading'>
{{ _("
Loading Payment System
") }}
</span>
<span class='stripe-confirming hidden'>
{{ _("
Confirming Payment
") }}
</span>
</p>
{% endblock %}
Write
Preview
Loading…
Cancel
Save