포인트 모듈에서 레벨을 100에서 1000까지 제한치 변경

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2073 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-30 00:58:58 +00:00
parent 19aed43e2f
commit 7c623cab51
4 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
$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->about_max_level = 'You can set the max level. Level icons should be considered and 1000 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';

View file

@ -12,7 +12,7 @@
$lang->about_act_config = "掲示板、ブログなどのモジュールごと書き込み作成・削除/コメント作成・削除などのアクションがあります。掲示板/ブログ以外のモジュールにポイントシステムを連動させたい場合は、各機能のアクションの「act値」を追加します。連動は「,(コンマ)」で行います。";
$lang->max_level = '最高レベル';
$lang->about_max_level = '最高レベルを指定することができます。最高レベルは「100」がマクシマムなので、レベルアイコンに注意が必要です。';
$lang->about_max_level = '最高レベルを指定することができます。最高レベルは「1000」がマクシマムなので、レベルアイコンに注意が必要です。';
$lang->level_icon = 'レベルアイコン';
$lang->about_level_icon = 'レベルアイコンは、「./modules/point/icons/レベル.gif」で指定されるため、最高レベルとアイコンセットが異なる場合がありますので、注意してください。';

View file

@ -12,7 +12,7 @@
$lang->about_act_config = "게시판,블로그등의 모듈마다 글작성/삭제/댓글작성/삭제등의 action이 있습니다.<br />게시판/블로그외의 모듈에 포인트 기능 연동을 하고 싶을때는 각 기능에 맞는 act값을 추가해주시면 됩니다.<br />연결은 ,(콤마)로 해주시면 됩니다.";
$lang->max_level = '최고 레벨';
$lang->about_max_level = '최고레벨을 지정하실 수 있습니다. 레벨 아이콘을 염두에 두셔야 하고 최고 레벨은 100이 한계입니다';
$lang->about_max_level = '최고레벨을 지정하실 수 있습니다. 레벨 아이콘을 염두에 두셔야 하고 최고 레벨은 1000이 한계입니다';
$lang->level_icon = '레벨 아이콘';
$lang->about_level_icon = '레벨아이콘은 ./modules/point/icons/레벨.gif 로 지정되며 최고레벨과 아이콘셋이 다를 수 있으니 주의해주세요';

View file

@ -28,7 +28,7 @@
if(!$config->point_name) $config->point_name = 'point';
$config->max_level = $args->max_level;
if($config->max_level>100) $config->max_level = 100;
if($config->max_level>1000) $config->max_level = 1000;
if($config->max_level<1) $config->max_level = 1;
$config->level_icon = $args->level_icon;