English translation, planet widget에 댓글, 원츄 수 보여주는 부분 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6291 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-05-06 15:03:26 +00:00
parent 59084f558a
commit f71beda125
4 changed files with 60 additions and 11 deletions

View file

@ -15,13 +15,14 @@
.widgetUlistB li .author{ float:left; margin-right:-42px;}
.widgetUlistB li .author img{ border:1px solid;}
.widgetUlistB li .title{ position:relative; margin:0 0 0 60px; border:2px solid; padding:10px 15px; *zoom:1;}
.widgetUlistB li .title div { display:inline; }
.widgetUlistB li .title a{ text-decoration:underline;}
.widgetUlistB li .title div { display:block; }
.widgetUlistB li .title a{ text-decoration:none;}
.widgetUlistB li .title .arrow{ position:absolute; top:16px; left:-6px; display:block; overflow:hidden; width:6px; height:7px; font-size:0; line-height:0;}
.widgetUlistB li .title .deco{ position:absolute; display:block; overflow:hidden; width:1px; height:1px; font-size:0; line-height:0;}
.widgetUlistB li .title .deco .topLeft{}
.widgetUlistB li .title .date{ font-size:11px; font-family:Tahoma;}
.widgetUlistB li .title .hour{ font-size:11px; font-family:Tahoma;}
.widgetUlistB li .title .cnt{ font-size:11px; font-family:Tahoma; color:#888;}
.widgetUlistB li .author img{ border-color:#ccc;}
.widgetUlistB li .title{ border-color:#eee; color:#333; background:#fff;}

View file

@ -8,8 +8,10 @@
<li>
<a href="{getSiteUrl($widget_info->domain,'','mid',$item->getPlanetMid(),'date',$item->getRegdate())}" class="author" title="{htmlspecialchars($item->nick_name)}"><img src="{$item->getPlanetPhotoSrc($widget_info->thumbnail_width,$widget_info->thumbnail_height)}" width="{$widget_info->thumbnail_width}" height="{$widget_info->thumbnail_height}" alt="{htmlspecialchars($item->nick_name)}" /></a>
<div class="title">
{$item->getContent()}
<span class="date">{zdate($item->get('regdate'),"y.m.d",false)}</span> <span class="hour">{zdate($item->get('regdate'),"H:i",false)}</span>
{$item->getContent()}
<span class="date">{zdate($item->get('regdate'),"y.m.d",false)}</span> <span class="hour">{zdate($item->get('regdate'),"H:i",false)}</span>
<!--@if($widget_info->show_author_name == 'Y')--><span class="author_a">by <a href="#" onclick="return false;" class="member_{$item->getMemberSrl()}">{$item->getNickName()}</a></span> <!--@endif-->
<!--@if($widget_info->show_number_of_comments == 'Y')--><span class="cnt">{$lang->comment}:{$item->getCommentCount()} {$lang->cmd_planet_good}:{$item->getVotedCount()}</span><!--@endif-->
<span class="arrow"></span><span class="deco topLeft"></span><span class="deco topRight"></span><span class="deco bottomLeft"></span><span class="deco bottomRight"></span>
</div>
</li>