Changeset 5866

Show
Ignore:
Timestamp:
05/04/08 21:09:21 (5 months ago)
Author:
inureyes
Message:

#897

  • 언어 리소스 수정 및 도움말 추가
Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/owner/setting/account/index.php

    r5775 r5866  
    306306 
    307307                        <div id="part-setting-account" class="part"> 
    308                             <h2 class="caption"><span class="main-text"><?php echo _t('계정 정보');?></span></h2> 
     308                            <h2 class="caption"><span class="main-text"><?php echo _t('로그인 정보');?></span></h2> 
    309309                             
    310310                            <div class="data-inbox"> 
    311311                                <form id="info-section" class="section" method="post" action="<?php echo $blogURL;?>/owner/setting/account"> 
    312312                                    <fieldset class="container"> 
    313                                         <legend><?php echo _t('계정 정보');?></legend> 
     313                                        <legend><?php echo _t('개인 정보');?></legend> 
    314314                                         
    315315                                        <dl id="blogger-name-line" class="line"> 
     
    383383                             
    384384                            <div class="main-explain-box"> 
    385                                 <p class="explain"><?php echo _t("댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다.")?></p> 
     385                                <p class="explain"><?php echo _t("댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다. 로그인 상태에서 댓글을 달 경우 댓글에 출력되는 블로그 아이콘은 이 주소의 정보에 의하여 결정됩니다.")?></p> 
    386386                            </div> 
    387387                             
     
    438438                            <h2 class="caption"><span class="main-text"><?php echo _t('오픈아이디 연결');?></span></h2> 
    439439                            <div class="main-explain-box"> 
    440                                 <p class="explain"><?php echo _t("오픈아이디를 현재 계정에 연결합니다.").' '._t('연결한 오픈아이디로 이 계정에 로그인 할 수 있습니다.');?></p> 
     440                                <p class="explain"><?php echo _t("오픈아이디를 현재 아이디와 연결합니다.").' '._t('연결 후에는 연결한 오픈아이디를 사용하여 블로그에 로그인 할 수 있습니다.');?></p> 
    441441                            </div> 
    442442                             
  • trunk/interface/owner/setting/blog/index.php

    r5859 r5866  
    507507                         
    508508                        <div id="part-setting-profile" class="part"> 
    509                             <h2 class="caption"><span class="main-text"><?php echo _t('특징을 설정합니다');?></span></h2> 
     509                            <h2 class="caption"><span class="main-text"><?php echo _t('블로그 이미지 및 아이콘을 설정합니다');?></span></h2> 
    510510                             
    511511                            <form id="icons-form" class="data-inbox" method="post" action="<?php echo parseURL($blogURL.'/owner/setting/blog/icons');?>" enctype="multipart/form-data"> 
     
    745745?> 
    746746                                                </select> 
    747                                                 <p><?php echo _t('관리자 화면의 언어를 설정합니다.<br />한국어 블로그를 운영하고 계신다면 한국어를 선택해 주십시오.');?></p> 
     747                                                <p><?php echo _t('관리 패널 화면에서 사용할 언어를 설정합니다.');?></p> 
    748748                                            </dd> 
    749749                                        </dl> 
     
    760760?> 
    761761                                                </select> 
    762                                                 <p><?php echo _t('외부 블로그에 표시되는 메세지의 언어를 설정합니다.<br />달력이나 댓글 입력창에 적용됩니다. 한국어 블로그를 운영하고 계신다면 한국어를 선택해 주십시오.');?></p> 
     762                                                <p><?php echo _t('블로그에 표시되는 메세지의 언어를 설정합니다. 달력이나 댓글 입력창에 적용됩니다.');?></p> 
    763763                                            </dd> 
    764764                                        </dl> 
     
    775775?> 
    776776                                                </select> 
     777                                                <p><?php echo _t('블로그에서 사용할 시간대를 설정합니다.');?></p> 
    777778                                            </dd> 
    778779                                        </dl> 
  • trunk/lib/piece/owner/contentMenu.php

    r5863 r5866  
    7575                array('menu'=>'blog','title'=>_t('블로그'),'link'=>'/owner/setting/blog'), 
    7676                array('menu'=>'entry','title'=>_t('글 작성'),'link'=>'/owner/setting/entry'), 
    77                 array('menu'=>'account','title'=>_t('계정 정보'),'link'=>'/owner/setting/account'), 
     77                array('menu'=>'account','title'=>_t('개인 정보'),'link'=>'/owner/setting/account'), 
    7878                array('menu'=>'teamblog','title'=>_t('팀블로그'),'link'=>'/owner/setting/teamblog'), 
    7979                array('menu'=>'filter','title'=>_t('스팸 필터'),'link'=>'/owner/setting/filter'), 
     
    8383        } else if(Acl::check('group.editors')) { 
    8484            $blogContentMenuItem = array( 
    85                 array('menu'=>'account','title'=>_t('계정 정보'),'link'=>'/owner/setting/account') 
     85                array('menu'=>'account','title'=>_t('개인 정보'),'link'=>'/owner/setting/account') 
    8686            ); 
    8787        } else { 
    8888            $blogContentMenuItem = array( 
    89                 array('menu'=>'account','title'=>_t('계정 정보'),'link'=>'/owner/setting/account') 
     89                array('menu'=>'account','title'=>_t('개인 정보'),'link'=>'/owner/setting/account') 
    9090            ); 
    9191        }