📄 lang_article.php
字号:
<?php
if (!defined('IN_SITE')){
die('Hacking attempt!');
}
$Lang_Module = new Lang_Module_Article;
class Lang_Module_Article
{
var $data = array();
function Lang_Module_Article(){
//Articles
$this->data['article_cat'] = 'Category';
$this->data['article_next'] = 'Other Articles';
$this->data['article_related'] = 'Related Articles';
$this->data['article_print'] = 'Print Version';
$this->data['article_view'] = 'View Article';
$this->data['article_cat_view'] = 'View Category';
$this->data['article_error_cat_not_exist'] = 'This category does not exist!';
$this->data['article_error_not_exist'] = "This article does not exist!";
//Comment
$this->data['comment'] = 'Comment';
$this->data['comments'] = 'Comments';
$this->data['comment_new'] = 'Add Your Comment';
$this->data['comment_name'] = 'Your Name';
$this->data['comment_email'] = 'Your Email';
$this->data['comment_title'] = 'Title';
$this->data['comment_content'] = 'Comment';
$this->data['comment_submit'] = 'Add Comment';
//Comment error
$this->data['comment_error_flood'] = 'You can not post several comments in a short time.<br>Please wait some seconds and post it again.';
$this->data['comment_success_add'] = 'Your comment has been sucessfully added.<br>However, it must be waiting for aproval from us and will be displayed later.';
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -