本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
登入
anoopmb
/
payments
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
Stripe translations (
#4892
)
pull/2/head
Britlog
7 年之前
committed by
Rushabh Mehta
父節點
51973c2d3c
當前提交
771d37a238
共有
2 個檔案被更改
,包括
4 行新增
和
3 行删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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…
取消
儲存