영어 번역 적용. by 나이스투님

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2065 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-27 11:38:59 +00:00
parent f37409085c
commit 29d8e91db0
9 changed files with 105 additions and 0 deletions

View file

@ -2,9 +2,11 @@
<module version="0.1">
<title xml:lang="ko">포인트 시스템</title>
<title xml:lang="jp">ポイントシステム</title>
<title xml:lang="en">Point System</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 7. 26">
<name xml:lang="ko">제로</name>
<name xml:lang="jp">Zero</name>
<name xml:lang="en">zero</name>
<description xml:lang="ko">
글작성/삭제/댓글작성/삭제시에 포인트를 부여할 수 있습니다.
포인트마다 레벨을 지정하여 사용자 이름 앞에 아이콘을 표시할 수도 있습니다.
@ -13,5 +15,10 @@
<description xml:lang="jp">
書き込み作成・削除/コメント作成・削除の活動に対するポイントを計算するシステムです。ポイントごとレベルを指定してユーザ名の前にアイコンを表示させることができます。但し、ポイントシステムアドオンを「使用」に設定しないと作動しません。
</description>
<description xml:lang="en">
You can grant point on writing/deleting/adding comments/deleting comments.
You can also display point icon in front of user name by selecting level on each point.
But to enable these functions, you need to activate point related addons.
</description>
</author>
</module>

View file

@ -0,0 +1,46 @@
<?php
/**
* @file modules/point/lang/ko.lang.php
* @author zero <zero@nzeo.com>
* @brief Default language pack of point module
**/
$lang->point = "Point";
$lang->level = "Level";
$lang->about_point_module = "You can grant points on writing/adding comments/uploading/downloading.<br />But point module only configure settings, and the point will be accumulated only when point addon is activated";
$lang->about_act_config = "Each module like board/blog has action such as writing/deleting/adding comments/deleting comments.<br />You can just add act value to link module except board/blog with point system.<br />Comma(,) will distinguish multiple values.";
$lang->max_level = 'Max Level';
$lang->about_max_level = 'You can set the max level. Level icons should be considered and 100 is the maximum value you can set';
$lang->level_icon = 'Level Icon';
$lang->about_level_icon = 'Path of level icon is ./module/point/icons/[level].gif and max level could be different with icon set. So be careful';
$lang->point_name = 'Point Name';
$lang->about_point_name = 'You can give point name or unit';
$lang->level_point = 'Level Point';
$lang->about_level_point = 'Level will be adjusted when point reaches to each level point or decrease under each level point';
$lang->disable_download = 'Prohibit Downloads';
$lang->about_disable_download = "It will prohibit downloads when there isn't enough point. (Exclude image files)";
$lang->about_module_point = "You can set point for each module and modules which don't have any value will use default point.<br />All point will be restored on acting reverse.";
$lang->point_insert_document = 'On Writing';
$lang->point_delete_document = 'On Deleting';
$lang->point_insert_comment = 'On Adding Comments';
$lang->point_delete_comment = 'On Deleting Comments';
$lang->point_upload_file = 'On Uploading';
$lang->point_delete_file = 'On Deleting Files';
$lang->point_download_file = 'On Downloading Files (Exclude images)';
$lang->cmd_point_config = 'Default Setting';
$lang->cmd_point_module_config = 'Module Setting';
$lang->cmd_point_act_config = 'Act Setting';
$lang->cmd_point_member_list = 'Member Point List';
$lang->msg_cannot_download = "You don't have enough point to download";
?>