git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-12 03:59:52 +00:00
commit 8326004cb2
2773 changed files with 91485 additions and 0 deletions

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';
?>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/counter/lang/es.lang.php
* @author zero <zero@nzeo.com>
* @brief Paquete lingual de taquilla
**/
$lang->counter = "Taquilla";
$lang->cmd_select_date = 'Seleccióna Fecha';
$lang->cmd_select_counter_type = array(
'hour' => 'horas',
'day' => 'dias',
'month' => 'mes',
'year' => 'año',
);
$lang->total_counter = 'Visitantes en total';
$lang->selected_day_counter = 'Visitantes en diario';
$lang->unique_visitor = 'Visitas unicos';
$lang->pageview = 'Páginas/visita';
?>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/counter/lang/ko.lang.php
* @author zero <zero@nzeo.com> 翻訳RisaPapa
* @brief 日本語言語パッケージ(基本的な内容のみ)
**/
$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 = 'ページビュー';
?>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/counter/lang/ko.lang.php
* @author zero <zero@nzeo.com>
* @brief 한국어 언어팩 (기본적인 내용만 수록)
**/
$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 = '페이지뷰';
?>

View file

@ -0,0 +1,22 @@
<?php
/**
* @file modules/counter/lang/zh-CN.lang.php
* @author zero <zero@nzeo.com>
* @brief 简体中文语言包
**/
$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 = '页面浏览';
?>