📄 lang_setting.php
字号:
<?php
if (!defined('IN_SITE')){
die('Hacking attempt!');
}
$Lang_Module = new Lang_Module_Setting;
class Lang_Module_Setting
{
var $data = array();
function Lang_Module_Setting(){
//Tabs
$this->data['setting_tab_website'] = 'Website';
$this->data['setting_tab_system'] = 'System';
$this->data['setting_tab_modules'] = 'Modules';
$this->data['setting_tab_open_close'] = 'Open / Close';
//Website
$this->data['setting_site_name'] = 'Site Name';
$this->data['setting_site_slogan'] = 'Site Slogan';
$this->data['setting_site_url'] = 'Site URL';
$this->data['setting_site_path'] = 'Site Path';
$this->data['setting_site_keywords'] = 'Site Keywords';
$this->data['setting_site_desc'] = 'Site Description';
$this->data['setting_admin_email'] = 'Admin Email';
$this->data['setting_timezone'] = 'Timezone';
$this->data['setting_date_format'] = 'Date Format';
$this->data['setting_time_format'] = 'Date Time Format';
$this->data['setting_full_date_time_format']= 'Full Date Time Format';
//System
$this->data['setting_cookie'] = 'Cookie';
$this->data['setting_cookie_domain'] = 'Cookie Domain';
$this->data['setting_cookie_domain_desc'] = 'Set domain to save cookies under.<br>(Ex: .yourdomain.com)';
$this->data['setting_cookie_path'] = 'Cookie Path';
$this->data['setting_cookie_time'] = 'Cookie Expired Time';
$this->data['setting_cookie_time_desc'] = '(seconds)';
$this->data['setting_time_login'] = 'Login time';
$this->data['setting_time_login_desc'] = '(Auto logout after <em>n</em> seconds)';
$this->data['setting_items_per_page'] = 'Items per page';
$this->data['setting_items_per_page_desc'] = 'Number items per page in ACP';
$this->data['setting_smtp'] = 'SMTP Information';
$this->data['setting_smtp_host'] = 'SMTP Server';
$this->data['setting_smtp_username'] = 'SMTP Username';
$this->data['setting_smtp_password'] = 'SMTP Password';
//Modules
$this->data['setting_short_url'] = 'Friendly URL';
$this->data['setting_article'] = 'Article Setting';
$this->data['setting_article_image'] = 'Article Image Setting';
$this->data['setting_cache'] = 'Cache Engine';
$this->data['setting_cache_use'] = 'Enable Caching';
$this->data['setting_cache_use_desc'] = 'Caching your results will improve speed of your website and reduce minimum connections to database.';
$this->data['setting_website_close'] = 'Close Website';
$this->data['setting_website_close_desc'] = 'Temporarily close your website.';
$this->data['setting_cache_expire'] = 'Expired time of Cache';
$this->data['setting_cache_expire_desc'] = '(seconds)';
$this->data['setting_poll'] = 'Poll Setting';
$this->data['setting_poll_options'] = 'Default options for Poll adding';
$this->data['setting_revote_time'] = 'Revote Time';
$this->data['setting_revote_time_desc'] = 'Allow user revote poll after number seconds.';
// $this->data['setting_gzip'] = 'Enable Gzip';
// $this->data['setting_gzip_desc'] = 'All pages will be compressed to save bandwidth for your site. However, it will increase server load.';
// $this->data['setting_gzip_level'] = 'Gzip Level';
// $this->data['setting_gzip_level_desc'] = 'Set the level of compression for gzipping your pages, higher values will increase server load drimatically.';
$this->data['setting_news_per_page'] = 'News per page';
$this->data['setting_news_per_page_desc'] = 'Items displayed per page in Home';
$this->data['setting_image_type'] = 'Image Type';
$this->data['setting_image_type_desc'] = '(Limit types of images which users can upload for their articles. Use "," to separate many types or leave blank for no limit.)';
$this->data['setting_image_max_size'] = 'Max image size';
$this->data['setting_image_max_size_desc'] = '(Maximum size of images which can be uploaded. Leave blank for no limit.)';
$this->data['setting_log'] = 'Site Log';
$this->data['setting_log_save'] = 'Turn on';
$this->data['setting_log_days'] = 'Limit days';
$this->data['setting_log_days_desc'] = 'Type 0 for unlimited';
$this->data['setting_use_comment'] = 'Turn on comment?';
$this->data['setting_use_comment_desc'] = 'Customer can post their comments for articles';
$this->data['setting_enable_wysiwyg_title'] = 'Turn on wysiwyg editor for Title field?';
$this->data['setting_enable_wysiwyg_title_desc'] = 'Users can format article titles with wysiwyg editor.';
$this->data['setting_use_short_url'] = 'Use Friendly URL';
$this->data['setting_use_short_url_desc'] = 'Only for Apache web server (mod Rewrite enabled)';
$this->data['setting_url_sep'] = 'URL Separator';
$this->data['setting_url_sep_desc'] = 'Friendly URL must be turned on';
$this->data['setting_menucat_level'] = 'Levels of Category Menu';
$this->data['setting_cat_cols'] = 'Category Columns';
$this->data['setting_cat_article_index'] = 'Top News In Every Category';
$this->data['setting_hot_index'] = 'Hot News';
$this->data['setting_hot_cols'] = 'Hot News Columns';
$this->data['setting_limit_home_news'] = 'Limit News in one page';
$this->data['setting_limit_home_news_next'] = 'Limit Next News';
$this->data['setting_limit_home_hot'] = 'Limit Hot News';
$this->data['setting_limit_home_comment'] = 'Limit Comments';
$this->data['setting_newspic_rand_limit'] = 'Limit News Pictures in one page';
$this->data['setting_newspic_rand_time'] = 'Limit time (seconds) for one News Picture';
$this->data['setting_thumb_large'] = 'Large Thumbnail';
$this->data['setting_thumb_small'] = 'Small Thumbnail';
$this->data['setting_thumb_icon'] = 'Icon Thumbnail';
$this->data['setting_newspic_thumb'] = 'Thumbnail of News Picture';
$this->data['setting_newspic_full'] = 'Fullsize of News Picture';
$this->data['setting_max_width'] = 'Max Width';
$this->data['setting_max_height'] = 'Max Height';
$this->data['setting_website_close_reason'] = 'The reason for closing';
$this->data['setting_error_template'] = 'Template folder is invalid!';
$this->data['setting_error_language'] = 'Language folder is invalid!';
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -