git-svn-id: http://xe-core.googlecode.com/svn/trunk@1865 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-07-04 08:54:56 +00:00
parent b376053c1c
commit 74374604a0
27 changed files with 730 additions and 46 deletions

View file

@ -2,10 +2,13 @@
<module version="0.1">
<title xml:lang="ko">기본 카운터</title>
<title xml:lang="zh-CN">基本访问统计</title>
<title xml:lang="en">Basic counter</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<name xml:lang="zh-CN">zero</name>
<name xml:lang="en">Zero</name>
<description xml:lang="ko">기본 접속 통계 프로그램입니다.</description>
<description xml:lang="zh-CN">基本计访问统计程序。</description>
<description xml:lang="en">Basic connection statistics program.</description>
</author>
</module>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/counter/lang/en.lang.php
* @author zero <zero@nzeo.com>
* @brief English Language Pack (Only basic contents are listed)
**/
$lang->counter = "Counter";
$lang->cmd_select_date = 'Select date';
$lang->cmd_select_counter_type = array(
'hour' => 'By hour',
'day' => 'By day',
'month' => 'By month',
'year' => 'By year',
);
$lang->total_counter = 'Total status';
$lang->selected_day_counter = 'Selected day status';
$lang->unique_visitor = 'Visitor';
$lang->pageview = 'Pageview';
?>