You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/**
* ECTouch Open Source Project
* ============================================================================
* Copyright (c) 2012-2016 782869779@qq.com All rights reserved.
* ----------------------------------------------------------------------------
* 文件名称wxnative.php
* ----------------------------------------------------------------------------
* 功能描述:微信扫码支付语言包
* ----------------------------------------------------------------------------
*
* ----------------------------------------------------------------------------
*/
global $_LANG;
define("JS_QR",false);//是否用js生成支付二维码。false:使用服务器端生成支付二维码true使用浏览器js生成支付二维码。默认为false
define("WXPAY_DEBUG",false);
define("QUERY_INTERVAL",5);//以秒为单位首次请求默认为20秒效果最佳, 值越小,用户体验越好,服务器压力越大,反之用户体验越差,服务器压力越小。 推荐10
$_LANG['wxnative'] = '微信扫码支付';
$_LANG['wxnative_desc'] = '微信扫码支付是基于PC端提供的微信支付服务功能。用户通过扫描二维码调起微信支付模块完成支付。';
$_LANG['wxnative_appid'] = '应用ID(AppID)';
$_LANG['wxnative_appsecret'] = '应用密钥(AppSecret)';
$_LANG['wxnative_key'] = '微信商户支付密钥(ApiKey)';
$_LANG['wxnative_mchid'] = '微信商户号(ID)';
$_LANG['wxnative_button'] = '立即用微信支付';