mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
admin submenu update
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7675 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f51cea7c93
commit
7d1fa86e5c
15 changed files with 1316 additions and 1311 deletions
|
|
@ -1,83 +1,83 @@
|
|||
<?php
|
||||
/**
|
||||
* @class adminAdminController
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief admin controller class of admin module
|
||||
**/
|
||||
|
||||
class adminAdminController extends admin {
|
||||
/**
|
||||
* @brief initialization
|
||||
* @return none
|
||||
**/
|
||||
function init() {
|
||||
// forbit access if the user is not an administrator
|
||||
$oMemberModel = &getModel('member');
|
||||
$logged_info = $oMemberModel->getLoggedInfo();
|
||||
if($logged_info->is_admin!='Y') return $this->stop("msg_is_not_administrator");
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Regenerate all cache files
|
||||
* @return none
|
||||
**/
|
||||
function procAdminRecompileCacheFile() {
|
||||
// rename cache dir
|
||||
$temp_cache_dir = './files/cache_'. time();
|
||||
FileHandler::rename('./files/cache', $temp_cache_dir);
|
||||
FileHandler::makeDir('./files/cache');
|
||||
|
||||
// remove debug files
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_debug_message.php');
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_debug_db_query.php');
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_db_slow_query.php');
|
||||
|
||||
$oModuleModel = &getModel('module');
|
||||
$module_list = $oModuleModel->getModuleList();
|
||||
|
||||
// call recompileCache for each module
|
||||
foreach($module_list as $module) {
|
||||
$oModule = null;
|
||||
$oModule = &getClass($module->module);
|
||||
if(method_exists($oModule, 'recompileCache')) $oModule->recompileCache();
|
||||
}
|
||||
|
||||
// remove cache dir
|
||||
$tmp_cache_list = FileHandler::readDir('./files','/(^cache_[0-9]+)/');
|
||||
if($tmp_cache_list){
|
||||
foreach($tmp_cache_list as $tmp_dir){
|
||||
if($tmp_dir) FileHandler::removeDir('./files/'.$tmp_dir);
|
||||
}
|
||||
}
|
||||
|
||||
$truncated = array();
|
||||
$oObjectCacheHandler = &CacheHandler::getInstance();
|
||||
$oTemplateCacheHandler = &CacheHandler::getInstance('template');
|
||||
|
||||
if($oObjectCacheHandler->isSupport()){
|
||||
$truncated[] = $oObjectCacheHandler->truncate();
|
||||
}
|
||||
|
||||
if($oTemplateCacheHandler->isSupport()){
|
||||
$truncated[] = $oTemplateCacheHandler->truncate();
|
||||
}
|
||||
|
||||
if(count($truncated) && in_array(false,$truncated)){
|
||||
return new Object(-1,'msg_self_restart_cache_engine');
|
||||
}
|
||||
|
||||
$this->setMessage('success_updated');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Logout
|
||||
* @return none
|
||||
**/
|
||||
function procAdminLogout() {
|
||||
$oMemberController = &getController('member');
|
||||
$oMemberController->procMemberLogout();
|
||||
|
||||
header('Location: '.getUrl('module','admin','act',''));
|
||||
}
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @class adminAdminController
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief admin controller class of admin module
|
||||
**/
|
||||
|
||||
class adminAdminController extends admin {
|
||||
/**
|
||||
* @brief initialization
|
||||
* @return none
|
||||
**/
|
||||
function init() {
|
||||
// forbit access if the user is not an administrator
|
||||
$oMemberModel = &getModel('member');
|
||||
$logged_info = $oMemberModel->getLoggedInfo();
|
||||
if($logged_info->is_admin!='Y') return $this->stop("msg_is_not_administrator");
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Regenerate all cache files
|
||||
* @return none
|
||||
**/
|
||||
function procAdminRecompileCacheFile() {
|
||||
// rename cache dir
|
||||
$temp_cache_dir = './files/cache_'. time();
|
||||
FileHandler::rename('./files/cache', $temp_cache_dir);
|
||||
FileHandler::makeDir('./files/cache');
|
||||
|
||||
// remove debug files
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_debug_message.php');
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_debug_db_query.php');
|
||||
FileHandler::removeFile(_XE_PATH_.'files/_db_slow_query.php');
|
||||
|
||||
$oModuleModel = &getModel('module');
|
||||
$module_list = $oModuleModel->getModuleList();
|
||||
|
||||
// call recompileCache for each module
|
||||
foreach($module_list as $module) {
|
||||
$oModule = null;
|
||||
$oModule = &getClass($module->module);
|
||||
if(method_exists($oModule, 'recompileCache')) $oModule->recompileCache();
|
||||
}
|
||||
|
||||
// remove cache dir
|
||||
$tmp_cache_list = FileHandler::readDir('./files','/(^cache_[0-9]+)/');
|
||||
if($tmp_cache_list){
|
||||
foreach($tmp_cache_list as $tmp_dir){
|
||||
if($tmp_dir) FileHandler::removeDir('./files/'.$tmp_dir);
|
||||
}
|
||||
}
|
||||
|
||||
$truncated = array();
|
||||
$oObjectCacheHandler = &CacheHandler::getInstance();
|
||||
$oTemplateCacheHandler = &CacheHandler::getInstance('template');
|
||||
|
||||
if($oObjectCacheHandler->isSupport()){
|
||||
$truncated[] = $oObjectCacheHandler->truncate();
|
||||
}
|
||||
|
||||
if($oTemplateCacheHandler->isSupport()){
|
||||
$truncated[] = $oTemplateCacheHandler->truncate();
|
||||
}
|
||||
|
||||
if(count($truncated) && in_array(false,$truncated)){
|
||||
return new Object(-1,'msg_self_restart_cache_engine');
|
||||
}
|
||||
|
||||
$this->setMessage('success_updated');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Logout
|
||||
* @return none
|
||||
**/
|
||||
function procAdminLogout() {
|
||||
$oMemberController = &getController('member');
|
||||
$oMemberController->procMemberLogout();
|
||||
|
||||
header('Location: '.getUrl('module','admin','act',''));
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,388 +1,388 @@
|
|||
<?php
|
||||
/**
|
||||
* @class adminAdminView
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief admin view class of admin module
|
||||
**/
|
||||
|
||||
class adminAdminView extends admin {
|
||||
|
||||
/**
|
||||
* @brief Initilization
|
||||
* @return none
|
||||
**/
|
||||
function init() {
|
||||
|
||||
// forbit access if the user is not an administrator
|
||||
$oMemberModel = &getModel('member');
|
||||
$logged_info = $oMemberModel->getLoggedInfo();
|
||||
if($logged_info->is_admin!='Y') return $this->stop("msg_is_not_administrator");
|
||||
|
||||
// change into administration layout
|
||||
$this->setTemplatePath($this->module_path.'tpl');
|
||||
$this->setLayoutPath($this->getTemplatePath());
|
||||
$this->setLayoutFile('layout.html');
|
||||
|
||||
$this->loadSideBar();
|
||||
|
||||
// Retrieve the list of installed modules
|
||||
|
||||
$db_info = Context::getDBInfo();
|
||||
|
||||
Context::set('time_zone_list', $GLOBALS['time_zone']);
|
||||
Context::set('time_zone', $GLOBALS['_time_zone']);
|
||||
Context::set('use_rewrite', $db_info->use_rewrite=='Y'?'Y':'N');
|
||||
Context::set('use_optimizer', $db_info->use_optimizer!='N'?'Y':'N');
|
||||
Context::set('use_spaceremover', $db_info->use_spaceremover?$db_info->use_spaceremover:'Y');
|
||||
Context::set('qmail_compatibility', $db_info->qmail_compatibility=='Y'?'Y':'N');
|
||||
Context::set('use_db_session', $db_info->use_db_session=='N'?'N':'Y');
|
||||
Context::set('use_mobile_view', $db_info->use_mobile_view =='Y'?'Y':'N');
|
||||
Context::set('use_ssl', $db_info->use_ssl?$db_info->use_ssl:"none");
|
||||
if($db_info->http_port) Context::set('http_port', $db_info->http_port);
|
||||
if($db_info->https_port) Context::set('https_port', $db_info->https_port);
|
||||
|
||||
}
|
||||
|
||||
function loadSideBar()
|
||||
{
|
||||
$oModuleModel = &getModel('module');
|
||||
$installed_module_list = $oModuleModel->getModulesXmlInfo();
|
||||
|
||||
$installed_modules = $package_modules = array();
|
||||
$package_idx = 0;
|
||||
foreach($installed_module_list as $key => $val) {
|
||||
if($val->category == 'migration') $val->category = 'system';
|
||||
if($val->category == 'interlock') $val->category = 'accessory';
|
||||
if($val->category == 'statistics') $val->category = 'accessory';
|
||||
|
||||
if($val->module == 'admin' || !$val->admin_index_act) continue;
|
||||
// get action information
|
||||
$action_spec = $oModuleModel->getModuleActionXml($val->module);
|
||||
$actions = array();
|
||||
if($action_spec->default_index_act) $actions[] = $action_spec->default_index_act;
|
||||
if($action_spec->admin_index_act) $actions[] = $action_spec->admin_index_act;
|
||||
if($action_spec->action) foreach($action_spec->action as $k => $v) $actions[] = $k;
|
||||
|
||||
$obj = null;
|
||||
$obj->category = $val->category;
|
||||
$obj->title = $val->title;
|
||||
$obj->description = $val->description;
|
||||
$obj->index_act = $val->admin_index_act;
|
||||
if(in_array(Context::get('act'), $actions)) $obj->selected = true;
|
||||
|
||||
// Packages
|
||||
if($val->category == 'package') {
|
||||
if($package_idx == 0) $obj->position = "first";
|
||||
else $obj->position = "mid";
|
||||
$package_modules[] = $obj;
|
||||
$package_idx ++;
|
||||
if($obj->selected) Context::set('package_selected',true);
|
||||
// Modules
|
||||
} else {
|
||||
$installed_modules[] = $obj;
|
||||
}
|
||||
if($obj->selected) {
|
||||
Context::set('selected_module_category', $val->category);
|
||||
Context::set('selected_module_info', $val);
|
||||
}
|
||||
}
|
||||
if(count($package_modules)) $package_modules[count($package_modules)-1]->position = 'end';
|
||||
Context::set('package_modules', $package_modules);
|
||||
Context::set('installed_modules', $installed_modules);
|
||||
Context::setBrowserTitle("XE Admin Page");
|
||||
|
||||
// add javascript tooltip plugin - gony
|
||||
Context::loadJavascriptPlugin('qtip');
|
||||
Context::loadJavascriptPlugin('watchinput');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Display main administration page
|
||||
* @return none
|
||||
**/
|
||||
function dispAdminIndex() {
|
||||
//Retrieve recent news and set them into context
|
||||
$newest_news_url = sprintf("http://news.xpressengine.com/%s/news.php", Context::getLangType());
|
||||
$cache_file = sprintf("%sfiles/cache/newest_news.%s.cache.php", _XE_PATH_,Context::getLangType());
|
||||
if(!file_exists($cache_file) || filemtime($cache_file)+ 60*60 < time()) {
|
||||
// Considering if data cannot be retrieved due to network problem, modify filemtime to prevent trying to reload again when refreshing administration page
|
||||
// Ensure to access the administration page even though news cannot be displayed
|
||||
FileHandler::writeFile($cache_file,'');
|
||||
FileHandler::getRemoteFile($newest_news_url, $cache_file, null, 1, 'GET', 'text/html', array('REQUESTURL'=>getFullUrl('')));
|
||||
}
|
||||
|
||||
if(file_exists($cache_file)) {
|
||||
$oXml = new XmlParser();
|
||||
$buff = $oXml->parse(FileHandler::readFile($cache_file));
|
||||
|
||||
$item = $buff->zbxe_news->item;
|
||||
if($item) {
|
||||
if(!is_array($item)) $item = array($item);
|
||||
|
||||
foreach($item as $key => $val) {
|
||||
$obj = null;
|
||||
$obj->title = $val->body;
|
||||
$obj->date = $val->attrs->date;
|
||||
$obj->url = $val->attrs->url;
|
||||
$news[] = $obj;
|
||||
}
|
||||
Context::set('news', $news);
|
||||
}
|
||||
|
||||
Context::set('released_version', $buff->zbxe_news->attrs->released_version);
|
||||
Context::set('download_link', $buff->zbxe_news->attrs->download_link);
|
||||
}
|
||||
|
||||
// DB Information
|
||||
$db_info = Context::getDBInfo();
|
||||
Context::set('selected_lang', $db_info->lang_type);
|
||||
|
||||
// Current Version and Installed Path
|
||||
Context::set('current_version', __ZBXE_VERSION__);
|
||||
Context::set('installed_path', realpath('./'));
|
||||
|
||||
// Get list of modules
|
||||
$oModuleModel = &getModel('module');
|
||||
$module_list = $oModuleModel->getModuleList();
|
||||
Context::set('module_list', $module_list);
|
||||
|
||||
// Get list of addons
|
||||
$oAddonModel = &getAdminModel('addon');
|
||||
$addon_list = $oAddonModel->getAddonList();
|
||||
Context::set('addon_list', $addon_list);
|
||||
|
||||
// 방문자수
|
||||
$time = time();
|
||||
$w = date("D");
|
||||
while(date("D",$time) != "Sat") {
|
||||
$time += 60*60*24;
|
||||
}
|
||||
$end_time = $time;
|
||||
$end_date = date("Ymd",$time);
|
||||
$time -= 60*60*24;
|
||||
while(date("D",$time)!="Sun") {
|
||||
$thisWeek[] = date("Ymd",$time);
|
||||
$time -= 60*60*24;
|
||||
}
|
||||
$start_time = $time;
|
||||
$start_date = date("Ymd",$time-60*60*24*7);
|
||||
|
||||
$args->start_date = $start_date;
|
||||
$args->end_date = $end_date;
|
||||
$output = executeQueryArray('admin.getVisitors', $args);
|
||||
if(count($output->data)) {
|
||||
foreach($output->data as $key => $val) {
|
||||
$visitors[$val->regdate] = $val->unique_visitor;
|
||||
}
|
||||
}
|
||||
$output = executeQueryArray('admin.getSiteVisitors', $args);
|
||||
if(count($output->data)) {
|
||||
foreach($output->data as $key => $val) {
|
||||
$visitors[$val->regdate] += $val->unique_visitor;
|
||||
}
|
||||
}
|
||||
|
||||
$status->week_max = 0;
|
||||
if(count($visitors)) {
|
||||
foreach($visitors as $key => $val) {
|
||||
if($val>$status->week_max) $status->week_max = $val;
|
||||
}
|
||||
}
|
||||
|
||||
for($i=$start_time;$i<$end_time;$i+=60*60*24) {
|
||||
$status->thisWeekSum += $visitors[date("Ymd",$i)];
|
||||
$status->week[date("Y.m.d",$i)]->this = (int)$visitors[date("Ymd",$i)];
|
||||
$status->week[date("Y.m.d",$i)]->last = (int)$visitors[date("Ymd",$i-60*60*24*7)];
|
||||
}
|
||||
|
||||
// 각종 통계 정보를 구함
|
||||
$output = executeQuery('admin.getTotalVisitors');
|
||||
$status->total_visitor = $output->data->count;
|
||||
$output = executeQuery('admin.getTotalSiteVisitors');
|
||||
$status->total_visitor += $output->data->count;
|
||||
$status->visitor = $visitors[date("Ymd")];
|
||||
|
||||
// 오늘의 댓글 수
|
||||
$args->regdate = date("Ymd");
|
||||
$output = executeQuery('admin.getTodayCommentCount', $args);
|
||||
$status->comment_count = $output->data->count;
|
||||
|
||||
// 오늘의 엮인글 수
|
||||
$args->regdate = date("Ymd");
|
||||
$output = executeQuery('admin.getTodayTrackbackCount', $args);
|
||||
$status->trackback_count = $output->data->count;
|
||||
|
||||
Context::set('status', $status);
|
||||
|
||||
// 최근글 추출
|
||||
$oDocumentModel = &getModel('document');
|
||||
$doc_args->sort_index = 'list_order';
|
||||
$doc_args->order_type = 'asc';
|
||||
$doc_args->list_count = 3;
|
||||
$output = $oDocumentModel->getDocumentList($doc_args, false, false);
|
||||
Context::set('newest_documents', $output->data);
|
||||
|
||||
// 최근 댓글 추출
|
||||
$oCommentModel = &getModel('comment');
|
||||
$com_args->sort_index = 'list_order';
|
||||
$com_args->order_type = 'asc';
|
||||
$com_args->list_count = 5;
|
||||
$output = $oCommentModel->getTotalCommentList($com_args);
|
||||
Context::set('newest_comments', $output->data);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Get statistics
|
||||
$args->date = date("Ymd000000", time()-60*60*24);
|
||||
$today = date("Ymd");
|
||||
|
||||
// Member Status
|
||||
$output = executeQueryArray("admin.getMemberStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->member->today = $var->count;
|
||||
} else {
|
||||
$status->member->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getMemberCount", $args);
|
||||
$status->member->total = $output->data->count;
|
||||
|
||||
// Document Status
|
||||
$output = executeQueryArray("admin.getDocumentStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->document->today = $var->count;
|
||||
} else {
|
||||
$status->document->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getDocumentCount", $args);
|
||||
$status->document->total = $output->data->count;
|
||||
|
||||
// Comment Status
|
||||
$output = executeQueryArray("admin.getCommentStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->comment->today = $var->count;
|
||||
} else {
|
||||
$status->comment->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getCommentCount", $args);
|
||||
$status->comment->total = $output->data->count;
|
||||
|
||||
// Trackback Status
|
||||
$output = executeQueryArray("admin.getTrackbackStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->trackback->today = $var->count;
|
||||
} else {
|
||||
$status->trackback->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getTrackbackCount", $args);
|
||||
$status->trackback->total = $output->data->count;
|
||||
|
||||
// Attached files Status
|
||||
$output = executeQueryArray("admin.getFileStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->file->today = $var->count;
|
||||
} else {
|
||||
$status->file->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getFileCount", $args);
|
||||
$status->file->total = $output->data->count;
|
||||
|
||||
// Reported documents Status
|
||||
$output = executeQueryArray("admin.getDocumentDeclaredStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->documentDeclared->today = $var->count;
|
||||
} else {
|
||||
$status->documentDeclared->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getDocumentDeclaredCount", $args);
|
||||
$status->documentDeclared->total = $output->data->count;
|
||||
|
||||
// Reported comments Status
|
||||
$output = executeQueryArray("admin.getCommentDeclaredStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->commentDeclared->today = $var->count;
|
||||
} else {
|
||||
$status->commentDeclared->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getCommentDeclaredCount", $args);
|
||||
$status->commentDeclared->total = $output->data->count;
|
||||
|
||||
$site_args->site_srl = 0;
|
||||
$output = executeQuery('module.getSiteInfo', $site_args);
|
||||
Context::set('start_module', $output->data);
|
||||
|
||||
Context::set('status', $status);
|
||||
|
||||
Context::set('layout','none');
|
||||
$this->setTemplateFile('index');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Display Configuration(settings) page
|
||||
* @return none
|
||||
**/
|
||||
function dispAdminConfig() {
|
||||
$db_info = Context::getDBInfo();
|
||||
|
||||
Context::set('sftp_support', function_exists(ssh2_sftp));
|
||||
|
||||
Context::set('selected_lang', $db_info->lang_type);
|
||||
|
||||
Context::set('default_url', $db_info->default_url);
|
||||
|
||||
Context::set('langs', Context::loadLangSupported());
|
||||
|
||||
Context::set('lang_selected', Context::loadLangSelected());
|
||||
|
||||
Context::set('use_mobile_view', $db_info->use_mobile_view=="Y"?'Y':'N');
|
||||
|
||||
$ftp_info = Context::getFTPInfo();
|
||||
Context::set('ftp_info', $ftp_info);
|
||||
|
||||
$site_args->site_srl = 0;
|
||||
$output = executeQuery('module.getSiteInfo', $site_args);
|
||||
Context::set('start_module', $output->data);
|
||||
|
||||
Context::set('pwd',$pwd);
|
||||
Context::set('layout','none');
|
||||
$this->setTemplateFile('config');
|
||||
}
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @class adminAdminView
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief admin view class of admin module
|
||||
**/
|
||||
|
||||
class adminAdminView extends admin {
|
||||
|
||||
/**
|
||||
* @brief Initilization
|
||||
* @return none
|
||||
**/
|
||||
function init() {
|
||||
|
||||
// forbit access if the user is not an administrator
|
||||
$oMemberModel = &getModel('member');
|
||||
$logged_info = $oMemberModel->getLoggedInfo();
|
||||
if($logged_info->is_admin!='Y') return $this->stop("msg_is_not_administrator");
|
||||
|
||||
// change into administration layout
|
||||
$this->setTemplatePath($this->module_path.'tpl');
|
||||
$this->setLayoutPath($this->getTemplatePath());
|
||||
$this->setLayoutFile('layout.html');
|
||||
|
||||
$this->loadSideBar();
|
||||
|
||||
// Retrieve the list of installed modules
|
||||
|
||||
$db_info = Context::getDBInfo();
|
||||
|
||||
Context::set('time_zone_list', $GLOBALS['time_zone']);
|
||||
Context::set('time_zone', $GLOBALS['_time_zone']);
|
||||
Context::set('use_rewrite', $db_info->use_rewrite=='Y'?'Y':'N');
|
||||
Context::set('use_optimizer', $db_info->use_optimizer!='N'?'Y':'N');
|
||||
Context::set('use_spaceremover', $db_info->use_spaceremover?$db_info->use_spaceremover:'Y');
|
||||
Context::set('qmail_compatibility', $db_info->qmail_compatibility=='Y'?'Y':'N');
|
||||
Context::set('use_db_session', $db_info->use_db_session=='N'?'N':'Y');
|
||||
Context::set('use_mobile_view', $db_info->use_mobile_view =='Y'?'Y':'N');
|
||||
Context::set('use_ssl', $db_info->use_ssl?$db_info->use_ssl:"none");
|
||||
if($db_info->http_port) Context::set('http_port', $db_info->http_port);
|
||||
if($db_info->https_port) Context::set('https_port', $db_info->https_port);
|
||||
|
||||
}
|
||||
|
||||
function loadSideBar()
|
||||
{
|
||||
$oModuleModel = &getModel('module');
|
||||
$installed_module_list = $oModuleModel->getModulesXmlInfo();
|
||||
|
||||
$installed_modules = $package_modules = array();
|
||||
$package_idx = 0;
|
||||
foreach($installed_module_list as $key => $val) {
|
||||
if($val->category == 'migration') $val->category = 'system';
|
||||
if($val->category == 'interlock') $val->category = 'accessory';
|
||||
if($val->category == 'statistics') $val->category = 'accessory';
|
||||
|
||||
if($val->module == 'admin' || !$val->admin_index_act) continue;
|
||||
// get action information
|
||||
$action_spec = $oModuleModel->getModuleActionXml($val->module);
|
||||
$actions = array();
|
||||
if($action_spec->default_index_act) $actions[] = $action_spec->default_index_act;
|
||||
if($action_spec->admin_index_act) $actions[] = $action_spec->admin_index_act;
|
||||
if($action_spec->action) foreach($action_spec->action as $k => $v) $actions[] = $k;
|
||||
|
||||
$obj = null;
|
||||
$obj->category = $val->category;
|
||||
$obj->title = $val->title;
|
||||
$obj->description = $val->description;
|
||||
$obj->index_act = $val->admin_index_act;
|
||||
if(in_array(Context::get('act'), $actions)) $obj->selected = true;
|
||||
|
||||
// Packages
|
||||
if($val->category == 'package') {
|
||||
if($package_idx == 0) $obj->position = "first";
|
||||
else $obj->position = "mid";
|
||||
$package_modules[] = $obj;
|
||||
$package_idx ++;
|
||||
if($obj->selected) Context::set('package_selected',true);
|
||||
// Modules
|
||||
} else {
|
||||
$installed_modules[] = $obj;
|
||||
}
|
||||
if($obj->selected) {
|
||||
Context::set('selected_module_category', $val->category);
|
||||
Context::set('selected_module_info', $val);
|
||||
}
|
||||
}
|
||||
if(count($package_modules)) $package_modules[count($package_modules)-1]->position = 'end';
|
||||
Context::set('package_modules', $package_modules);
|
||||
Context::set('installed_modules', $installed_modules);
|
||||
Context::setBrowserTitle("XE Admin Page");
|
||||
|
||||
// add javascript tooltip plugin - gony
|
||||
Context::loadJavascriptPlugin('qtip');
|
||||
Context::loadJavascriptPlugin('watchinput');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Display main administration page
|
||||
* @return none
|
||||
**/
|
||||
function dispAdminIndex() {
|
||||
//Retrieve recent news and set them into context
|
||||
$newest_news_url = sprintf("http://news.xpressengine.com/%s/news.php", Context::getLangType());
|
||||
$cache_file = sprintf("%sfiles/cache/newest_news.%s.cache.php", _XE_PATH_,Context::getLangType());
|
||||
if(!file_exists($cache_file) || filemtime($cache_file)+ 60*60 < time()) {
|
||||
// Considering if data cannot be retrieved due to network problem, modify filemtime to prevent trying to reload again when refreshing administration page
|
||||
// Ensure to access the administration page even though news cannot be displayed
|
||||
FileHandler::writeFile($cache_file,'');
|
||||
FileHandler::getRemoteFile($newest_news_url, $cache_file, null, 1, 'GET', 'text/html', array('REQUESTURL'=>getFullUrl('')));
|
||||
}
|
||||
|
||||
if(file_exists($cache_file)) {
|
||||
$oXml = new XmlParser();
|
||||
$buff = $oXml->parse(FileHandler::readFile($cache_file));
|
||||
|
||||
$item = $buff->zbxe_news->item;
|
||||
if($item) {
|
||||
if(!is_array($item)) $item = array($item);
|
||||
|
||||
foreach($item as $key => $val) {
|
||||
$obj = null;
|
||||
$obj->title = $val->body;
|
||||
$obj->date = $val->attrs->date;
|
||||
$obj->url = $val->attrs->url;
|
||||
$news[] = $obj;
|
||||
}
|
||||
Context::set('news', $news);
|
||||
}
|
||||
|
||||
Context::set('released_version', $buff->zbxe_news->attrs->released_version);
|
||||
Context::set('download_link', $buff->zbxe_news->attrs->download_link);
|
||||
}
|
||||
|
||||
// DB Information
|
||||
$db_info = Context::getDBInfo();
|
||||
Context::set('selected_lang', $db_info->lang_type);
|
||||
|
||||
// Current Version and Installed Path
|
||||
Context::set('current_version', __ZBXE_VERSION__);
|
||||
Context::set('installed_path', realpath('./'));
|
||||
|
||||
// Get list of modules
|
||||
$oModuleModel = &getModel('module');
|
||||
$module_list = $oModuleModel->getModuleList();
|
||||
Context::set('module_list', $module_list);
|
||||
|
||||
// Get list of addons
|
||||
$oAddonModel = &getAdminModel('addon');
|
||||
$addon_list = $oAddonModel->getAddonList();
|
||||
Context::set('addon_list', $addon_list);
|
||||
|
||||
// 방문자수
|
||||
$time = time();
|
||||
$w = date("D");
|
||||
while(date("D",$time) != "Sat") {
|
||||
$time += 60*60*24;
|
||||
}
|
||||
$end_time = $time;
|
||||
$end_date = date("Ymd",$time);
|
||||
$time -= 60*60*24;
|
||||
while(date("D",$time)!="Sun") {
|
||||
$thisWeek[] = date("Ymd",$time);
|
||||
$time -= 60*60*24;
|
||||
}
|
||||
$start_time = $time;
|
||||
$start_date = date("Ymd",$time-60*60*24*7);
|
||||
|
||||
$args->start_date = $start_date;
|
||||
$args->end_date = $end_date;
|
||||
$output = executeQueryArray('admin.getVisitors', $args);
|
||||
if(count($output->data)) {
|
||||
foreach($output->data as $key => $val) {
|
||||
$visitors[$val->regdate] = $val->unique_visitor;
|
||||
}
|
||||
}
|
||||
$output = executeQueryArray('admin.getSiteVisitors', $args);
|
||||
if(count($output->data)) {
|
||||
foreach($output->data as $key => $val) {
|
||||
$visitors[$val->regdate] += $val->unique_visitor;
|
||||
}
|
||||
}
|
||||
|
||||
$status->week_max = 0;
|
||||
if(count($visitors)) {
|
||||
foreach($visitors as $key => $val) {
|
||||
if($val>$status->week_max) $status->week_max = $val;
|
||||
}
|
||||
}
|
||||
|
||||
for($i=$start_time;$i<$end_time;$i+=60*60*24) {
|
||||
$status->thisWeekSum += $visitors[date("Ymd",$i)];
|
||||
$status->week[date("Y.m.d",$i)]->this = (int)$visitors[date("Ymd",$i)];
|
||||
$status->week[date("Y.m.d",$i)]->last = (int)$visitors[date("Ymd",$i-60*60*24*7)];
|
||||
}
|
||||
|
||||
// 각종 통계 정보를 구함
|
||||
$output = executeQuery('admin.getTotalVisitors');
|
||||
$status->total_visitor = $output->data->count;
|
||||
$output = executeQuery('admin.getTotalSiteVisitors');
|
||||
$status->total_visitor += $output->data->count;
|
||||
$status->visitor = $visitors[date("Ymd")];
|
||||
|
||||
// 오늘의 댓글 수
|
||||
$args->regdate = date("Ymd");
|
||||
$output = executeQuery('admin.getTodayCommentCount', $args);
|
||||
$status->comment_count = $output->data->count;
|
||||
|
||||
// 오늘의 엮인글 수
|
||||
$args->regdate = date("Ymd");
|
||||
$output = executeQuery('admin.getTodayTrackbackCount', $args);
|
||||
$status->trackback_count = $output->data->count;
|
||||
|
||||
Context::set('status', $status);
|
||||
|
||||
// 최근글 추출
|
||||
$oDocumentModel = &getModel('document');
|
||||
$doc_args->sort_index = 'list_order';
|
||||
$doc_args->order_type = 'asc';
|
||||
$doc_args->list_count = 3;
|
||||
$output = $oDocumentModel->getDocumentList($doc_args, false, false);
|
||||
Context::set('newest_documents', $output->data);
|
||||
|
||||
// 최근 댓글 추출
|
||||
$oCommentModel = &getModel('comment');
|
||||
$com_args->sort_index = 'list_order';
|
||||
$com_args->order_type = 'asc';
|
||||
$com_args->list_count = 5;
|
||||
$output = $oCommentModel->getTotalCommentList($com_args);
|
||||
Context::set('newest_comments', $output->data);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Get statistics
|
||||
$args->date = date("Ymd000000", time()-60*60*24);
|
||||
$today = date("Ymd");
|
||||
|
||||
// Member Status
|
||||
$output = executeQueryArray("admin.getMemberStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->member->today = $var->count;
|
||||
} else {
|
||||
$status->member->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getMemberCount", $args);
|
||||
$status->member->total = $output->data->count;
|
||||
|
||||
// Document Status
|
||||
$output = executeQueryArray("admin.getDocumentStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->document->today = $var->count;
|
||||
} else {
|
||||
$status->document->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getDocumentCount", $args);
|
||||
$status->document->total = $output->data->count;
|
||||
|
||||
// Comment Status
|
||||
$output = executeQueryArray("admin.getCommentStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->comment->today = $var->count;
|
||||
} else {
|
||||
$status->comment->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getCommentCount", $args);
|
||||
$status->comment->total = $output->data->count;
|
||||
|
||||
// Trackback Status
|
||||
$output = executeQueryArray("admin.getTrackbackStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->trackback->today = $var->count;
|
||||
} else {
|
||||
$status->trackback->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getTrackbackCount", $args);
|
||||
$status->trackback->total = $output->data->count;
|
||||
|
||||
// Attached files Status
|
||||
$output = executeQueryArray("admin.getFileStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->file->today = $var->count;
|
||||
} else {
|
||||
$status->file->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getFileCount", $args);
|
||||
$status->file->total = $output->data->count;
|
||||
|
||||
// Reported documents Status
|
||||
$output = executeQueryArray("admin.getDocumentDeclaredStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->documentDeclared->today = $var->count;
|
||||
} else {
|
||||
$status->documentDeclared->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getDocumentDeclaredCount", $args);
|
||||
$status->documentDeclared->total = $output->data->count;
|
||||
|
||||
// Reported comments Status
|
||||
$output = executeQueryArray("admin.getCommentDeclaredStatus", $args);
|
||||
if($output->data) {
|
||||
foreach($output->data as $var) {
|
||||
if($var->date == $today) {
|
||||
$status->commentDeclared->today = $var->count;
|
||||
} else {
|
||||
$status->commentDeclared->yesterday = $var->count;
|
||||
}
|
||||
}
|
||||
}
|
||||
$output = executeQuery("admin.getCommentDeclaredCount", $args);
|
||||
$status->commentDeclared->total = $output->data->count;
|
||||
|
||||
$site_args->site_srl = 0;
|
||||
$output = executeQuery('module.getSiteInfo', $site_args);
|
||||
Context::set('start_module', $output->data);
|
||||
|
||||
Context::set('status', $status);
|
||||
|
||||
Context::set('layout','none');
|
||||
$this->setTemplateFile('index');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Display Configuration(settings) page
|
||||
* @return none
|
||||
**/
|
||||
function dispAdminConfig() {
|
||||
$db_info = Context::getDBInfo();
|
||||
|
||||
Context::set('sftp_support', function_exists(ssh2_sftp));
|
||||
|
||||
Context::set('selected_lang', $db_info->lang_type);
|
||||
|
||||
Context::set('default_url', $db_info->default_url);
|
||||
|
||||
Context::set('langs', Context::loadLangSupported());
|
||||
|
||||
Context::set('lang_selected', Context::loadLangSelected());
|
||||
|
||||
Context::set('use_mobile_view', $db_info->use_mobile_view=="Y"?'Y':'N');
|
||||
|
||||
$ftp_info = Context::getFTPInfo();
|
||||
Context::set('ftp_info', $ftp_info);
|
||||
|
||||
$site_args->site_srl = 0;
|
||||
$output = executeQuery('module.getSiteInfo', $site_args);
|
||||
Context::set('start_module', $output->data);
|
||||
|
||||
Context::set('pwd',$pwd);
|
||||
Context::set('layout','none');
|
||||
$this->setTemplateFile('config');
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,59 +1,59 @@
|
|||
<?php
|
||||
/**
|
||||
* @class admin
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief base class of admin module
|
||||
**/
|
||||
|
||||
class admin extends ModuleObject {
|
||||
|
||||
/**
|
||||
* @brief install admin module
|
||||
* @return new Object
|
||||
**/
|
||||
function moduleInstall() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief if update is necessary it returns true
|
||||
**/
|
||||
function checkUpdate() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief update module
|
||||
* @return new Object
|
||||
**/
|
||||
function moduleUpdate() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief regenerate cache file
|
||||
* @return none
|
||||
**/
|
||||
function recompileCache() {
|
||||
|
||||
// remove compiled templates
|
||||
FileHandler::removeFilesInDir("./files/cache/template_compiled");
|
||||
|
||||
// remove optimized files
|
||||
FileHandler::removeFilesInDir("./files/cache/optimized");
|
||||
|
||||
// remove js_filter_compiled files
|
||||
FileHandler::removeFilesInDir("./files/cache/js_filter_compiled");
|
||||
|
||||
// remove cached queries
|
||||
FileHandler::removeFilesInDir("./files/cache/queries");
|
||||
|
||||
// remove ./files/cache/news* files
|
||||
$directory = dir(_XE_PATH_."files/cache/");
|
||||
while($entry = $directory->read()) {
|
||||
if(substr($entry,0,11)=='newest_news') FileHandler::removeFile("./files/cache/".$entry);
|
||||
}
|
||||
$directory->close();
|
||||
}
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @class admin
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief base class of admin module
|
||||
**/
|
||||
|
||||
class admin extends ModuleObject {
|
||||
|
||||
/**
|
||||
* @brief install admin module
|
||||
* @return new Object
|
||||
**/
|
||||
function moduleInstall() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief if update is necessary it returns true
|
||||
**/
|
||||
function checkUpdate() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief update module
|
||||
* @return new Object
|
||||
**/
|
||||
function moduleUpdate() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief regenerate cache file
|
||||
* @return none
|
||||
**/
|
||||
function recompileCache() {
|
||||
|
||||
// remove compiled templates
|
||||
FileHandler::removeFilesInDir("./files/cache/template_compiled");
|
||||
|
||||
// remove optimized files
|
||||
FileHandler::removeFilesInDir("./files/cache/optimized");
|
||||
|
||||
// remove js_filter_compiled files
|
||||
FileHandler::removeFilesInDir("./files/cache/js_filter_compiled");
|
||||
|
||||
// remove cached queries
|
||||
FileHandler::removeFilesInDir("./files/cache/queries");
|
||||
|
||||
// remove ./files/cache/news* files
|
||||
$directory = dir(_XE_PATH_."files/cache/");
|
||||
while($entry = $directory->read()) {
|
||||
if(substr($entry,0,11)=='newest_news') FileHandler::removeFile("./files/cache/".$entry);
|
||||
}
|
||||
$directory->close();
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,33 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="0.2">
|
||||
<title xml:lang="ko">관리자 모듈</title>
|
||||
<title xml:lang="en">Administrator Module</title>
|
||||
<title xml:lang="vi">Administrator Module</title>
|
||||
<title xml:lang="es">Módulo del administrador</title>
|
||||
<title xml:lang="zh-CN">管理员模块</title>
|
||||
<title xml:lang="jp">管理者用モジュール</title>
|
||||
<title xml:lang="ru">Модуль администратора</title>
|
||||
<title xml:lang="zh-TW">管理員模組</title>
|
||||
<description xml:lang="ko">각 모듈들의 기능을 나열하고 관리자용 레이아웃을 적용하여 관리 기능을 사용할 수 있도록 하는 모듈입니다.</description>
|
||||
<description xml:lang="en">This module shows a list of features of each module, and enables you to use a quite few of managers by applying layout for administrator.</description>
|
||||
<description xml:lang="vi">Module này hiển thị thông tin của những Module đã được cài đặt, và cho phép bạn sử dụng quyền của Administrator để thiết lập giao diện.</description>
|
||||
<description xml:lang="es">Este módulo muestra una lista de características de cada módulo, en donde puede activar la función de la administracion aplicando el diseño del administrador.</description>
|
||||
<description xml:lang="zh-CN">列出各模块的功能并使用管理员布局,可以让其使用管理功能的模块。</description>
|
||||
<description xml:lang="jp">各モジュールの機能を表示し、かつ管理者用のレイアウトを適用させて、管理機能が使用出来るようにします。</description>
|
||||
<description xml:lang="ru">Этот модуль показывает список возможностей каждого модуля, и позволяет Вам использовать несколько менеджеров, применяя лейаут для администратора.</description>
|
||||
<description xml:lang="zh-TW">列出各模組的功能及使用管理員版面,並可使用管理功能的模組。</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
<category>system</category>
|
||||
|
||||
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
|
||||
<name xml:lang="ko">zero</name>
|
||||
<name xml:lang="en">zero</name>
|
||||
<name xml:lang="vi">zero</name>
|
||||
<name xml:lang="es">zero</name>
|
||||
<name xml:lang="zh-CN">zero</name>
|
||||
<name xml:lang="jp">zero</name>
|
||||
<name xml:lang="ru">zero</name>
|
||||
<name xml:lang="zh-TW">zero</name>
|
||||
</author>
|
||||
</module>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="0.2">
|
||||
<title xml:lang="ko">관리자 모듈</title>
|
||||
<title xml:lang="en">Administrator Module</title>
|
||||
<title xml:lang="vi">Administrator Module</title>
|
||||
<title xml:lang="es">Módulo del administrador</title>
|
||||
<title xml:lang="zh-CN">管理员模块</title>
|
||||
<title xml:lang="jp">管理者用モジュール</title>
|
||||
<title xml:lang="ru">Модуль администратора</title>
|
||||
<title xml:lang="zh-TW">管理員模組</title>
|
||||
<description xml:lang="ko">각 모듈들의 기능을 나열하고 관리자용 레이아웃을 적용하여 관리 기능을 사용할 수 있도록 하는 모듈입니다.</description>
|
||||
<description xml:lang="en">This module shows a list of features of each module, and enables you to use a quite few of managers by applying layout for administrator.</description>
|
||||
<description xml:lang="vi">Module này hiển thị thông tin của những Module đã được cài đặt, và cho phép bạn sử dụng quyền của Administrator để thiết lập giao diện.</description>
|
||||
<description xml:lang="es">Este módulo muestra una lista de características de cada módulo, en donde puede activar la función de la administracion aplicando el diseño del administrador.</description>
|
||||
<description xml:lang="zh-CN">列出各模块的功能并使用管理员布局,可以让其使用管理功能的模块。</description>
|
||||
<description xml:lang="jp">各モジュールの機能を表示し、かつ管理者用のレイアウトを適用させて、管理機能が使用出来るようにします。</description>
|
||||
<description xml:lang="ru">Этот модуль показывает список возможностей каждого модуля, и позволяет Вам использовать несколько менеджеров, применяя лейаут для администратора.</description>
|
||||
<description xml:lang="zh-TW">列出各模組的功能及使用管理員版面,並可使用管理功能的模組。</description>
|
||||
<version>0.1</version>
|
||||
<date>2007-02-28</date>
|
||||
<category>system</category>
|
||||
|
||||
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">
|
||||
<name xml:lang="ko">NHN</name>
|
||||
<name xml:lang="en">NHN</name>
|
||||
<name xml:lang="vi">NHN</name>
|
||||
<name xml:lang="es">NHN</name>
|
||||
<name xml:lang="zh-CN">NHN</name>
|
||||
<name xml:lang="jp">NHN</name>
|
||||
<name xml:lang="ru">NHN</name>
|
||||
<name xml:lang="zh-TW">NHN</name>
|
||||
</author>
|
||||
</module>
|
||||
|
|
|
|||
|
|
@ -1,92 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* @file en.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief English Language Pack (Only basic words are included here)
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Administrator Info';
|
||||
$lang->admin_index = 'Index Admin Page';
|
||||
$lang->control_panel = 'Dashboard';
|
||||
$lang->start_module = 'Default Module';
|
||||
$lang->about_start_module = 'You can specify default module of the site.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Services',
|
||||
'member' => 'Members',
|
||||
'content' => 'Contents',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utilities',
|
||||
'interlock' => 'Embedded',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Latest News";
|
||||
|
||||
$lang->env_setup = "Setting";
|
||||
$lang->default_url = "Default URL";
|
||||
$lang->about_default_url = "If you use a virtual site feature (e.g., cafeXE), input default URL (parent-site's address), then SSO would be enabled, thus connection to documents/modules works properly. ";
|
||||
|
||||
$lang->env_information = "Environment Information";
|
||||
$lang->current_version = "Current Version";
|
||||
$lang->current_path = "Installed Path";
|
||||
$lang->released_version = "Latest Version";
|
||||
$lang->about_download_link = "New version of Zerboard XE is now available!\nPlease click the download link to get the latest version.";
|
||||
|
||||
$lang->item_module = "Module List";
|
||||
$lang->item_addon = "Addon List";
|
||||
$lang->item_widget = "Widget List";
|
||||
$lang->item_layout = "Layout List";
|
||||
|
||||
$lang->module_name = "Module Name";
|
||||
$lang->addon_name = "Addon Name";
|
||||
$lang->version = "Version";
|
||||
$lang->author = "Developer";
|
||||
$lang->table_count = "Number of Table";
|
||||
$lang->installed_path = "Installed Path";
|
||||
|
||||
$lang->cmd_shortcut_management = "Edit Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Administrator Only';
|
||||
$lang->msg_manage_module_cannot_delete = 'Shortcuts of module, addon, layout, widget cannot be removed';
|
||||
$lang->msg_default_act_is_null = 'Shortcut could not be registered because default admin Action is not set';
|
||||
|
||||
$lang->welcome_to_xe = 'Welcome to the admin page of XE';
|
||||
$lang->about_admin_page = "Admin page is still under development,\nWe will add essential contents by accepting many good suggestions during Closebeta.";
|
||||
$lang->about_lang_env = "To apply selected language as default language, click on the Save button.";
|
||||
|
||||
$lang->xe_license = 'XE complies with the GPL';
|
||||
$lang->about_shortcut = 'You may remove shortcuts of modules which are registered on frequently using module list';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "Language";
|
||||
$lang->about_cmd_lang_select = "Only selected languages will be served.";
|
||||
$lang->about_recompile_cache = "You can delete useless or invalid cache files.";
|
||||
$lang->use_ssl = "Use SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Never",
|
||||
'optional' => "Optional",
|
||||
'always' => "Always"
|
||||
);
|
||||
$lang->about_use_ssl = "In case of 'Optional', SSL will be used for actions such as signing up / changing information. And for 'Always', your site will be served only via https.";
|
||||
$lang->server_ports = "Server Port";
|
||||
$lang->about_server_ports = "If your web server does not use 80 for HTTP or 443 for HTTPS port, you should specify server ports";
|
||||
$lang->use_db_session = 'Use Session DB';
|
||||
$lang->about_db_session = 'It will use php session with DB when authenticating.<br/>Websites with infrequent usage of web server may expect faster response when this function is disabled.<br/>However session DB will make it unable to get current users, so you cannot use related functions.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Mobile View';
|
||||
$lang->about_mobile_view = 'Mobile View will display the best layout when accessing with smartphones.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file en.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief English Language Pack (Only basic words are included here)
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Administrator Info';
|
||||
$lang->admin_index = 'Index Admin Page';
|
||||
$lang->control_panel = 'Dashboard';
|
||||
$lang->start_module = 'Default Module';
|
||||
$lang->about_start_module = 'You can specify default module of the site.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Services',
|
||||
'member' => 'Members',
|
||||
'content' => 'Contents',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utilities',
|
||||
'interlock' => 'Embedded',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Latest News";
|
||||
|
||||
$lang->env_setup = "Setting";
|
||||
$lang->default_url = "Default URL";
|
||||
$lang->about_default_url = "If you use a virtual site feature (e.g., cafeXE), input default URL (parent-site's address), then SSO would be enabled, thus connection to documents/modules works properly. ";
|
||||
|
||||
$lang->env_information = "Environment Information";
|
||||
$lang->current_version = "Current Version";
|
||||
$lang->current_path = "Installed Path";
|
||||
$lang->released_version = "Latest Version";
|
||||
$lang->about_download_link = "New version of Zerboard XE is now available!\nPlease click the download link to get the latest version.";
|
||||
|
||||
$lang->item_module = "Module List";
|
||||
$lang->item_addon = "Addon List";
|
||||
$lang->item_widget = "Widget List";
|
||||
$lang->item_layout = "Layout List";
|
||||
|
||||
$lang->module_name = "Module Name";
|
||||
$lang->addon_name = "Addon Name";
|
||||
$lang->version = "Version";
|
||||
$lang->author = "Developer";
|
||||
$lang->table_count = "Number of Table";
|
||||
$lang->installed_path = "Installed Path";
|
||||
|
||||
$lang->cmd_shortcut_management = "Edit Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Administrator Only';
|
||||
$lang->msg_manage_module_cannot_delete = 'Shortcuts of module, addon, layout, widget cannot be removed';
|
||||
$lang->msg_default_act_is_null = 'Shortcut could not be registered because default admin Action is not set';
|
||||
|
||||
$lang->welcome_to_xe = 'Welcome to the admin page of XE';
|
||||
$lang->about_admin_page = "Admin page is still under development,\nWe will add essential contents by accepting many good suggestions during Closebeta.";
|
||||
$lang->about_lang_env = "To apply selected language as default language, click on the Save button.";
|
||||
|
||||
$lang->xe_license = 'XE complies with the GPL';
|
||||
$lang->about_shortcut = 'You may remove shortcuts of modules which are registered on frequently using module list';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "Language";
|
||||
$lang->about_cmd_lang_select = "Only selected languages will be served.";
|
||||
$lang->about_recompile_cache = "You can delete useless or invalid cache files.";
|
||||
$lang->use_ssl = "Use SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Never",
|
||||
'optional' => "Optional",
|
||||
'always' => "Always"
|
||||
);
|
||||
$lang->about_use_ssl = "In case of 'Optional', SSL will be used for actions such as signing up / changing information. And for 'Always', your site will be served only via https.";
|
||||
$lang->server_ports = "Server Port";
|
||||
$lang->about_server_ports = "If your web server does not use 80 for HTTP or 443 for HTTPS port, you should specify server ports";
|
||||
$lang->use_db_session = 'Use Session DB';
|
||||
$lang->about_db_session = 'It will use php session with DB when authenticating.<br/>Websites with infrequent usage of web server may expect faster response when this function is disabled.<br/>However session DB will make it unable to get current users, so you cannot use related functions.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Mobile View';
|
||||
$lang->about_mobile_view = 'Mobile View will display the best layout when accessing with smartphones.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,94 +1,94 @@
|
|||
<?php
|
||||
/**
|
||||
* @archivo es.lang.php
|
||||
* @autor zero (zero@nzeo.com)
|
||||
* @sumario Paquete del idioma español (sólo los básicos)
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Administrador de Información';
|
||||
$lang->admin_index = 'Índice de la página admin';
|
||||
$lang->control_panel = 'Control panel';
|
||||
$lang->start_module = 'Módulo de inicio';
|
||||
$lang->about_start_module = 'Puede especificar el módulo de inicio por defecto.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
|
||||
$lang->newest_news = "Noticias recientes";
|
||||
|
||||
$lang->env_setup = "Configuración";
|
||||
$lang->default_url = "기본 URL";
|
||||
$lang->about_default_url = "XE sitio virtual (cafeXE, etc) tiene que introducir la URL base, al utilizar las capacidades de trabajo virtual y el tema de autenticación sayiteugan / módulos y las conexiones se realizan correctamente. (Ej: http:// dominio / ruta de instalación)";
|
||||
|
||||
$lang->env_information = "Información Ambiental";
|
||||
$lang->current_version = "Versión actual";
|
||||
$lang->current_path = "Instalado Sendero";
|
||||
$lang->released_version = "Versión más reciente";
|
||||
$lang->about_download_link = "La versión más reciente Zerboard XE está disponible.\nPara descargar la versión más reciente, haga clic en enlace de descarga.";
|
||||
|
||||
$lang->item_module = "Lista de Módulos";
|
||||
$lang->item_addon = "Lista de Addons";
|
||||
$lang->item_widget = "Lista de Widgets";
|
||||
$lang->item_layout = "Liasta de Diseños";
|
||||
|
||||
$lang->module_name = "Nombre del Módulo";
|
||||
$lang->addon_name = "Nombre de Addon";
|
||||
$lang->version = "Versión";
|
||||
$lang->author = "Autor";
|
||||
$lang->table_count = "Número de los tableros";
|
||||
$lang->installed_path = "Ruta de instalación";
|
||||
|
||||
$lang->cmd_shortcut_management = "Editar el Menú";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Sólo se permite el ingreso del administrador.';
|
||||
$lang->msg_manage_module_cannot_delete = 'No se puede eliminar acceso directo del Módulo, Addon, Diseño y Widget.';
|
||||
$lang->msg_default_act_is_null = 'No se puede registrar acceso directo por no estar determinada la acción del administrador predefinido.';
|
||||
|
||||
$lang->welcome_to_xe = 'Esta es la página del Administrador de XE';
|
||||
$lang->about_admin_page = "La página del Administrador aún está en desarrollo.";
|
||||
$lang->about_lang_env = "Para aplicar idioma seleccionado conjunto de los usuarios, como por defecto, haga clic en el botón [Guardar] el cambio.";
|
||||
|
||||
|
||||
$lang->xe_license = 'XE está bajo la Licencia de GPL';
|
||||
$lang->about_shortcut = 'Puede Eliminar los accesos directos de módulos, los cuales fueron registrados en la lista de módulos usados frecuentemente';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "Selección de Idioma";
|
||||
$lang->about_cmd_lang_select = "Seleccione el idioma es sólo el servicio";
|
||||
$lang->about_recompile_cache = "Inválido inútil archivo de caché puede organizar jyeotgeona";
|
||||
$lang->use_ssl = "Usar SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Desactivar",
|
||||
'optional' => "Opcionalmente el",
|
||||
'always' => "Utilice siempre el"
|
||||
);
|
||||
$lang->about_use_ssl = "Opcionalmente, la composición de suscripción / editar la información y el uso de SSL especificada en la acción es siempre el uso de SSL para todos los servicios que se utilizarán";
|
||||
$lang->server_ports = "Especifique el puerto del servidor";
|
||||
$lang->about_server_ports = "80 de HTTP, HTTPS al puerto 443 si se utiliza otro que se especifique lo contrario, el puerto va a necesitar.";
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용율이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @archivo es.lang.php
|
||||
* @autor zero (developers@xpressengine.com)
|
||||
* @sumario Paquete del idioma español (sólo los básicos)
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Administrador de Información';
|
||||
$lang->admin_index = 'Índice de la página admin';
|
||||
$lang->control_panel = 'Control panel';
|
||||
$lang->start_module = 'Módulo de inicio';
|
||||
$lang->about_start_module = 'Puede especificar el módulo de inicio por defecto.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
|
||||
$lang->newest_news = "Noticias recientes";
|
||||
|
||||
$lang->env_setup = "Configuración";
|
||||
$lang->default_url = "기본 URL";
|
||||
$lang->about_default_url = "XE sitio virtual (cafeXE, etc) tiene que introducir la URL base, al utilizar las capacidades de trabajo virtual y el tema de autenticación sayiteugan / módulos y las conexiones se realizan correctamente. (Ej: http:// dominio / ruta de instalación)";
|
||||
|
||||
$lang->env_information = "Información Ambiental";
|
||||
$lang->current_version = "Versión actual";
|
||||
$lang->current_path = "Instalado Sendero";
|
||||
$lang->released_version = "Versión más reciente";
|
||||
$lang->about_download_link = "La versión más reciente Zerboard XE está disponible.\nPara descargar la versión más reciente, haga clic en enlace de descarga.";
|
||||
|
||||
$lang->item_module = "Lista de Módulos";
|
||||
$lang->item_addon = "Lista de Addons";
|
||||
$lang->item_widget = "Lista de Widgets";
|
||||
$lang->item_layout = "Liasta de Diseños";
|
||||
|
||||
$lang->module_name = "Nombre del Módulo";
|
||||
$lang->addon_name = "Nombre de Addon";
|
||||
$lang->version = "Versión";
|
||||
$lang->author = "Autor";
|
||||
$lang->table_count = "Número de los tableros";
|
||||
$lang->installed_path = "Ruta de instalación";
|
||||
|
||||
$lang->cmd_shortcut_management = "Editar el Menú";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Sólo se permite el ingreso del administrador.';
|
||||
$lang->msg_manage_module_cannot_delete = 'No se puede eliminar acceso directo del Módulo, Addon, Diseño y Widget.';
|
||||
$lang->msg_default_act_is_null = 'No se puede registrar acceso directo por no estar determinada la acción del administrador predefinido.';
|
||||
|
||||
$lang->welcome_to_xe = 'Esta es la página del Administrador de XE';
|
||||
$lang->about_admin_page = "La página del Administrador aún está en desarrollo.";
|
||||
$lang->about_lang_env = "Para aplicar idioma seleccionado conjunto de los usuarios, como por defecto, haga clic en el botón [Guardar] el cambio.";
|
||||
|
||||
|
||||
$lang->xe_license = 'XE está bajo la Licencia de GPL';
|
||||
$lang->about_shortcut = 'Puede Eliminar los accesos directos de módulos, los cuales fueron registrados en la lista de módulos usados frecuentemente';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "Selección de Idioma";
|
||||
$lang->about_cmd_lang_select = "Seleccione el idioma es sólo el servicio";
|
||||
$lang->about_recompile_cache = "Inválido inútil archivo de caché puede organizar jyeotgeona";
|
||||
$lang->use_ssl = "Usar SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Desactivar",
|
||||
'optional' => "Opcionalmente el",
|
||||
'always' => "Utilice siempre el"
|
||||
);
|
||||
$lang->about_use_ssl = "Opcionalmente, la composición de suscripción / editar la información y el uso de SSL especificada en la acción es siempre el uso de SSL para todos los servicios que se utilizarán";
|
||||
$lang->server_ports = "Especifique el puerto del servidor";
|
||||
$lang->about_server_ports = "80 de HTTP, HTTPS al puerto 443 si se utiliza otro que se especifique lo contrario, el puerto va a necesitar.";
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용율이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,93 +1,93 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/admin/lang/fr.lang.php
|
||||
* @author zero (zero@nzeo.com) Traduit par Pierre Duvent(PierreDuvent@gamil.com)
|
||||
* @brief Paquet du langage en français pour le module d\'Administration
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Informations d\'Administrateur';
|
||||
$lang->admin_index = 'Page de l\'indice pour l\'Administrateur';
|
||||
$lang->control_panel = 'Control panel';
|
||||
$lang->start_module = 'Start Module';
|
||||
$lang->about_start_module = 'Vous pouvez spécifier début module par défaut.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Dernières Nouvelles";
|
||||
|
||||
$lang->env_setup = "Configuration";
|
||||
$lang->default_url = "기본 URL";
|
||||
$lang->about_default_url = "XE 가상 사이트(cafeXE등)의 기능을 사용할때 기본 URL을 입력해 주셔야 가상 사이트간 인증 연동이 되고 게시글/모듈등의 연결이 정상적으로 이루어집니다. (ex: http://도메인/설치경로)";
|
||||
|
||||
|
||||
$lang->env_information = "Informations de l'Environnement";
|
||||
$lang->current_version = "Version Courante";
|
||||
$lang->current_path = "Chemin Installé";
|
||||
$lang->released_version = "Dernière Version";
|
||||
$lang->about_download_link = "Nouvelle version est disponible.\nPour télécharger la dernière version, cliquez le lien.";
|
||||
|
||||
$lang->item_module = "Liste des Modules";
|
||||
$lang->item_addon = "Liste des Compagnons";
|
||||
$lang->item_widget = "Liste des Gadgets";
|
||||
$lang->item_layout = "Liste des Mises en Pages";
|
||||
|
||||
$lang->module_name = "Nom de Module";
|
||||
$lang->addon_name = "Nom de Compagnon";
|
||||
$lang->version = "Version";
|
||||
$lang->author = "Auteur";
|
||||
$lang->table_count = "Somme de Tables";
|
||||
$lang->installed_path = "Chemin Installé";
|
||||
|
||||
$lang->cmd_shortcut_management = "Editer le Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Administrateur seulement';
|
||||
$lang->msg_manage_module_cannot_delete = 'On ne peut pas supprimer les raccourcis pour les modules, les compagnons, les mises en page ou les gadgets';
|
||||
$lang->msg_default_act_is_null = 'on ne peut pas enrégistrer les raccourcis parce que les Actions Par Défaut de l\'Administrateur ne sont pas établies';
|
||||
|
||||
$lang->welcome_to_xe = 'Bienvenue sur la Page d\'Administration du XE';
|
||||
$lang->about_admin_page = "La Page d\'Administration est encore en train de développer,\nNous allons ajouter des contenus essentiels par accepter beauoup de bons suggestions pendant Béta Proche.";
|
||||
$lang->about_lang_env = "Vous pouvez fixer la Langue Par Défaut par cliquer le boutton [Conserver] au-dessous. Les visiteurs vont voir tous les menus et les messages en langue que vous choisissez.";
|
||||
|
||||
$lang->xe_license = 'XE s\'applique la GPL';
|
||||
$lang->about_shortcut = 'Vous pouvez supprimer les raccourcis pour les modules qui sont enrgistrés sur le liste des modules qui sont utilisés fréquemment';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "langue";
|
||||
$lang->about_cmd_lang_select = "La langue choisie seulement sera servie";
|
||||
$lang->about_recompile_cache = "Vous pouvez arranger les fichiers inutils ou les fichiers invalides d'antémémoire";
|
||||
$lang->use_ssl = "Utiliser SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Ne Pas utiliser",
|
||||
'optional' => "Optionnel",
|
||||
'always' => "Toujours"
|
||||
);
|
||||
$lang->about_use_ssl = "Si l'on choisit 'Optionnel' , on utilise protocole SSL seulement dans quelques services comme inscription ou modification. Si l'on choisit 'Toujours', on utilise protocole SSL dans tous les services.";
|
||||
$lang->server_ports = "déclarer le port de serveur";
|
||||
$lang->about_server_ports = "Si l'on ne veut pas utiliser le port 80 pour HTTP mais un autre port, ou bien, si l'on ne veut pas utiliser le port 443 pour HTTPS mais un autre port, on doit déclarer les ports.";
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용율이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file modules/admin/lang/fr.lang.php
|
||||
* @author NHN (developers@xpressengine.com) Traduit par Pierre Duvent(PierreDuvent@gamil.com)
|
||||
* @brief Paquet du langage en français pour le module d\'Administration
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Informations d\'Administrateur';
|
||||
$lang->admin_index = 'Page de l\'indice pour l\'Administrateur';
|
||||
$lang->control_panel = 'Control panel';
|
||||
$lang->start_module = 'Start Module';
|
||||
$lang->about_start_module = 'Vous pouvez spécifier début module par défaut.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Dernières Nouvelles";
|
||||
|
||||
$lang->env_setup = "Configuration";
|
||||
$lang->default_url = "기본 URL";
|
||||
$lang->about_default_url = "XE 가상 사이트(cafeXE등)의 기능을 사용할때 기본 URL을 입력해 주셔야 가상 사이트간 인증 연동이 되고 게시글/모듈등의 연결이 정상적으로 이루어집니다. (ex: http://도메인/설치경로)";
|
||||
|
||||
|
||||
$lang->env_information = "Informations de l'Environnement";
|
||||
$lang->current_version = "Version Courante";
|
||||
$lang->current_path = "Chemin Installé";
|
||||
$lang->released_version = "Dernière Version";
|
||||
$lang->about_download_link = "Nouvelle version est disponible.\nPour télécharger la dernière version, cliquez le lien.";
|
||||
|
||||
$lang->item_module = "Liste des Modules";
|
||||
$lang->item_addon = "Liste des Compagnons";
|
||||
$lang->item_widget = "Liste des Gadgets";
|
||||
$lang->item_layout = "Liste des Mises en Pages";
|
||||
|
||||
$lang->module_name = "Nom de Module";
|
||||
$lang->addon_name = "Nom de Compagnon";
|
||||
$lang->version = "Version";
|
||||
$lang->author = "Auteur";
|
||||
$lang->table_count = "Somme de Tables";
|
||||
$lang->installed_path = "Chemin Installé";
|
||||
|
||||
$lang->cmd_shortcut_management = "Editer le Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Administrateur seulement';
|
||||
$lang->msg_manage_module_cannot_delete = 'On ne peut pas supprimer les raccourcis pour les modules, les compagnons, les mises en page ou les gadgets';
|
||||
$lang->msg_default_act_is_null = 'on ne peut pas enrégistrer les raccourcis parce que les Actions Par Défaut de l\'Administrateur ne sont pas établies';
|
||||
|
||||
$lang->welcome_to_xe = 'Bienvenue sur la Page d\'Administration du XE';
|
||||
$lang->about_admin_page = "La Page d\'Administration est encore en train de développer,\nNous allons ajouter des contenus essentiels par accepter beauoup de bons suggestions pendant Béta Proche.";
|
||||
$lang->about_lang_env = "Vous pouvez fixer la Langue Par Défaut par cliquer le boutton [Conserver] au-dessous. Les visiteurs vont voir tous les menus et les messages en langue que vous choisissez.";
|
||||
|
||||
$lang->xe_license = 'XE s\'applique la GPL';
|
||||
$lang->about_shortcut = 'Vous pouvez supprimer les raccourcis pour les modules qui sont enrgistrés sur le liste des modules qui sont utilisés fréquemment';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "langue";
|
||||
$lang->about_cmd_lang_select = "La langue choisie seulement sera servie";
|
||||
$lang->about_recompile_cache = "Vous pouvez arranger les fichiers inutils ou les fichiers invalides d'antémémoire";
|
||||
$lang->use_ssl = "Utiliser SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Ne Pas utiliser",
|
||||
'optional' => "Optionnel",
|
||||
'always' => "Toujours"
|
||||
);
|
||||
$lang->about_use_ssl = "Si l'on choisit 'Optionnel' , on utilise protocole SSL seulement dans quelques services comme inscription ou modification. Si l'on choisit 'Toujours', on utilise protocole SSL dans tous les services.";
|
||||
$lang->server_ports = "déclarer le port de serveur";
|
||||
$lang->about_server_ports = "Si l'on ne veut pas utiliser le port 80 pour HTTP mais un autre port, ou bien, si l'on ne veut pas utiliser le port 443 pour HTTPS mais un autre port, on doit déclarer les ports.";
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용율이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,92 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/admin/lang/jp.lang.php
|
||||
* @author zero (zero@nzeo.com) 翻訳:RisaPapa、ミニミ // 細かい修正:liahona
|
||||
* @brief 日本語言語パッケージ(基本的な内容のみ)
|
||||
**/
|
||||
|
||||
$lang->admin_info = '管理者情報';
|
||||
$lang->admin_index = '管理者トップページ';
|
||||
$lang->control_panel = 'コントロールパネル';
|
||||
$lang->start_module = '初期起動モジュール';
|
||||
$lang->about_start_module = 'デフォルトで起動するモジュールを指定することができます。';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'サービス管理',
|
||||
'member' => '会員管理',
|
||||
'content' => 'コンテンツ管理',
|
||||
'statistics' => '統計確認',
|
||||
'construction' => 'サイト設定',
|
||||
'utility' => '機能設定',
|
||||
'interlock' => '連動設定',
|
||||
'accessory' => '付加機能設定',
|
||||
'migration' => 'データ管理/復元',
|
||||
'system' => 'システム管理',
|
||||
);
|
||||
|
||||
$lang->newest_news = '最新ニュース';
|
||||
|
||||
$lang->env_setup = '環境設定';
|
||||
$lang->default_url = '基本URL';
|
||||
$lang->about_default_url = '複数のバーチャル(Virtual)サイトを運営する場合、どちらからログインしてもバーチャル(Virtual)サイトの間でログイン情報を維持出来るようにするためには、基本になるサイトでのXEをインストールしたurlを登録して下さい。 (例: http://ドメイン/インストールパス)';
|
||||
|
||||
|
||||
$lang->env_information = '環境情報';
|
||||
$lang->current_version = 'インストール済みバージョン';
|
||||
$lang->current_path = 'インストールパス';
|
||||
$lang->released_version = '最新バージョン';
|
||||
$lang->about_download_link = "新しいバージョンが配布されています。\n「ダウンロード」リンクをクリックするとダウンロード出来ます。";
|
||||
|
||||
$lang->item_module = 'モジュールリスト';
|
||||
$lang->item_addon = 'アドオンリスト';
|
||||
$lang->item_widget = 'ウィジェットリスト';
|
||||
$lang->item_layout = 'レイアウトリスト';
|
||||
|
||||
$lang->module_name = 'モジュール名';
|
||||
$lang->addon_name = 'アドオン名';
|
||||
$lang->version = 'バージョン';
|
||||
$lang->author = '制作者';
|
||||
$lang->table_count = 'テーブル数';
|
||||
$lang->installed_path = 'インストールパス';
|
||||
|
||||
$lang->cmd_shortcut_management = 'メニューの編集';
|
||||
|
||||
$lang->msg_is_not_administrator = '管理者のみアクセス出来ます';
|
||||
$lang->msg_manage_module_cannot_delete = 'モジュール、アドオン、ウィジェットのショットカットは削除出来ません。';
|
||||
$lang->msg_default_act_is_null = 'デフォルトの管理者のアクションが指定されていないため、ショットカットを登録することが出来ません。';
|
||||
|
||||
$lang->welcome_to_xe = 'XEの管理者ページです。';
|
||||
$lang->about_lang_env = '初めてサイトに訪問したユーザーに対し、上記の選択した言語でサイトを表示させるためには、必ず下記の「保存」ボタンをクリックして適用して下さい。';
|
||||
|
||||
$lang->xe_license = 'XEのライセンスはGPLです。';
|
||||
$lang->about_shortcut = 'よく使用するモジュールに登録されたショートカットは削除出来ます。';
|
||||
|
||||
$lang->yesterday = '昨日';
|
||||
$lang->today = '今日';
|
||||
|
||||
$lang->cmd_lang_select = '言語選択';
|
||||
$lang->about_cmd_lang_select = '選択した言語だけでサービスを行います。';
|
||||
$lang->about_recompile_cache = '要らないかごみのキャッシューファイルを整理します。';
|
||||
$lang->use_ssl = 'SSL環境設定';
|
||||
$lang->ssl_options = array(
|
||||
'none' => '使わない',
|
||||
'optional' => '部分的に使う',
|
||||
'always' => '常に使う'
|
||||
);
|
||||
$lang->about_use_ssl = '「部分的に使う場合」は「会員登録/会員情報変更」など特定のactionでSSLを利用する場合、「常に使う」は全てのサービスがSSLを使う場合に選択します。';
|
||||
$lang->server_ports = 'サーバーポート指定';
|
||||
$lang->about_server_ports = '一般的に使われているHTTPの80、HTTPSの443以外の他のポートを使うために、ポートを指定して下さい。';
|
||||
$lang->use_db_session = 'DBで認証セッション管理';
|
||||
$lang->about_db_session = '認証の時に使われるPHPセッションをDBで使う機能です。<br />ウェブサーバーの負荷が低いサイトではこの機能をオフにすることでむしろサイトのレスポンスが向上されることもあります。<br />また、この機能をオンにすると、「現在ログイン中の会員」の機能が不可になります。';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'イージーインストール';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file modules/admin/lang/jp.lang.php
|
||||
* @author NHN (developers@xpressengine.com) 翻訳:RisaPapa、ミニミ // 細かい修正:liahona
|
||||
* @brief 日本語言語パッケージ(基本的な内容のみ)
|
||||
**/
|
||||
|
||||
$lang->admin_info = '管理者情報';
|
||||
$lang->admin_index = '管理者トップページ';
|
||||
$lang->control_panel = 'コントロールパネル';
|
||||
$lang->start_module = '初期起動モジュール';
|
||||
$lang->about_start_module = 'デフォルトで起動するモジュールを指定することができます。';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'サービス管理',
|
||||
'member' => '会員管理',
|
||||
'content' => 'コンテンツ管理',
|
||||
'statistics' => '統計確認',
|
||||
'construction' => 'サイト設定',
|
||||
'utility' => '機能設定',
|
||||
'interlock' => '連動設定',
|
||||
'accessory' => '付加機能設定',
|
||||
'migration' => 'データ管理/復元',
|
||||
'system' => 'システム管理',
|
||||
);
|
||||
|
||||
$lang->newest_news = '最新ニュース';
|
||||
|
||||
$lang->env_setup = '環境設定';
|
||||
$lang->default_url = '基本URL';
|
||||
$lang->about_default_url = '複数のバーチャル(Virtual)サイトを運営する場合、どちらからログインしてもバーチャル(Virtual)サイトの間でログイン情報を維持出来るようにするためには、基本になるサイトでのXEをインストールしたurlを登録して下さい。 (例: http://ドメイン/インストールパス)';
|
||||
|
||||
|
||||
$lang->env_information = '環境情報';
|
||||
$lang->current_version = 'インストール済みバージョン';
|
||||
$lang->current_path = 'インストールパス';
|
||||
$lang->released_version = '最新バージョン';
|
||||
$lang->about_download_link = "新しいバージョンが配布されています。\n「ダウンロード」リンクをクリックするとダウンロード出来ます。";
|
||||
|
||||
$lang->item_module = 'モジュールリスト';
|
||||
$lang->item_addon = 'アドオンリスト';
|
||||
$lang->item_widget = 'ウィジェットリスト';
|
||||
$lang->item_layout = 'レイアウトリスト';
|
||||
|
||||
$lang->module_name = 'モジュール名';
|
||||
$lang->addon_name = 'アドオン名';
|
||||
$lang->version = 'バージョン';
|
||||
$lang->author = '制作者';
|
||||
$lang->table_count = 'テーブル数';
|
||||
$lang->installed_path = 'インストールパス';
|
||||
|
||||
$lang->cmd_shortcut_management = 'メニューの編集';
|
||||
|
||||
$lang->msg_is_not_administrator = '管理者のみアクセス出来ます';
|
||||
$lang->msg_manage_module_cannot_delete = 'モジュール、アドオン、ウィジェットのショットカットは削除出来ません。';
|
||||
$lang->msg_default_act_is_null = 'デフォルトの管理者のアクションが指定されていないため、ショットカットを登録することが出来ません。';
|
||||
|
||||
$lang->welcome_to_xe = 'XEの管理者ページです。';
|
||||
$lang->about_lang_env = '初めてサイトに訪問したユーザーに対し、上記の選択した言語でサイトを表示させるためには、必ず下記の「保存」ボタンをクリックして適用して下さい。';
|
||||
|
||||
$lang->xe_license = 'XEのライセンスはGPLです。';
|
||||
$lang->about_shortcut = 'よく使用するモジュールに登録されたショートカットは削除出来ます。';
|
||||
|
||||
$lang->yesterday = '昨日';
|
||||
$lang->today = '今日';
|
||||
|
||||
$lang->cmd_lang_select = '言語選択';
|
||||
$lang->about_cmd_lang_select = '選択した言語だけでサービスを行います。';
|
||||
$lang->about_recompile_cache = '要らないかごみのキャッシューファイルを整理します。';
|
||||
$lang->use_ssl = 'SSL環境設定';
|
||||
$lang->ssl_options = array(
|
||||
'none' => '使わない',
|
||||
'optional' => '部分的に使う',
|
||||
'always' => '常に使う'
|
||||
);
|
||||
$lang->about_use_ssl = '「部分的に使う場合」は「会員登録/会員情報変更」など特定のactionでSSLを利用する場合、「常に使う」は全てのサービスがSSLを使う場合に選択します。';
|
||||
$lang->server_ports = 'サーバーポート指定';
|
||||
$lang->about_server_ports = '一般的に使われているHTTPの80、HTTPSの443以外の他のポートを使うために、ポートを指定して下さい。';
|
||||
$lang->use_db_session = 'DBで認証セッション管理';
|
||||
$lang->about_db_session = '認証の時に使われるPHPセッションをDBで使う機能です。<br />ウェブサーバーの負荷が低いサイトではこの機能をオフにすることでむしろサイトのレスポンスが向上されることもあります。<br />また、この機能をオンにすると、「現在ログイン中の会員」の機能が不可になります。';
|
||||
$lang->sftp = "Use SFTP";
|
||||
$lang->ftp_get_list = "Get List";
|
||||
$lang->ftp_remove_info = 'Remove FTP Info.';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'イージーインストール';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,93 +1,93 @@
|
|||
<?php
|
||||
/**
|
||||
* @file ko.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief 한국어 언어팩 (기본적인 내용만 수록)
|
||||
**/
|
||||
|
||||
$lang->admin_info = '관리자 정보';
|
||||
$lang->admin_index = '관리자 초기 페이지';
|
||||
$lang->control_panel = '제어판';
|
||||
$lang->start_module = '시작 모듈';
|
||||
$lang->about_start_module = '사이트 접속 시 기본으로 호출될 모듈을 지정할 수 있습니다.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => '서비스 관리',
|
||||
'member' => '회원 관리',
|
||||
'content' => '정보 관리',
|
||||
'statistics' => '통계 열람',
|
||||
'construction' => '사이트 설정',
|
||||
'utility' => '기능 설정',
|
||||
'interlock' => '연동 설정',
|
||||
'accessory' => '부가 기능 설정',
|
||||
'migration' => '데이터 관리/복원',
|
||||
'system' => '시스템 관리',
|
||||
);
|
||||
|
||||
$lang->newest_news = '최신 소식';
|
||||
|
||||
$lang->env_setup = '환경 설정';
|
||||
$lang->default_url = '기본 URL';
|
||||
$lang->about_default_url = 'XE 가상 사이트(cafeXE 등)의 기능을 사용할 때 기본 URL을 입력하셔야 가상 사이트간 인증 연동이 되고 게시글, 모듈 등의 연결이 정상적으로 이루어집니다. (예: http://도메인/설치경로)';
|
||||
|
||||
|
||||
$lang->env_information = '환경 정보';
|
||||
$lang->current_version = '설치된 버전';
|
||||
$lang->current_path = '설치된 경로';
|
||||
$lang->released_version = '최신 버전';
|
||||
$lang->about_download_link = "최신 버전이 배포되었습니다.\ndownload 링크를 클릭하시면 다운 받으실 수 있습니다.";
|
||||
|
||||
$lang->item_module = '모듈 목록';
|
||||
$lang->item_addon = '애드온 목록';
|
||||
$lang->item_widget = '위젯 목록';
|
||||
$lang->item_layout = '레이아웃 목록';
|
||||
|
||||
$lang->module_name = '모듈 이름';
|
||||
$lang->addon_name = '애드온 이름';
|
||||
$lang->version = '버전';
|
||||
$lang->author = '제작자';
|
||||
$lang->table_count = '테이블 수';
|
||||
$lang->installed_path = '설치 경로';
|
||||
|
||||
$lang->cmd_shortcut_management = '메뉴 편집하기';
|
||||
|
||||
$lang->msg_is_not_administrator = '관리자만 접속이 가능합니다.';
|
||||
$lang->msg_manage_module_cannot_delete = '모듈, 애드온, 레이아웃, 위젯 모듈의 바로가기는 삭제 불가능합니다.';
|
||||
$lang->msg_default_act_is_null = '기본 관리자 Action이 지정되어 있지 않아 바로가기 등록을 할 수 없습니다.';
|
||||
|
||||
$lang->welcome_to_xe = 'XE 관리자';
|
||||
$lang->about_lang_env = '처음 방문하는 사용자들의 언어 설정을 동일하게 하려면, 원하는 언어로 변경 후 아래 [저장] 버튼을 클릭하시면 됩니다.';
|
||||
|
||||
$lang->xe_license = 'XE는 GPL을 따릅니다.';
|
||||
$lang->about_shortcut = '자주 사용하는 모듈에 등록된 모듈의 바로가기를 삭제할 수 있습니다.';
|
||||
|
||||
$lang->yesterday = '어제';
|
||||
$lang->today = '오늘';
|
||||
|
||||
$lang->cmd_lang_select = '언어선택';
|
||||
$lang->about_cmd_lang_select = '선택된 언어들만 서비스 됩니다.';
|
||||
$lang->about_recompile_cache = '쓸모 없어졌거나 잘못된 캐시파일들을 정리할 수 있습니다.';
|
||||
$lang->use_ssl = 'SSL 사용';
|
||||
$lang->ssl_options = array(
|
||||
'none' => '사용 안함',
|
||||
'optional' => '선택적으로',
|
||||
'always' => '항상 사용'
|
||||
);
|
||||
$lang->about_use_ssl = '\'선택적으로\'는 회원가입, 정보수정 등의 지정된 action에서 SSL을 사용하고 \'항상 사용\'은 모든 서비스에 SSL을 사용 합니다.';
|
||||
$lang->server_ports = '서버포트지정';
|
||||
$lang->about_server_ports = 'HTTP는 80, HTTPS는 443 이 아닌, 다른 포트를 사용할 경우에 포트를 지정해 주어야 합니다.';
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증 시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용률이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다.<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = 'SFTP 사용';
|
||||
$lang->ftp_get_list = '목록 가져오기';
|
||||
$lang->ftp_remove_info = 'FTP 정보 삭제';
|
||||
$lang->msg_ftp_invalid_path = 'FTP Path를 읽을 수 없습니다.';
|
||||
$lang->msg_self_restart_cache_engine = 'Memcached 또는 캐쉬데몬을 재시작 해주세요.';
|
||||
$lang->mobile_view = '모바일 뷰 사용';
|
||||
$lang->about_mobile_view = '스마트폰 등을 이용하여 접속할 때 모바일 화면에 최적화된 레이아웃을 이용하도록 합니다.';
|
||||
|
||||
$lang->autoinstall = '쉬운 설치';
|
||||
|
||||
$lang->last_week = '지난 주';
|
||||
$lang->this_week = '이번 주';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file ko.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 한국어 언어팩 (기본적인 내용만 수록)
|
||||
**/
|
||||
|
||||
$lang->admin_info = '관리자 정보';
|
||||
$lang->admin_index = '관리자 초기 페이지';
|
||||
$lang->control_panel = '제어판';
|
||||
$lang->start_module = '시작 모듈';
|
||||
$lang->about_start_module = '사이트 접속 시 기본으로 호출될 모듈을 지정할 수 있습니다.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => '서비스 관리',
|
||||
'member' => '회원 관리',
|
||||
'content' => '정보 관리',
|
||||
'statistics' => '통계 열람',
|
||||
'construction' => '사이트 설정',
|
||||
'utility' => '기능 설정',
|
||||
'interlock' => '연동 설정',
|
||||
'accessory' => '부가 기능 설정',
|
||||
'migration' => '데이터 관리/복원',
|
||||
'system' => '시스템 관리',
|
||||
);
|
||||
|
||||
$lang->newest_news = '최신 소식';
|
||||
|
||||
$lang->env_setup = '환경 설정';
|
||||
$lang->default_url = '기본 URL';
|
||||
$lang->about_default_url = 'XE 가상 사이트(cafeXE 등)의 기능을 사용할 때 기본 URL을 입력하셔야 가상 사이트간 인증 연동이 되고 게시글, 모듈 등의 연결이 정상적으로 이루어집니다. (예: http://도메인/설치경로)';
|
||||
|
||||
|
||||
$lang->env_information = '환경 정보';
|
||||
$lang->current_version = '설치된 버전';
|
||||
$lang->current_path = '설치된 경로';
|
||||
$lang->released_version = '최신 버전';
|
||||
$lang->about_download_link = "최신 버전이 배포되었습니다.\ndownload 링크를 클릭하시면 다운 받으실 수 있습니다.";
|
||||
|
||||
$lang->item_module = '모듈 목록';
|
||||
$lang->item_addon = '애드온 목록';
|
||||
$lang->item_widget = '위젯 목록';
|
||||
$lang->item_layout = '레이아웃 목록';
|
||||
|
||||
$lang->module_name = '모듈 이름';
|
||||
$lang->addon_name = '애드온 이름';
|
||||
$lang->version = '버전';
|
||||
$lang->author = '제작자';
|
||||
$lang->table_count = '테이블 수';
|
||||
$lang->installed_path = '설치 경로';
|
||||
|
||||
$lang->cmd_shortcut_management = '메뉴 편집하기';
|
||||
|
||||
$lang->msg_is_not_administrator = '관리자만 접속이 가능합니다.';
|
||||
$lang->msg_manage_module_cannot_delete = '모듈, 애드온, 레이아웃, 위젯 모듈의 바로가기는 삭제 불가능합니다.';
|
||||
$lang->msg_default_act_is_null = '기본 관리자 Action이 지정되어 있지 않아 바로가기 등록을 할 수 없습니다.';
|
||||
|
||||
$lang->welcome_to_xe = 'XE 관리자';
|
||||
$lang->about_lang_env = '처음 방문하는 사용자들의 언어 설정을 동일하게 하려면, 원하는 언어로 변경 후 아래 [저장] 버튼을 클릭하시면 됩니다.';
|
||||
|
||||
$lang->xe_license = 'XE는 GPL을 따릅니다.';
|
||||
$lang->about_shortcut = '자주 사용하는 모듈에 등록된 모듈의 바로가기를 삭제할 수 있습니다.';
|
||||
|
||||
$lang->yesterday = '어제';
|
||||
$lang->today = '오늘';
|
||||
|
||||
$lang->cmd_lang_select = '언어선택';
|
||||
$lang->about_cmd_lang_select = '선택된 언어들만 서비스 됩니다.';
|
||||
$lang->about_recompile_cache = '쓸모 없어졌거나 잘못된 캐시파일들을 정리할 수 있습니다.';
|
||||
$lang->use_ssl = 'SSL 사용';
|
||||
$lang->ssl_options = array(
|
||||
'none' => '사용 안함',
|
||||
'optional' => '선택적으로',
|
||||
'always' => '항상 사용'
|
||||
);
|
||||
$lang->about_use_ssl = '\'선택적으로\'는 회원가입, 정보수정 등의 지정된 action에서 SSL을 사용하고 \'항상 사용\'은 모든 서비스에 SSL을 사용 합니다.';
|
||||
$lang->server_ports = '서버포트지정';
|
||||
$lang->about_server_ports = 'HTTP는 80, HTTPS는 443 이 아닌, 다른 포트를 사용할 경우에 포트를 지정해 주어야 합니다.';
|
||||
$lang->use_db_session = '인증 세션 DB 사용';
|
||||
$lang->about_db_session = '인증 시 사용되는 PHP 세션을 DB로 사용하는 기능입니다.<br/>웹서버의 사용률이 낮은 사이트에서는 비활성화시 사이트 응답 속도가 향상될 수 있습니다.<br/>단 현재 접속자를 구할 수 없어 관련된 기능을 사용할 수 없게 됩니다.';
|
||||
$lang->sftp = 'SFTP 사용';
|
||||
$lang->ftp_get_list = '목록 가져오기';
|
||||
$lang->ftp_remove_info = 'FTP 정보 삭제';
|
||||
$lang->msg_ftp_invalid_path = 'FTP Path를 읽을 수 없습니다.';
|
||||
$lang->msg_self_restart_cache_engine = 'Memcached 또는 캐쉬데몬을 재시작 해주세요.';
|
||||
$lang->mobile_view = '모바일 뷰 사용';
|
||||
$lang->about_mobile_view = '스마트폰 등을 이용하여 접속할 때 모바일 화면에 최적화된 레이아웃을 이용하도록 합니다.';
|
||||
|
||||
$lang->autoinstall = '쉬운 설치';
|
||||
|
||||
$lang->last_week = '지난 주';
|
||||
$lang->this_week = '이번 주';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,91 +1,91 @@
|
|||
<?php
|
||||
/**
|
||||
* @file ru.lang.php
|
||||
* @author zero <zero@nzeo.com> | translation by Maslennikov Evgeny aka X-[Vr]bL1s5 | e-mail: x-bliss[a]tut.by; ICQ: 225035467;
|
||||
* @brief Russian basic language pack for XE
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Информация администратора';
|
||||
$lang->admin_index = 'Индексная страница администратора';
|
||||
$lang->control_panel = 'Контрольная панель';
|
||||
$lang->start_module = 'Стартовый модуль';
|
||||
$lang->about_start_module = 'Вы можете указать модуль запуска по умолчанию.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = 'Последние новости';
|
||||
|
||||
$lang->env_setup = 'Настройка';
|
||||
$lang->default_url = 'Основной URL';
|
||||
$lang->about_default_url = 'If you use a virtual site feature (e.g., cafeXE), input default URL (parent-sites address), then SSO would be enabled, thus connection to documents/modules works properly';
|
||||
|
||||
$lang->env_information = 'Информация окружения';
|
||||
$lang->current_version = 'Текущая версия';
|
||||
$lang->current_path = 'Текущий путь';
|
||||
$lang->released_version = 'Последняя версия';
|
||||
$lang->about_download_link = 'Новая версия XE доступна.\nЧтобы скачать последнюю версию, нажмите ссылку закачки';
|
||||
|
||||
$lang->item_module = 'Список модулей';
|
||||
$lang->item_addon = 'Список аддонов';
|
||||
$lang->item_widget = 'Список виджетов';
|
||||
$lang->item_layout = 'Список лейаутов';
|
||||
|
||||
$lang->module_name = 'Имя модуля';
|
||||
$lang->addon_name = 'Имя аддона';
|
||||
$lang->version = 'Версия';
|
||||
$lang->author = 'Разработчик';
|
||||
$lang->table_count = 'Номер таблицы';
|
||||
$lang->installed_path = 'Путь установки';
|
||||
|
||||
$lang->cmd_shortcut_management = 'Редактировать меню';
|
||||
|
||||
$lang->msg_is_not_administrator = 'Только для администраторов!';
|
||||
$lang->msg_manage_module_cannot_delete = 'Ярлыки модулей, аддонов, лейаутов, виджетов не могут быть удалены';
|
||||
$lang->msg_default_act_is_null = 'Ярлык не может быть зарегистрирован, поскольку стандартное административное действие не установлено';
|
||||
|
||||
$lang->welcome_to_xe = 'Добро пожаловать на страницу администратора XE';
|
||||
$lang->about_lang_env = 'Чтобы применить выбранный язык для пользователей как страндартный, нажмите кнопку Сохранить [Save] после изменения';
|
||||
|
||||
$lang->xe_license = 'XE подчиняется Стандартной Общественной Лицензии GPL';
|
||||
$lang->about_shortcut = 'Вы можете удалить ярлыки модулей, зарегистрированных в списке часто используемых модулей';
|
||||
|
||||
$lang->yesterday = 'Вчера';
|
||||
$lang->today = 'Сегодня';
|
||||
|
||||
$lang->cmd_lang_select = 'Выбор языка';
|
||||
$lang->about_cmd_lang_select = 'Возможно использование только выбранных языков';
|
||||
$lang->about_recompile_cache = 'You can delete useless or invalid cache files';
|
||||
$lang->use_ssl = 'Использовать SSL';
|
||||
$lang->ssl_options = array(
|
||||
'none' => 'Никогда',
|
||||
'optional' => 'На выбор',
|
||||
'always' => 'Всегда'
|
||||
);
|
||||
$lang->about_use_ssl = 'In case of "Optional", SSL will be used for actions such as signing up / changing information. And for "Always", your site will be served only via https';
|
||||
$lang->server_ports = 'Server Port';
|
||||
$lang->about_server_ports = 'If your web server does not use 80 for HTTP or 443 for HTTPS port, you should specify server ports';
|
||||
$lang->use_db_session = 'Use Session DB';
|
||||
$lang->about_db_session = 'It will use php session with DB when authenticating.<br/>Websites with infrequent usage of web server may expect faster response when this function is disabled.<br/>However session DB will make it unable to get current users, so you cannot use related functions';
|
||||
$lang->sftp = 'Use SFTP';
|
||||
$lang->ftp_get_list = 'Get List';
|
||||
$lang->ftp_remove_info = 'Remove FTP Info';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file ru.lang.php
|
||||
* @author NHN (developers@xpressengine.com) | translation by Maslennikov Evgeny aka X-[Vr]bL1s5 | e-mail: x-bliss[a]tut.by; ICQ: 225035467;
|
||||
* @brief Russian basic language pack for XE
|
||||
**/
|
||||
|
||||
$lang->admin_info = 'Информация администратора';
|
||||
$lang->admin_index = 'Индексная страница администратора';
|
||||
$lang->control_panel = 'Контрольная панель';
|
||||
$lang->start_module = 'Стартовый модуль';
|
||||
$lang->about_start_module = 'Вы можете указать модуль запуска по умолчанию.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Service Setting',
|
||||
'member' => 'Member Setting',
|
||||
'content' => 'Content Setting',
|
||||
'statistics' => 'Statistics',
|
||||
'construction' => 'Construction',
|
||||
'utility' => 'Utility Setting',
|
||||
'interlock' => 'Interlock Setting',
|
||||
'accessory' => 'Accessories',
|
||||
'migration' => 'Data Migration',
|
||||
'system' => 'System Setting',
|
||||
);
|
||||
|
||||
$lang->newest_news = 'Последние новости';
|
||||
|
||||
$lang->env_setup = 'Настройка';
|
||||
$lang->default_url = 'Основной URL';
|
||||
$lang->about_default_url = 'If you use a virtual site feature (e.g., cafeXE), input default URL (parent-sites address), then SSO would be enabled, thus connection to documents/modules works properly';
|
||||
|
||||
$lang->env_information = 'Информация окружения';
|
||||
$lang->current_version = 'Текущая версия';
|
||||
$lang->current_path = 'Текущий путь';
|
||||
$lang->released_version = 'Последняя версия';
|
||||
$lang->about_download_link = 'Новая версия XE доступна.\nЧтобы скачать последнюю версию, нажмите ссылку закачки';
|
||||
|
||||
$lang->item_module = 'Список модулей';
|
||||
$lang->item_addon = 'Список аддонов';
|
||||
$lang->item_widget = 'Список виджетов';
|
||||
$lang->item_layout = 'Список лейаутов';
|
||||
|
||||
$lang->module_name = 'Имя модуля';
|
||||
$lang->addon_name = 'Имя аддона';
|
||||
$lang->version = 'Версия';
|
||||
$lang->author = 'Разработчик';
|
||||
$lang->table_count = 'Номер таблицы';
|
||||
$lang->installed_path = 'Путь установки';
|
||||
|
||||
$lang->cmd_shortcut_management = 'Редактировать меню';
|
||||
|
||||
$lang->msg_is_not_administrator = 'Только для администраторов!';
|
||||
$lang->msg_manage_module_cannot_delete = 'Ярлыки модулей, аддонов, лейаутов, виджетов не могут быть удалены';
|
||||
$lang->msg_default_act_is_null = 'Ярлык не может быть зарегистрирован, поскольку стандартное административное действие не установлено';
|
||||
|
||||
$lang->welcome_to_xe = 'Добро пожаловать на страницу администратора XE';
|
||||
$lang->about_lang_env = 'Чтобы применить выбранный язык для пользователей как страндартный, нажмите кнопку Сохранить [Save] после изменения';
|
||||
|
||||
$lang->xe_license = 'XE подчиняется Стандартной Общественной Лицензии GPL';
|
||||
$lang->about_shortcut = 'Вы можете удалить ярлыки модулей, зарегистрированных в списке часто используемых модулей';
|
||||
|
||||
$lang->yesterday = 'Вчера';
|
||||
$lang->today = 'Сегодня';
|
||||
|
||||
$lang->cmd_lang_select = 'Выбор языка';
|
||||
$lang->about_cmd_lang_select = 'Возможно использование только выбранных языков';
|
||||
$lang->about_recompile_cache = 'You can delete useless or invalid cache files';
|
||||
$lang->use_ssl = 'Использовать SSL';
|
||||
$lang->ssl_options = array(
|
||||
'none' => 'Никогда',
|
||||
'optional' => 'На выбор',
|
||||
'always' => 'Всегда'
|
||||
);
|
||||
$lang->about_use_ssl = 'In case of "Optional", SSL will be used for actions such as signing up / changing information. And for "Always", your site will be served only via https';
|
||||
$lang->server_ports = 'Server Port';
|
||||
$lang->about_server_ports = 'If your web server does not use 80 for HTTP or 443 for HTTPS port, you should specify server ports';
|
||||
$lang->use_db_session = 'Use Session DB';
|
||||
$lang->about_db_session = 'It will use php session with DB when authenticating.<br/>Websites with infrequent usage of web server may expect faster response when this function is disabled.<br/>However session DB will make it unable to get current users, so you cannot use related functions';
|
||||
$lang->sftp = 'Use SFTP';
|
||||
$lang->ftp_get_list = 'Get List';
|
||||
$lang->ftp_remove_info = 'Remove FTP Info';
|
||||
$lang->msg_ftp_invalid_path = 'Failed to read the specified FTP Path.';
|
||||
$lang->msg_self_restart_cache_engine = 'Please restart Memcached or cache daemon.';
|
||||
$lang->mobile_view = 'Use Mobile View';
|
||||
$lang->about_mobile_view = 'If accessing with a smartphone, display content with mobile layout.';
|
||||
$lang->autoinstall = 'EasyInstall';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,95 +1,95 @@
|
|||
<?php
|
||||
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
░░ * @File : common/lang/vi.lang.php ░░
|
||||
░░ * @Author : zero (zero@nzeo.com) ░░
|
||||
░░ * @Trans : DucDuy Dao (webmaster@xpressengine.vn) ░░
|
||||
░░ * @Website: http://xpressengine.vn ░░
|
||||
░░ * @Brief : Vietnamese Language Pack (Only basic words are included here) ░░
|
||||
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
*/
|
||||
|
||||
$lang->admin_info = 'Thông tin Administrator';
|
||||
$lang->admin_index = 'Trang chủ Admin';
|
||||
$lang->control_panel = 'Bảng điều khiển';
|
||||
$lang->start_module = 'Module trang chủ';
|
||||
$lang->about_start_module = 'Bạn có thể chọn một Module và đặt là trang chủ của Website.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Thiết lập dịch vụ',
|
||||
'member' => 'Thiết lập thành viên',
|
||||
'content' => 'Thiết lập nội dung',
|
||||
'statistics' => 'Thống kê',
|
||||
'construction' => 'Xây dựng giao diện',
|
||||
'utility' => 'Thiết lập tiện ích',
|
||||
'interlock' => 'Tiện ích nâng cao',
|
||||
'accessory' => 'Dịch vụ phụ',
|
||||
'migration' => 'Chuyển đổi dữ liệu',
|
||||
'system' => 'Thiết lập hệ thống',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Tin mới nhất";
|
||||
|
||||
$lang->env_setup = "Thiết lập ";
|
||||
$lang->default_url = "URL mặc định";
|
||||
$lang->about_default_url = "Nếu bạn sử dụng tính năng trang Web ảo (Ví dụ: PlanetXE, cafeXE), hãy chọn URL mặc định (địa chỉ trang chủ), khi khi kích hoạt SSO với thư mục hay Module làm việc.";
|
||||
|
||||
$lang->env_information = "Thông tin";
|
||||
$lang->current_version = "Phiên bản";
|
||||
$lang->current_path = "Thư mục cài đặt";
|
||||
$lang->released_version = "Phiên bản mới nhất";
|
||||
$lang->about_download_link = "Đã có phiên bản mới nhất của XE.\n Hãy bấm vào Link để Download.";
|
||||
|
||||
$lang->item_module = "Danh sách Module";
|
||||
$lang->item_addon = "Danh sách Addon";
|
||||
$lang->item_widget = "Danh sách Widget";
|
||||
$lang->item_layout = "Danh sách Layout";
|
||||
|
||||
$lang->module_name = "Tên Module";
|
||||
$lang->addon_name = "Tên Addon";
|
||||
$lang->version = "Phiên bản";
|
||||
$lang->author = "Thiết kế";
|
||||
$lang->table_count = "Table";
|
||||
$lang->installed_path = "Thư mục đã cài đặt";
|
||||
|
||||
$lang->cmd_shortcut_management = "Sửa Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Dành riêng Administrator';
|
||||
$lang->msg_manage_module_cannot_delete = 'Không thể xóa những phím tắt của Module, Addon, Layout, Widget.';
|
||||
$lang->msg_default_act_is_null = 'Phím tắt đã không được tạo, bởi vì bạn không được đặt quyền là quản lý toàn diện.';
|
||||
|
||||
$lang->welcome_to_xe = 'Chào mừng bạn đến với trang quản lý của XE!';
|
||||
$lang->about_admin_page = "Trang Admin này vẫn đang được phát triển,\n Chúng tôi sẽ thêm vào những nội dung chủ yếu từ những ý kiến của người sử dụng.";
|
||||
$lang->about_lang_env = "Để hiển thị ngôn ngữ đã chọn là mặc định. Hãy bấm [Lưu] phía dưới để lưu lại.";
|
||||
|
||||
$lang->xe_license = 'XE sử dụng giấy phép GPL';
|
||||
$lang->about_shortcut = 'Bạn có thể loại bỏ phím tắt của Module được sử dụng thường xuyên trên danh sách.';
|
||||
|
||||
$lang->yesterday = "Hôm qua";
|
||||
$lang->today = "Hôm nay";
|
||||
|
||||
$lang->cmd_lang_select = "Ngôn ngữ";
|
||||
$lang->about_cmd_lang_select = "Chỉ chọn được những ngôn ngữ có sẵn.";
|
||||
$lang->about_recompile_cache = "Bạn có thể sắp xếp lại File Cache cho những việc đã làm hoặc bị lỗi.";
|
||||
$lang->use_ssl = "Sử dụng SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Không sử dụng",
|
||||
'optional' => "Tùy chỉnh",
|
||||
'always' => "Luôn luôn"
|
||||
);
|
||||
$lang->about_use_ssl = "Nếu bạn chọn 'Tùy chỉnh', SSL sẽ sử dụng và những công việc như đăng kí, sửa thông tin thành viên, .<br />Chỉ chọn 'Luôn luôn' khi Website của bạn đang chạy trên Server có hỗ trợ https.";
|
||||
$lang->server_ports = "Cổng kết nối";
|
||||
$lang->about_server_ports = "Nếu Host của bạn sử dụng cổng khác cổng mặc định 80 cho HTTP, 443 cho HTTPS, bạn nên xác định và nhập chính xác cổng kết nối.";
|
||||
$lang->use_db_session = 'Xác nhận Database';
|
||||
$lang->about_db_session = 'PHP sẽ xác nhận với Database. Có thể cải thiện được tốc độ của Website.';
|
||||
$lang->sftp = "Sử dụng SFTP";
|
||||
$lang->ftp_get_list = "Nhận danh sách";
|
||||
$lang->ftp_remove_info = 'Xóa thông tin FTP.';
|
||||
$lang->msg_ftp_invalid_path = 'Không tìm thấy thông tin của thư mục bạn đã nhập trên FTP.';
|
||||
$lang->msg_self_restart_cache_engine = 'Hãy thiết lập lại bộ nhớ Cache hoặc Deamon Cache.';
|
||||
$lang->mobile_view = 'Xem bằng di động';
|
||||
$lang->about_mobile_view = 'Nếu truy cập bằng thiết bị di động, nội dung sẽ được bố trí theo từng loại thiết bị.';
|
||||
$lang->autoinstall = 'Cập nhật tự động';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
░░ * @File : common/lang/vi.lang.php ░░
|
||||
░░ * @Author : zero (developers@xpressengine.com) ░░
|
||||
░░ * @Trans : DucDuy Dao (webmaster@xpressengine.vn) ░░
|
||||
░░ * @Website: http://xpressengine.vn ░░
|
||||
░░ * @Brief : Vietnamese Language Pack (Only basic words are included here) ░░
|
||||
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
|
||||
*/
|
||||
|
||||
$lang->admin_info = 'Thông tin Administrator';
|
||||
$lang->admin_index = 'Trang chủ Admin';
|
||||
$lang->control_panel = 'Bảng điều khiển';
|
||||
$lang->start_module = 'Module trang chủ';
|
||||
$lang->about_start_module = 'Bạn có thể chọn một Module và đặt là trang chủ của Website.';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => 'Thiết lập dịch vụ',
|
||||
'member' => 'Thiết lập thành viên',
|
||||
'content' => 'Thiết lập nội dung',
|
||||
'statistics' => 'Thống kê',
|
||||
'construction' => 'Xây dựng giao diện',
|
||||
'utility' => 'Thiết lập tiện ích',
|
||||
'interlock' => 'Tiện ích nâng cao',
|
||||
'accessory' => 'Dịch vụ phụ',
|
||||
'migration' => 'Chuyển đổi dữ liệu',
|
||||
'system' => 'Thiết lập hệ thống',
|
||||
);
|
||||
|
||||
$lang->newest_news = "Tin mới nhất";
|
||||
|
||||
$lang->env_setup = "Thiết lập ";
|
||||
$lang->default_url = "URL mặc định";
|
||||
$lang->about_default_url = "Nếu bạn sử dụng tính năng trang Web ảo (Ví dụ: PlanetXE, cafeXE), hãy chọn URL mặc định (địa chỉ trang chủ), khi khi kích hoạt SSO với thư mục hay Module làm việc.";
|
||||
|
||||
$lang->env_information = "Thông tin";
|
||||
$lang->current_version = "Phiên bản";
|
||||
$lang->current_path = "Thư mục cài đặt";
|
||||
$lang->released_version = "Phiên bản mới nhất";
|
||||
$lang->about_download_link = "Đã có phiên bản mới nhất của XE.\n Hãy bấm vào Link để Download.";
|
||||
|
||||
$lang->item_module = "Danh sách Module";
|
||||
$lang->item_addon = "Danh sách Addon";
|
||||
$lang->item_widget = "Danh sách Widget";
|
||||
$lang->item_layout = "Danh sách Layout";
|
||||
|
||||
$lang->module_name = "Tên Module";
|
||||
$lang->addon_name = "Tên Addon";
|
||||
$lang->version = "Phiên bản";
|
||||
$lang->author = "Thiết kế";
|
||||
$lang->table_count = "Table";
|
||||
$lang->installed_path = "Thư mục đã cài đặt";
|
||||
|
||||
$lang->cmd_shortcut_management = "Sửa Menu";
|
||||
|
||||
$lang->msg_is_not_administrator = 'Dành riêng Administrator';
|
||||
$lang->msg_manage_module_cannot_delete = 'Không thể xóa những phím tắt của Module, Addon, Layout, Widget.';
|
||||
$lang->msg_default_act_is_null = 'Phím tắt đã không được tạo, bởi vì bạn không được đặt quyền là quản lý toàn diện.';
|
||||
|
||||
$lang->welcome_to_xe = 'Chào mừng bạn đến với trang quản lý của XE!';
|
||||
$lang->about_admin_page = "Trang Admin này vẫn đang được phát triển,\n Chúng tôi sẽ thêm vào những nội dung chủ yếu từ những ý kiến của người sử dụng.";
|
||||
$lang->about_lang_env = "Để hiển thị ngôn ngữ đã chọn là mặc định. Hãy bấm [Lưu] phía dưới để lưu lại.";
|
||||
|
||||
$lang->xe_license = 'XE sử dụng giấy phép GPL';
|
||||
$lang->about_shortcut = 'Bạn có thể loại bỏ phím tắt của Module được sử dụng thường xuyên trên danh sách.';
|
||||
|
||||
$lang->yesterday = "Hôm qua";
|
||||
$lang->today = "Hôm nay";
|
||||
|
||||
$lang->cmd_lang_select = "Ngôn ngữ";
|
||||
$lang->about_cmd_lang_select = "Chỉ chọn được những ngôn ngữ có sẵn.";
|
||||
$lang->about_recompile_cache = "Bạn có thể sắp xếp lại File Cache cho những việc đã làm hoặc bị lỗi.";
|
||||
$lang->use_ssl = "Sử dụng SSL";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "Không sử dụng",
|
||||
'optional' => "Tùy chỉnh",
|
||||
'always' => "Luôn luôn"
|
||||
);
|
||||
$lang->about_use_ssl = "Nếu bạn chọn 'Tùy chỉnh', SSL sẽ sử dụng và những công việc như đăng kí, sửa thông tin thành viên, .<br />Chỉ chọn 'Luôn luôn' khi Website của bạn đang chạy trên Server có hỗ trợ https.";
|
||||
$lang->server_ports = "Cổng kết nối";
|
||||
$lang->about_server_ports = "Nếu Host của bạn sử dụng cổng khác cổng mặc định 80 cho HTTP, 443 cho HTTPS, bạn nên xác định và nhập chính xác cổng kết nối.";
|
||||
$lang->use_db_session = 'Xác nhận Database';
|
||||
$lang->about_db_session = 'PHP sẽ xác nhận với Database. Có thể cải thiện được tốc độ của Website.';
|
||||
$lang->sftp = "Sử dụng SFTP";
|
||||
$lang->ftp_get_list = "Nhận danh sách";
|
||||
$lang->ftp_remove_info = 'Xóa thông tin FTP.';
|
||||
$lang->msg_ftp_invalid_path = 'Không tìm thấy thông tin của thư mục bạn đã nhập trên FTP.';
|
||||
$lang->msg_self_restart_cache_engine = 'Hãy thiết lập lại bộ nhớ Cache hoặc Deamon Cache.';
|
||||
$lang->mobile_view = 'Xem bằng di động';
|
||||
$lang->about_mobile_view = 'Nếu truy cập bằng thiết bị di động, nội dung sẽ được bố trí theo từng loại thiết bị.';
|
||||
$lang->autoinstall = 'Cập nhật tự động';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,92 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* @file zh-CN.lang.php
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief 简体中文语言包
|
||||
**/
|
||||
|
||||
$lang->admin_info = '管理员信息';
|
||||
$lang->admin_index = '管理首页';
|
||||
$lang->control_panel = '控制面板';
|
||||
$lang->start_module = '首页模块';
|
||||
$lang->about_start_module = '可指定用户访问网站时的默认首页模块。';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => '应用管理',
|
||||
'member' => '用户管理',
|
||||
'content' => '资源管理',
|
||||
'statistics' => '统计管理',
|
||||
'construction' => '界面管理',
|
||||
'utility' => '扩展管理',
|
||||
'interlock' => '辅助联动',
|
||||
'accessory' => '附加功能',
|
||||
'migration' => '数据导入',
|
||||
'system' => '系统管理',
|
||||
);
|
||||
|
||||
$lang->newest_news = "最新消息";
|
||||
|
||||
$lang->env_setup = "系统设置";
|
||||
$lang->default_url = "XE通行证";
|
||||
$lang->about_default_url = "请输入默认站点的XE安装地址(ex: http://域名/xe)。 <br /><strong>说明:</strong>简单的说,就是绑定帐号系统。只需要登录一次,就可以在用站点模块生成的多个子站点中随意漫游。";
|
||||
|
||||
|
||||
$lang->env_information = "系统信息";
|
||||
$lang->current_version = "安装版本";
|
||||
$lang->current_path = "安装路径";
|
||||
$lang->released_version = "最新版本";
|
||||
$lang->about_download_link = "官方网站已发布最新版本XE。\n请点击[下载]链接下载最新版本。";
|
||||
|
||||
$lang->item_module = "模块目录";
|
||||
$lang->item_addon = "插件目录";
|
||||
$lang->item_widget = "控件目录";
|
||||
$lang->item_layout = "布局目录";
|
||||
|
||||
$lang->module_name = "模块名称";
|
||||
$lang->addon_name = "插件名称";
|
||||
$lang->version = "版本";
|
||||
$lang->author = "作者";
|
||||
$lang->table_count = "表格数";
|
||||
$lang->installed_path = "安装路径";
|
||||
|
||||
$lang->cmd_shortcut_management = "编辑菜单";
|
||||
|
||||
$lang->msg_is_not_administrator = '只允许管理员访问';
|
||||
$lang->msg_manage_module_cannot_delete = '模块,插件,布局,控件模块的快捷菜单是不能删除的。';
|
||||
$lang->msg_default_act_is_null = '没有指定默认管理员的动作,是不能添加到快捷菜单的。';
|
||||
|
||||
$lang->welcome_to_xe = 'XE 管理页面';
|
||||
$lang->about_lang_env = "可以设置显示给首次访问者的同一语言环境。修改语言环境后请点击 [保存] 按钮进行保存。";
|
||||
|
||||
$lang->xe_license = 'XE遵循 GPL协议';
|
||||
$lang->about_shortcut = '可以删除添加到常用模块中的快捷菜单。';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "多国语言支持";
|
||||
$lang->about_cmd_lang_select = "请选择要使用的语言。";
|
||||
$lang->about_recompile_cache = "整理无用的或错误的缓冲文件。";
|
||||
$lang->use_ssl = "SSL使用";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "不使用",
|
||||
'optional' => "选择性",
|
||||
'always' => "使用"
|
||||
);
|
||||
$lang->about_use_ssl = "选择性使用选项应用于新用户注册/修改用户信息等已指定的action当中,使用选项应用于所有服务。";
|
||||
$lang->server_ports = "指定服务器端口";
|
||||
$lang->about_server_ports = "使用除HTTP(80), HTTPS(443)以外的端口时,必须得指定该服务器端口号。";
|
||||
$lang->use_db_session = 'DB储存认证会话';
|
||||
$lang->about_db_session = '用DB储存认证时的PHP会话。<br/>服务器使用率较少的网站建议不要勾选此项(可提高网站访问速度)。<br/>只是无法统计在线会员。';
|
||||
$lang->sftp = '使用sSFTP';
|
||||
$lang->ftp_get_list = '载入列表';
|
||||
$lang->ftp_remove_info = '删除FTP信息';
|
||||
$lang->msg_ftp_invalid_path = '无法读取FTP路径。';
|
||||
$lang->msg_self_restart_cache_engine = '请重新启动Memcached或CacheDaemon。';
|
||||
$lang->mobile_view = '开启移动版';
|
||||
$lang->about_mobile_view = '为智能手机访问网站,提供最佳视觉效果。';
|
||||
$lang->autoinstall = '安装·更新';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
<?php
|
||||
/**
|
||||
* @file zh-CN.lang.php
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief 简体中文语言包
|
||||
**/
|
||||
|
||||
$lang->admin_info = '管理员信息';
|
||||
$lang->admin_index = '管理首页';
|
||||
$lang->control_panel = '控制面板';
|
||||
$lang->start_module = '首页模块';
|
||||
$lang->about_start_module = '可指定用户访问网站时的默认首页模块。';
|
||||
|
||||
$lang->module_category_title = array(
|
||||
'service' => '应用管理',
|
||||
'member' => '用户管理',
|
||||
'content' => '资源管理',
|
||||
'statistics' => '统计管理',
|
||||
'construction' => '界面管理',
|
||||
'utility' => '扩展管理',
|
||||
'interlock' => '辅助联动',
|
||||
'accessory' => '附加功能',
|
||||
'migration' => '数据导入',
|
||||
'system' => '系统管理',
|
||||
);
|
||||
|
||||
$lang->newest_news = "最新消息";
|
||||
|
||||
$lang->env_setup = "系统设置";
|
||||
$lang->default_url = "XE通行证";
|
||||
$lang->about_default_url = "请输入默认站点的XE安装地址(ex: http://域名/xe)。 <br /><strong>说明:</strong>简单的说,就是绑定帐号系统。只需要登录一次,就可以在用站点模块生成的多个子站点中随意漫游。";
|
||||
|
||||
|
||||
$lang->env_information = "系统信息";
|
||||
$lang->current_version = "安装版本";
|
||||
$lang->current_path = "安装路径";
|
||||
$lang->released_version = "最新版本";
|
||||
$lang->about_download_link = "官方网站已发布最新版本XE。\n请点击[下载]链接下载最新版本。";
|
||||
|
||||
$lang->item_module = "模块目录";
|
||||
$lang->item_addon = "插件目录";
|
||||
$lang->item_widget = "控件目录";
|
||||
$lang->item_layout = "布局目录";
|
||||
|
||||
$lang->module_name = "模块名称";
|
||||
$lang->addon_name = "插件名称";
|
||||
$lang->version = "版本";
|
||||
$lang->author = "作者";
|
||||
$lang->table_count = "表格数";
|
||||
$lang->installed_path = "安装路径";
|
||||
|
||||
$lang->cmd_shortcut_management = "编辑菜单";
|
||||
|
||||
$lang->msg_is_not_administrator = '只允许管理员访问';
|
||||
$lang->msg_manage_module_cannot_delete = '模块,插件,布局,控件模块的快捷菜单是不能删除的。';
|
||||
$lang->msg_default_act_is_null = '没有指定默认管理员的动作,是不能添加到快捷菜单的。';
|
||||
|
||||
$lang->welcome_to_xe = 'XE 管理页面';
|
||||
$lang->about_lang_env = "可以设置显示给首次访问者的同一语言环境。修改语言环境后请点击 [保存] 按钮进行保存。";
|
||||
|
||||
$lang->xe_license = 'XE遵循 GPL协议';
|
||||
$lang->about_shortcut = '可以删除添加到常用模块中的快捷菜单。';
|
||||
|
||||
$lang->yesterday = "Yesterday";
|
||||
$lang->today = "Today";
|
||||
|
||||
$lang->cmd_lang_select = "多国语言支持";
|
||||
$lang->about_cmd_lang_select = "请选择要使用的语言。";
|
||||
$lang->about_recompile_cache = "整理无用的或错误的缓冲文件。";
|
||||
$lang->use_ssl = "SSL使用";
|
||||
$lang->ssl_options = array(
|
||||
'none' => "不使用",
|
||||
'optional' => "选择性",
|
||||
'always' => "使用"
|
||||
);
|
||||
$lang->about_use_ssl = "选择性使用选项应用于新用户注册/修改用户信息等已指定的action当中,使用选项应用于所有服务。";
|
||||
$lang->server_ports = "指定服务器端口";
|
||||
$lang->about_server_ports = "使用除HTTP(80), HTTPS(443)以外的端口时,必须得指定该服务器端口号。";
|
||||
$lang->use_db_session = 'DB储存认证会话';
|
||||
$lang->about_db_session = '用DB储存认证时的PHP会话。<br/>服务器使用率较少的网站建议不要勾选此项(可提高网站访问速度)。<br/>只是无法统计在线会员。';
|
||||
$lang->sftp = '使用sSFTP';
|
||||
$lang->ftp_get_list = '载入列表';
|
||||
$lang->ftp_remove_info = '删除FTP信息';
|
||||
$lang->msg_ftp_invalid_path = '无法读取FTP路径。';
|
||||
$lang->msg_self_restart_cache_engine = '请重新启动Memcached或CacheDaemon。';
|
||||
$lang->mobile_view = '开启移动版';
|
||||
$lang->about_mobile_view = '为智能手机访问网站,提供最佳视觉效果。';
|
||||
$lang->autoinstall = '安装·更新';
|
||||
|
||||
$lang->last_week = 'Last week';
|
||||
$lang->this_week = 'This week';
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* @file modules/admin/lang/zh-TW.lang.php
|
||||
* @author zero (zero@nzeo.com) 翻譯:royallin
|
||||
* @author NHN (developers@xpressengine.com) 翻譯:royallin
|
||||
* @brief 管理(admin)模組正體中文語言 (包含基本內容)
|
||||
**/
|
||||
|
||||
|
|
|
|||
|
|
@ -82,12 +82,17 @@
|
|||
.e2 table th{ white-space:nowrap;}
|
||||
.e2 table tbody td{ text-align:left; word-break:break-all; -ms-word-break:break-all; }
|
||||
|
||||
#xeAdmin .localNavigation { border-bottom:1px solid #ccc; *zoom:1; margin:0 0 20px 0px; padding:0; overflow:hidden; }
|
||||
#xeAdmin .localNavigation { position:relative; border-bottom:1px solid #ccc; *zoom:1; margin:0 0 40px 0; padding:0; font-size:12px;}
|
||||
#xeAdmin .localNavigation:after {content:""; display:block; clear:both;}
|
||||
#xeAdmin .localNavigation li{ position:relative; list-style:none; float:left; margin:0 -1px 0 0; padding:0;background:#fff;}
|
||||
#xeAdmin .localNavigation li a{ float:left; padding:7px 15px 0 15px; height:18px; border:1px solid #ddd; border-bottom:none; background:url(../img/bgTab.gif) repeat-x;}
|
||||
#xeAdmin .localNavigation ul{ display:none; position:absolute; top:40px; left:0; list-style:none; margin:0; padding:0; overflow:hidden;}
|
||||
#xeAdmin .localNavigation li{ list-style:none; float:left; margin:0 -1px 0 0; padding:0;background:#fff;}
|
||||
#xeAdmin .localNavigation li a{ float:left; padding:7px 15px 0 15px; height:18px; border:1px solid #ddd; border-bottom:none; background:url(../img/bgTab.gif) repeat-x; text-decoration:none !important; color:#666}
|
||||
#xeAdmin .localNavigation li.on { margin-bottom:-1px;}
|
||||
#xeAdmin .localNavigation li.on a{ height:19px; background:none;}
|
||||
#xeAdmin .localNavigation li.on ul{ display:block;}
|
||||
#xeAdmin .localNavigation li.on a{ height:19px; background:none; font-weight:bold;}
|
||||
#xeAdmin .localNavigation li li{ position:relative; left:-1px; display:inline; float:none; margin:0; padding:0 6px 0 10px; border-left:1px solid #ddd;}
|
||||
#xeAdmin .localNavigation li li a{ font-weight:normal !important; float:none; padding:0; height:auto; border:0; background:none;}
|
||||
#xeAdmin .localNavigation li li.on a{ font-weight:bold !important;}
|
||||
|
||||
#xeAdmin h3.xeAdmin {border-bottom:2px solid #ccc; padding:5px 0 5px 25px; margin:0 0 10px 0; background:url(../img/iconH2.gif) no-repeat left center;}
|
||||
#xeAdmin h4.xeAdmin {padding:5px 0 5px 20px; background:url(../img/iconH3.gif) no-repeat left center;}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* @file admin.js
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @author NHN (developers@xpressengine.com)
|
||||
* @brief admin 모듈의 javascript
|
||||
**/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue