Changeset 5866
- Timestamp:
- 05/04/08 21:09:21 (5 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
interface/owner/setting/account/index.php (modified) (3 diffs)
-
interface/owner/setting/blog/index.php (modified) (4 diffs)
-
lib/piece/owner/contentMenu.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/setting/account/index.php
r5775 r5866 306 306 307 307 <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> 309 309 310 310 <div class="data-inbox"> 311 311 <form id="info-section" class="section" method="post" action="<?php echo $blogURL;?>/owner/setting/account"> 312 312 <fieldset class="container"> 313 <legend><?php echo _t(' 계정정보');?></legend>313 <legend><?php echo _t('개인 정보');?></legend> 314 314 315 315 <dl id="blogger-name-line" class="line"> … … 383 383 384 384 <div class="main-explain-box"> 385 <p class="explain"><?php echo _t("댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다. ")?></p>385 <p class="explain"><?php echo _t("댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다. 로그인 상태에서 댓글을 달 경우 댓글에 출력되는 블로그 아이콘은 이 주소의 정보에 의하여 결정됩니다.")?></p> 386 386 </div> 387 387 … … 438 438 <h2 class="caption"><span class="main-text"><?php echo _t('오픈아이디 연결');?></span></h2> 439 439 <div class="main-explain-box"> 440 <p class="explain"><?php echo _t("오픈아이디를 현재 계정에 연결합니다.").' '._t('연결한 오픈아이디로 이 계정에 로그인 할 수 있습니다.');?></p>440 <p class="explain"><?php echo _t("오픈아이디를 현재 아이디와 연결합니다.").' '._t('연결 후에는 연결한 오픈아이디를 사용하여 블로그에 로그인 할 수 있습니다.');?></p> 441 441 </div> 442 442 -
trunk/interface/owner/setting/blog/index.php
r5859 r5866 507 507 508 508 <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> 510 510 511 511 <form id="icons-form" class="data-inbox" method="post" action="<?php echo parseURL($blogURL.'/owner/setting/blog/icons');?>" enctype="multipart/form-data"> … … 745 745 ?> 746 746 </select> 747 <p><?php echo _t('관리 자 화면의 언어를 설정합니다.<br />한국어 블로그를 운영하고 계신다면 한국어를 선택해 주십시오.');?></p>747 <p><?php echo _t('관리 패널 화면에서 사용할 언어를 설정합니다.');?></p> 748 748 </dd> 749 749 </dl> … … 760 760 ?> 761 761 </select> 762 <p><?php echo _t(' 외부 블로그에 표시되는 메세지의 언어를 설정합니다.<br />달력이나 댓글 입력창에 적용됩니다. 한국어 블로그를 운영하고 계신다면 한국어를 선택해 주십시오.');?></p>762 <p><?php echo _t('블로그에 표시되는 메세지의 언어를 설정합니다. 달력이나 댓글 입력창에 적용됩니다.');?></p> 763 763 </dd> 764 764 </dl> … … 775 775 ?> 776 776 </select> 777 <p><?php echo _t('블로그에서 사용할 시간대를 설정합니다.');?></p> 777 778 </dd> 778 779 </dl> -
trunk/lib/piece/owner/contentMenu.php
r5863 r5866 75 75 array('menu'=>'blog','title'=>_t('블로그'),'link'=>'/owner/setting/blog'), 76 76 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'), 78 78 array('menu'=>'teamblog','title'=>_t('팀블로그'),'link'=>'/owner/setting/teamblog'), 79 79 array('menu'=>'filter','title'=>_t('스팸 필터'),'link'=>'/owner/setting/filter'), … … 83 83 } else if(Acl::check('group.editors')) { 84 84 $blogContentMenuItem = array( 85 array('menu'=>'account','title'=>_t(' 계정정보'),'link'=>'/owner/setting/account')85 array('menu'=>'account','title'=>_t('개인 정보'),'link'=>'/owner/setting/account') 86 86 ); 87 87 } else { 88 88 $blogContentMenuItem = array( 89 array('menu'=>'account','title'=>_t(' 계정정보'),'link'=>'/owner/setting/account')89 array('menu'=>'account','title'=>_t('개인 정보'),'link'=>'/owner/setting/account') 90 90 ); 91 91 }
