📄 lang_contact.php
字号:
<?php
if (!defined('IN_SITE')){
die('Hacking attempt!');
}
$Lang_Module = new Lang_Module_Contact;
class Lang_Module_Contact
{
var $data = array();
function Lang_Module_Contact(){
//Contact
$this->data['contact'] = 'Contact Us';
$this->data['contact_name'] = 'Name';
$this->data['contact_email'] = 'Email';
$this->data['contact_address'] = 'Address';
$this->data['contact_tel'] = 'Tel';
$this->data['contact_subject'] = 'Subject';
$this->data['contact_message'] = 'Message';
$this->data['contact_button_send'] = ' Send ';
$this->data['contact_success_send'] = 'Your message has been successfully sent! We will have a response to you as soon as possible.<br>Thanks a lot!';
$this->data['contact_error_flood'] = 'You can not contact us several times in a short time.<br>Please wait some seconds and contact again.';
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -