mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8292 201d5d3c-b55e-5fd7-737f-ddc643e51545
21 lines
674 B
PHP
21 lines
674 B
PHP
<?php
|
|
/**
|
|
* @file modules/counter/lang/ko.lang.php
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @brief Korean language pack (only the more basic)
|
|
**/
|
|
$lang->counter = '접속 통계';
|
|
$lang->cmd_select_date = '날짜 선택';
|
|
$lang->cmd_select_counter_type = array(
|
|
'hour' => '시간대별',
|
|
'day' => '일별',
|
|
'month' => '월별',
|
|
'year' => '연도별',
|
|
);
|
|
$lang->total_counter = '전체현황';
|
|
$lang->selected_day_counter = '선택일 현황';
|
|
$lang->unique_visitor = '방문자';
|
|
$lang->pageview = '페이지뷰';
|
|
$lang->today = '오늘';
|
|
$lang->yesterday = '어제';
|
|
?>
|