Changeset 5566

Show
Ignore:
Timestamp:
03/08/08 03:41:47 (10 months ago)
Author:
inureyes
Message:

#858

  • 언어팩 업데이트
Location:
trunk
Files:
18 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/changes_ko

    r5562 r5566  
    2525 * 관리자  : 1-depth to 2-depth 카테고리 순서 변경이 예상한 것과 다르게 되는 문제 수정 (#851) 
    2626 * 관리자  : 저자 페이지 설정 저장이 firefox에서 동작하지 않는 문제 수정 (#859) 
     27 * 관리자  : 스킨에서 ajax로 일부분이 갱신될 때 해당 부분에 플러그인이 개입할 수 없었던 문제 수정 (#779) 
    2728 * 에디터  : html-위지윅 변환시 줄바꿈 태그가 사라지는 문제 수정 (#823) 
    2829 * TTXML  : 백업 파일을 복원할 때 경우에 따라 댓글이 누락되는 문제 수정 (#852) 
  • trunk/interface/m/comment/add/index.php

    r5285 r5566  
    2121    respond::NotFoundPage(); 
    2222if (!doesHaveOwnership() && empty($_POST["name_$entryId"])) { 
    23     printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('이름을 입력해 주십시오.'), "$blogURL/comment/$entryId"); 
     23    printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('이름을 입력해 주십시오.'), "$blogURL/comment/$entryId"); 
    2424} else if (!doesHaveOwnership() && empty($_POST["comment_$entryId"])) { 
    25     printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('본문을 입력해 주십시오.'), "$blogURL/comment/$entryId"); 
     25    printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('본문을 입력해 주십시오.'), "$blogURL/comment/$entryId"); 
    2626} else { 
    2727    $comment = array(); 
     
    3737    if ($result === 'blocked') { 
    3838    } else if ($result === false) { 
    39         printMobileErrorPage(_text('글을 쓸 수 없습니다.'), "$blogURL/comment/$entryId"); 
     39        printMobileErrorPage(_text('글을 쓸 수 없습니다.'), "$blogURL/comment/$entryId"); 
    4040    } else { 
    4141        setcookie('guestName', $comment['name'], time() + 2592000, $blogURL); 
    4242        setcookie('guestHomepage', $comment['homepage'], time() + 2592000, $blogURL); 
    43         printMobileSimpleMessage(_text('답글이 작성됐습니다.'), _text('답글 보기 페이지로'), "$blogURL/comment/$entryId"); 
     43        printMobileSimpleMessage(_text('댓글이 작성됐습니다.'), _text('댓글 보기 화면으로'), "$blogURL/comment/$entryId"); 
    4444    } 
    4545} 
  • trunk/interface/m/comment/comment/add/index.php

    r5285 r5566  
    2121list($entryId) = getCommentAttributes($blogid, $replyId, 'entry'); 
    2222if (!doesHaveOwnership() && empty($_POST["name_$replyId"])) { 
    23     printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('이름을 입력해 주십시오.'), "$blogURL/comment/comment/$replyId"); 
     23    printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('이름을 입력해 주십시오.'), "$blogURL/comment/comment/$replyId"); 
    2424} else if (!doesHaveOwnership() && empty($_POST["comment_$replyId"])) { 
    25     printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('본문을 입력해 주십시오.'), "$blogURL/comment/comment/$replyId"); 
     25    printMobileErrorPage(_text('글을 작성할 수 없습니다.'), _text('본문을 입력해 주십시오.'), "$blogURL/comment/comment/$replyId"); 
    2626} else { 
    2727    $comment = array(); 
     
    3636    $result = addComment($blogid, $comment); 
    3737    if ($result === 'blocked') { 
    38         printMobileErrorPage(_text('글쓰기가 차단됐습니다.'), "$blogURL/comment/$entryId"); 
     38        printMobileErrorPage(_text('글쓰기가 차단됐습니다.'), "$blogURL/comment/$entryId"); 
    3939    } else if ($result === false) { 
    40         printMobileErrorPage(_text('글을 쓸 수 없습니다.'), "$blogURL/comment/$entryId"); 
     40        printMobileErrorPage(_text('글을 쓸 수 없습니다.'), "$blogURL/comment/$entryId"); 
    4141    } else { 
    4242        setcookie('guestName', $comment['name'], time() + 2592000, $blogURL); 
    4343        setcookie('guestHomepage', $comment['homepage'], time() + 2592000, $blogURL); 
    44         printMobileSimpleMessage(_text('답글이 작성됐습니다.'), _text('답글 보기 페이지로'), "$blogURL/comment/$entryId"); 
     44        printMobileSimpleMessage(_text('댓글이 작성됐습니다.'), _text('댓글 보기 화면으로'), "$blogURL/comment/$entryId"); 
    4545    } 
    4646} 
  • trunk/interface/m/comment/comment/index.php

    r5285 r5566  
    1212?> 
    1313<div id="content"> 
    14 <h2><?php echo _text('답글에 답글을 작성합니다.');?></h2> 
     14<h2><?php echo _text('댓글에 댓글을 작성합니다.');?></h2> 
    1515<?php 
    1616printMobileCommentFormView($suri['id']); 
  • trunk/interface/m/comment/delete/action/index.php

    r5285 r5566  
    1919    list($entryId) = getCommentAttributes($blogid, $_POST['replyId'], 'entry'); 
    2020    if (deleteComment($blogid, $_POST['replyId'], $entryId, isset($_POST['password']) ? $_POST['password'] : '') === false) { 
    21         printMobileErrorPage(_text('글을 삭제할 수 없습니다.'), _text('비밀번호가 일치하지 않습니다.'), "$blogURL/comment/delete/{$_POST['replyId']}"); 
     21        printMobileErrorPage(_text('글을 삭제할 수 없습니다.'), _text('비밀번호가 일치하지 않습니다.'), "$blogURL/comment/delete/{$_POST['replyId']}"); 
    2222        exit(); 
    2323    } 
     
    2525    list($entryId) = getCommentAttributes($blogid, $suri['id'], 'entry'); 
    2626    if (deleteComment($blogid, $suri['id'], $entryId, '') === false) { 
    27         printMobileErrorPage(_t('글을 삭제할 수 없습니다'), _t('관리자가 아닙니다'), "$blogURL/comment/delete/{$suri['id']}"); 
     27        printMobileErrorPage(_t('글을 삭제할 수 없습니다'), _t('관리자가 아닙니다'), "$blogURL/comment/delete/{$suri['id']}"); 
    2828        exit(); 
    2929    } 
     
    3434?> 
    3535<div id="content"> 
    36     <h2><?php echo _t('글이 삭제됐습니다');?></h2> 
     36    <h2><?php echo _t('글이 삭제됐습니다');?></h2> 
    3737</div> 
    3838<?php 
  • trunk/interface/m/comment/delete/index.php

    r5285 r5566  
    3030        </fieldset> 
    3131        </form> 
    32         <a href="<?php echo $blogURL;?>/comment/<?php echo $entryId;?>"><?php echo _text('글 보기 화면으로');?></a> 
     32        <a href="<?php echo $blogURL;?>/comment/<?php echo $entryId;?>"><?php echo _text('글 보기 화면으로');?></a> 
    3333    </div> 
    3434    <?php 
  • trunk/interface/m/pannels/index.php

    r4998 r5566  
    1515    <?php echo getCategoriesView(getEntriesTotalCount($blogid), getCategories($blogid), true, true);?> 
    1616    --> 
    17     <h2><?php echo _text('최근에 달린 글');?></h2> 
     17    <h2><?php echo _text('최근에 달린 글');?></h2> 
    1818    <?php 
    1919        $comments = getRecentComments($blogid); 
  • trunk/language/en.php

    r5557 r5566  
    3535$__text["%1님께서 블로그의 팀원으로 초대합니다"] = '%1 as a teamblog leader invites you to join'; 
    3636$__text["BlogAPI를 사용하는 편집기들은 이 블로그로 글을 보내기 위하여 'API 주소'를 사용합니다."] = 'When using external blog editors, such as Ecto or MarsEdit, you can use this address.'; 
    37 //$__text["관리자 권한이 없는 오픈아이디 입니다"] = ""; 
     37$__text["관리자 권한이 없는 오픈아이디 입니다"] = "This OpenID does not have administrative privilege"; 
    3838$__text["관리자"] = 'Admin.'; 
    3939$__text["글관리"] = 'Post'; 
    4040$__text["댓글 및 필자 정보에 사용되는 대표 홈페이지 주소를 설정합니다."] = 'Set the default URL for comment and author information'; 
    4141$__text["댓글"] = 'Comment'; 
    42 //$__text["댓글의 댓글"] = ""; 
     42$__text["댓글의 댓글"] = "Comment of comment"; 
    4343$__text["돌아가기"] = 'Go Back'; 
    44 //$__text["방명록"] = ""; 
    45 //$__text["방명록의 댓글"] = ""; 
     44$__text["방명록"] = "Guestbook"; 
     45$__text["방명록의 댓글"] = "Comment of guestbook"; 
    4646$__text["보기"] = 'View'; 
    4747$__text["블로그 API는 MovableType 혹은 MetaWeblog API를 선택하시면 됩니다."] = 'You can choose either MoveableType of MetaWeblog for BlogAPI connection.'; 
     
    5454$__text["아래로"] = 'Move down'; 
    5555$__text["없음"] = 'None'; 
    56 //$__text["오픈아이디 인증이 실패하였습니다: "] = ""; 
    57 //$__text["오픈아이디(%1)로 작성하였습니다"] = ""; 
    58 //$__text["오픈아이디를 입력하세요"] = ""; 
     56$__text["오픈아이디 인증이 실패하였습니다: "] = "OpenID authentification failed."; 
     57$__text["오픈아이디(%1)로 작성하였습니다"] = "Written with OpenID(%1)"; 
     58$__text["오픈아이디를 입력하세요"] = "Please input OpenID"; 
    5959$__text["오픈아이디를 현재 계정에 연결합니다."] = 'Match OpenId with current account.'; 
    60 //$__text["오픈아이디에 도메인 부분이 없습니다. 예) textcube.idtail.com"] = ""; 
     60$__text["오픈아이디에 도메인 부분이 없습니다. 예) textcube.idtail.com"] = "No domain part exists. (ex. textcube.idtail.com)"; 
    6161$__text["외부 편집기가 사용할 수 있는 주소를 만들어 주는 <b>도우미</b>입니다."] = 'Gateway address to use when using external Blog editors.'; 
    6262$__text["위로"] = 'Move Up'; 
    63 //$__text["인증이 취소되었습니다."] = ""; 
    64 //$__text["인증하지 못하였습니다. 아이디를 확인하세요"] = ""; 
     63$__text["인증이 취소되었습니다."] = "Authentification canceled."; 
     64$__text["인증하지 못하였습니다. 아이디를 확인하세요"] = "Could not authorize. Please check your ID"; 
    6565$__text["임시 암호가 설정되어 있습니다."] = 'Temporary password is set.'; 
    6666$__text["팀원 추가"] = 'Add teamblog user.'; 
     
    7272$__text['%1 님의 댓글에 대한 댓글'] = 'c\\Comment about %1\'s comment'; 
    7373$__text['%1 님의 블로그'] = '%1\'s blog'; 
    74 //$__text['%1 에 달린 댓글'] = ''; 
    75 //$__text['%1 에 달린 트랙백'] = ''; 
     74$__text['%1 에 달린 댓글'] = 'Comment related to %1'; 
     75$__text['%1 에 달린 트랙백'] = 'Trackback related to %1'; 
    7676$__text['%1 전'] = 'Before %1'; 
    7777$__text['%1 제작'] = 'Author: %1'; 
     
    8080//$__text['%1/entry/'] = ''; 
    8181$__text['%1개의 피드를 가져왔습니다.\n피드를 업데이트 해 주십시오.'] = '%1 new feed(s) received.\\nPlease update the reading list.'; 
    82 //$__text['%1님을 %2님이 초대합니다'] = ''; 
    83 //$__text['%1님의 댓글'] = ''; 
     82$__text['%1님을 %2님이 초대합니다'] = '%2 invites %1'; 
     83$__text['%1님의 댓글'] = 'Comment by %1'; 
    8484$__text['%1단계'] = 'Step %1'; 
    8585$__text['%1에 글을 공개합니다.'] = 'Publish to %1.'; 
     
    9898$__text['(사용자 수정본)'] = '(User modified theme)'; 
    9999$__text['(예: %1/123)'] = '(e.g. %1/123)'; 
     100$__text['(예: %1/category/1)'] = '(ex.: %1/category/1)'; 
     101$__text['(예: %1/category/텍스트큐브)'] = '(ex.: %1/category/textcube)'; 
    100102$__text['(예: %1/entry/텍스트큐브로-오신-것을-환영합니다)'] = '(ex: %1/entry/Welcome-to-Textcube)'; 
     103$__text['(예: %1/tag/101)'] = '(ex.: %1/tag/101)'; 
     104$__text['(예: %1/tag/텍스트큐브)'] = '(ex.: %1/tag/textcube)'; 
    101105$__text['(이름 없음 %1)'] = '(No name %1)'; 
    102106$__text['(찾아보기를 이용하여 사진을 선택하시면 바로 <b>변경</b> 저장됩니다)'] = '(Select picture using \'Browse\' then it will be changed.)'; 
    103 //$__text['1개월 뒤의 달력을 보여줍니다.'] = ''; 
    104 //$__text['1개월 앞의 달력을 보여줍니다.'] = ''; 
     107$__text['1개월 뒤의 달력을 보여줍니다.'] = 'Shows calendar after 1 month.'; 
     108$__text['1개월 앞의 달력을 보여줍니다.'] = 'Shows calendar before 1 month.'; 
    105109$__text['1차 블로그 도메인을 변경하지 못했습니다'] = 'Failed to change first domain'; 
    106110$__text['1차 블로그 주소'] = '1st Blog URL'; 
     
    214218//$__text['XML-RPC ping 설정을 위한 테이블을 추가합니다.'] = ''; 
    215219$__text['[HTML][/HTML] 블럭을 제거합니다'] = 'Remove [HTML][/HTML] block.'; 
    216 //$__text['[비밀댓글]'] = ''; 
     220$__text['[비밀댓글]'] = '[Secret comment]'; 
    217221$__text['[임시]'] = '[temp]'; 
    218222$__text['[자동 저장 문서]'] = '[Auto-saved document]'; 
     
    244248$__text['개의 피드를 가져왔습니다.\n피드를 업데이트 해 주십시오.'] = '\\n new feeds received.Please update the reading list.'; 
    245249$__text['갤러리 삽입'] = 'Insert Gallery'; 
    246 //$__text['갤러리 이미지'] = ''; 
     250$__text['갤러리 이미지'] = 'Gallery image'; 
    247251$__text['갱신'] = 'Update'; 
    248252$__text['거부'] = 'Block'; 
    249253$__text['걸린 글 데이터를 교정하고 있습니다.'] = 'Trackback data is being corrected.'; 
    250 //$__text['걸린 글 보기'] = ''; 
    251 //$__text['걸린 글이 없습니다'] = ''; 
     254$__text['걸린 글 보기'] = 'Show trackbacks'; 
     255$__text['걸린 글이 없습니다'] = 'No trackback'; 
    252256$__text['걸린글 목록입니다'] = 'Trackback list'; 
    253257//$__text['걸린글 테이블에 광고 및 스팸 분류를 위한 휴지통 필드를 추가합니다.'] = ''; 
     
    273277$__text['공개된 글'] = 'Public post'; 
    274278$__text['공개된 모든 글을 <acronym title="Rich Site Summary">RSS</acronym>로 내보냅니다.'] = 'Send out RSS feeds for all public posts.'; 
    275 //$__text['공개로 변경합니다'] = ''; 
     279$__text['공개로 변경합니다'] = 'Change to public'; 
    276280$__text['공개로 변경합니다.'] = 'Public'; 
    277281$__text['공개여부'] = 'Status'; 
     
    280284$__text['공지'] = 'Notice'; 
    281285$__text['공지를 복원하고 있습니다.'] = 'Restoring Notice(s)'; 
    282 //$__text['공지사항 캐시를 초기화합니다.'] = ''; 
     286$__text['공지사항 캐시를 초기화합니다.'] = 'Reset page cache.'; 
    283287$__text['공지사항'] = 'Notice'; 
    284288$__text['공지사항을 가져올 수 없습니다. 잠시 후 다시 시도해 주십시오.'] = 'Could not find notice. Try again later.'; 
     
    288292$__text['관련글에 글을 겁니다.'] = 'Send trackback'; 
    289293$__text['관련된 글에 글을 겁니다.'] = 'Send Trackback'; 
    290 //$__text['관리자 계정과 연결된 오픈아이디'] = ''; 
     294$__text['관리자 계정과 연결된 오픈아이디'] = 'OpenID connected with administrative account.'; 
    291295$__text['관리자 로그인 비밀번호와 동일하게 사용하실 경우 비워두시기 바랍니다.'] = 'Leave as blank if you want to use login password.'; 
    292296$__text['관리자 비밀번호를 그대로 사용'] = 'Use admin\'s password'; 
    293 //$__text['관리자 설정에 의해 오픈아이디로만 댓글을 남길 수 있습니다.'] = ''; 
     297$__text['관리자 설정에 의해 오픈아이디로만 댓글을 남길 수 있습니다.'] = 'You can leave comment only with OpenID'; 
    294298$__text['관리자 스킨을 설정합니다'] = 'Set Theme of Admin Page'; 
    295299$__text['관리자 정보 입력'] = 'Enter Admin Info'; 
     
    299303$__text['관리자 화면 언어'] = 'Admin Page Language'; 
    300304$__text['관리자 화면의 언어를 설정합니다.<br />한국어 블로그를 운영하고 계신다면 한국어를 선택해 주십시오.'] = 'Select language to be used on the admin page.'; 
    301 //$__text['관리자 화면의 환경 설정에서 데이터 교정을 수행하시기 바랍니다.'] = ''; 
     305$__text['관리자 화면의 환경 설정에서 데이터 교정을 수행하시기 바랍니다.'] = 'Please correct data at Settings-Data correction menu.'; 
    302306$__text['관리자'] = 'Admin.'; 
    303 //$__text['관리자가 방문객의 댓글을 수정하시면 작성자 이름을 관리자 아이디로 덮어 쓰게 됩니다.\n계속 하시겠습니까?'] = ''; 
     307$__text['관리자가 방문객의 댓글을 수정하시면 작성자 이름을 관리자 아이디로 덮어 쓰게 됩니다.\n계속 하시겠습니까?'] = 'If you modify this comment, author name will be overwritten by your name.\nContinue?'; 
    304308$__text['관리자가 아닙니다'] = 'Administrator access only'; 
    305 //$__text['관리자만 볼 수 있는 댓글입니다.'] = ''; 
    306 //$__text['관리자만 볼 수 있는 방명록입니다.'] = ''; 
     309$__text['관리자만 볼 수 있는 댓글입니다.'] = 'Administrator only.'; 
     310$__text['관리자만 볼 수 있는 방명록입니다.'] = 'Administrator only.'; 
    307311$__text['교정 대상을 확인하고 있습니다.'] = 'Looking up checklist'; 
    308312$__text['굵게'] = 'Bold'; 
     
    310314$__text['권한'] = 'Permission'; 
    311315$__text['권한이 없습니다.'] = 'Permission denied'; 
    312 //$__text['귀하는 차단되었으므로 사용하실 수 없습니다.'] = ''; 
    313 //$__text['귀하를 %1님이 초대합니다'] = ''; 
     316$__text['귀하는 차단되었으므로 사용하실 수 없습니다.'] = 'You are blocked.'; 
     317$__text['귀하를 %1님이 초대합니다'] = '%1 invites you'; 
    314318$__text['그대로 두기'] = 'Default'; 
    315319$__text['그룹 등록하기'] = 'Group adding'; 
     
    332336$__text['글 목록을 표시합니다.'] = 'Show title of the posts'; 
    333337//$__text['글 버전 관리및 비교를 위한 테이블을 추가합니다.'] = ''; 
    334 //$__text['글 보관함'] = ''; 
     338$__text['글 보관함'] = 'Archive'; 
    335339$__text['글 수 출력'] = 'Number of posts'; 
    336340$__text['글 수집하기'] = 'Update feeds'; 
     
    343347//$__text['글 테이블의 편집기와 포매터 필드를 갱신합니다.'] = ''; 
    344348$__text['글'] = 'Post'; 
    345 //$__text['글걸기 시도'] = ''; 
     349$__text['글걸기 시도'] = 'Trying trackback'; 
    346350$__text['글걸기 주소'] = 'Trackback address'; 
    347351//$__text['글걸기 테이블에 필터 인덱스를 추가합니다.'] = ''; 
    348352$__text['글걸기'] = 'Trackback'; 
    349 //$__text['글걸기를 시도합니다'] = ''; 
     353$__text['글걸기를 시도합니다'] = 'Trying trackback'; 
    350354$__text['글관리'] = 'Post'; 
    351355$__text['글목록을 한 쪽당 %1개 보여줍니다.'] = 'Show %1 posts per page.'; 
     
    364368$__text['글의 댓글 정보를 다시 계산해서 저장합니다.'] = 'Refreshing comment count.'; 
    365369$__text['글이 전부 삭제되지는 않고 팀블로그의 로그인 데이터만 삭제됩니다'] = 'Only Teamblog login data will be deleted, not all posts.'; 
    366 //$__text['글이 하나도 없습니다.'] = ''; 
     370$__text['글이 하나도 없습니다.'] = 'No post.'; 
    367371$__text['글자색'] = 'Font Color'; 
    368372$__text['글자체'] = 'Font'; 
    369 //$__text['금요일'] = ''; 
    370 //$__text['금칙어를 사용하고 계시므로 댓글을 남기실 수 없습니다.'] = ''; 
     373$__text['금요일'] = 'Fri'; 
     374$__text['금칙어를 사용하고 계시므로 댓글을 남기실 수 없습니다.'] = 'Cannot write comment. Comment contains banned words'; 
    371375$__text['기능 설명'] = 'Legend'; 
    372376$__text['기능'] = 'Function'; 
     
    374378$__text['기본 블로그 도메인을 변경하지 못했습니다'] = 'Failed to change default domain'; 
    375379$__text['기본 설정'] = 'Default setting'; 
    376 //$__text['기본 스킨을 변경합니다.'] = ''; 
     380$__text['기본 스킨을 변경합니다.'] = 'Changing default skin.'; 
    377381$__text['기본 편집기'] = 'Default editor'; 
    378382$__text['기본 포매터'] = 'Default formatter'; 
     
    381385$__text['기분좋은'] = 'Muse'; 
    382386$__text['기울임'] = 'Italic'; 
    383 //$__text['기존 버전 - %1'] = ''; 
     387$__text['기존 버전 - %1'] = 'Previous version - %1'; 
    384388$__text['기타 설정'] = 'Other settings'; 
    385389$__text['기타 플러그인'] = 'Misc plugin'; 
     
    390394$__text['내보내기'] = 'Export'; 
    391395$__text['내용'] = 'Content'; 
    392 //$__text['내용보기'] = ''; 
     396$__text['내용보기'] = 'Show contents'; 
    393397$__text['내용을 입력해 주십시오.'] = 'Enter content.'; 
    394 //$__text['년'] = ''; 
     398$__text['년'] = 'Year'; 
    395399$__text['누구나 접근할 수 있도록 합니다.'] = 'Allow access to everyone.'; 
    396 //$__text['다른 메뉴보기'] = ''; 
     400$__text['다른 메뉴보기'] = 'Show other menu'; 
    397401$__text['다른 사람의 블로그에 단 댓글에 대한 댓글이 등록되면 알려줍니다. 알리미가 동작하기 위해서는 댓글 작성시 홈페이지 기입란에 자신의 블로그 주소를 입력하셔야 합니다.'] = 'Notify if reply has been added to your commentsss. You should input your blog address at the homepage field when leaving comments.'; 
    398402$__text['다시 설정하시려면 config.php를 먼저 삭제하셔야 합니다.'] = 'To reconfigure, you should delete config.php first.'; 
    399403$__text['다운로드'] = 'Download'; 
    400 //$__text['다음 글 보기'] = ''; 
     404$__text['다음 글 보기'] = 'Show next post'; 
    401405$__text['다음 글'] = 'Next'; 
    402 //$__text['다음 이미지 보기'] = ''; 
     406$__text['다음 이미지 보기'] = 'Show next image'; 
    403407$__text['다음 포스트가 없습니다.'] = 'No more posts'; 
    404408$__text['다음 항목을 확인하십시오.'] = 'Check the next post'; 
     
    411415$__text['단축키보기'] = 'Show Shortcuts'; 
    412416$__text['닫기'] = 'Close'; 
    413 //$__text['달'] = ''; 
    414 //$__text['답글 보기 페이지로'] = ''; 
    415 //$__text['답글 보기 화면으로'] = ''; 
    416 //$__text['답글 보기'] = ''; 
    417 //$__text['답글쓰기가 차단됐습니다.'] = ''; 
    418 //$__text['답글에 답글을 작성합니다.'] = ''; 
    419 $__text['답글을 삭제할 수 없습니다'] = 'Cannot delete comment'; 
    420 //$__text['답글을 삭제할 수 없습니다.'] = ''; 
    421 //$__text['답글을 쓸 수 없습니다.'] = ''; 
    422 //$__text['답글을 작성할 수 없습니다.'] = ''; 
    423 $__text['답글이 삭제됐습니다'] = 'Comment deleted'; 
    424 //$__text['답글이 없습니다'] = ''; 
    425 //$__text['답글이 작성됐습니다.'] = ''; 
     417$__text['달'] = 'Month'; 
    426418$__text['대기 중..'] = 'Waiting..'; 
    427419$__text['대표 블로그 설정'] = 'Setting representative blog'; 
     
    430422$__text['대표 태그'] = 'Blog tags'; 
    431423$__text['대표 태그를 변경하지 못했습니다.'] = 'Could not modify blog tags.'; 
    432 //$__text['댓글 삭제'] = ''; 
     424$__text['댓글 보기 화면으로'] = 'Go to comment page'; 
     425$__text['댓글 보기'] = 'Show comment'; 
     426$__text['댓글 삭제'] = 'Delete comment'; 
    433427$__text['댓글 알리미 내용을 복원하고 있습니다.'] = 'Reverting comment notify'; 
    434428$__text['댓글 알리미'] = 'Comment Tracker'; 
     
    438432//$__text['댓글 테이블에 필터 인덱스를 추가합니다.'] = ''; 
    439433$__text['댓글'] = 'Comment'; 
    440 //$__text['댓글, 걸린글(트랙백) 및 통합 RSS의 글은 최신 %1개로 갱신됩니다.'] = ''; 
     434$__text['댓글, 걸린글(트랙백) 및 통합 RSS의 글은 최신 %1개로 갱신됩니다.'] = 'The number of items for comment, trackback and response RSS : %1'; 
    441435$__text['댓글, 걸린글, 리퍼러가 입력될 때 아래의 단어가 포함되어 있으면 알림창을 띄우고 휴지통으로 보냅니다.'] = 'If comment, trackback or referer contains the following word(s), delete those.'; 
    442436$__text['댓글/걸린글 개수'] = 'Comments / Trackbacks'; 
    443437$__text['댓글/방명록 설정'] = 'Setting comment and guestbook.'; 
    444438$__text['댓글과 방명록 데이터를 교정하고 있습니다.'] = 'Correcting comments and guestbook entries.'; 
    445 //$__text['댓글에 댓글 달기'] = ''; 
     439//$__text['댓글쓰기가 차단됐습니다.'] = ''; 
     440$__text['댓글에 댓글 달기'] = 'Write comment on comment.'; 
     441//$__text['댓글에 댓글을 작성합니다.'] = ''; 
    446442$__text['댓글을 기본으로 펼칩니다.'] = 'Show comment area by default'; 
    447 //$__text['댓글을 달 수 없습니다.'] = ''; 
     443$__text['댓글을 달 수 없습니다.'] = 'Cannot write comment.'; 
    448444$__text['댓글을 복원하지 못했습니다.'] = 'Could not restore comments'; 
    449 //$__text['댓글을 사용할 수 없습니다.'] = ''; 
     445$__text['댓글을 사용할 수 없습니다.'] = 'Cannot use comment.'; 
    450446$__text['댓글을 삭제하고 있습니다.'] = 'Deleting comments...'; 
    451447$__text['댓글을 삭제하지 못하였습니다.'] = 'Could not delete comments.'; 
    452448$__text['댓글을 삭제하지 못했습니다.'] = 'Could not delete comment'; 
    453 //$__text['댓글을 삭제합니다.'] = ''; 
    454 //$__text['댓글을 수정합니다'] = ''; 
    455 //$__text['댓글을 수정합니다.'] = ''; 
     449//$__text['댓글을 삭제할 수 없습니다'] = ''; 
     450//$__text['댓글을 삭제할 수 없습니다.'] = ''; 
     451$__text['댓글을 삭제합니다.'] = 'Deleting comment.'; 
     452$__text['댓글을 수정합니다'] = 'Modifying comment'; 
     453$__text['댓글을 수정합니다.'] = 'Modifying comment.'; 
     454//$__text['댓글을 쓸 수 없습니다.'] = ''; 
    456455$__text['댓글을 오픈아이디 사용자에게만 허용할 수 있습니다.'] = 'Allow comments only to OpenID users.'; 
    457 //$__text['댓글을 입력해 주십시오.'] = ''; 
    458 //$__text['댓글이 등록되었습니다.'] = ''; 
     456$__text['댓글을 입력해 주십시오.'] = 'Please write comment.'; 
     457//$__text['댓글을 작성할 수 없습니다.'] = ''; 
     458$__text['댓글이 등록되었습니다.'] = 'Comment registered.'; 
     459//$__text['댓글이 삭제됐습니다'] = ''; 
    459460$__text['댓글이 삭제되었습니다.'] = 'Comment deleted.'; 
    460 //$__text['댓글이 수정되었습니다.'] = ''; 
     461$__text['댓글이 수정되었습니다.'] = 'Comment modified.'; 
     462//$__text['댓글이 없습니다'] = ''; 
     463//$__text['댓글이 작성됐습니다.'] = ''; 
    461464$__text['댓글이 작성된 위치로 직접 이동합니다.'] = 'Move to the comment.'; 
    462465$__text['댓글이 작성된 포스트로 직접 이동합니다.'] = 'Move to the post with the comment'; 
    463 //$__text['댓글이 존재하지 않거나 패스워드가 일치하지 않습니다.'] = ''; 
    464 //$__text['댓글이 존재하지 않습니다.'] = ''; 
     466$__text['댓글이 존재하지 않거나 패스워드가 일치하지 않습니다.'] = 'No comment exist or password mismatch.'; 
     467$__text['댓글이 존재하지 않습니다.'] = 'No comment.'; 
    465468$__text['더 읽어오기'] = 'Read more'; 
    466469//$__text['덧글및 방명록 테이블에 광고 및 스팸 분류를 위한 휴지통 필드를 추가합니다.'] = ''; 
     
    510513$__text['되돌릴 수 없습니다.'] = 'Cannot undo.'; 
    511514$__text['등록 예약 시간이 올바르지 않습니다.'] = 'Reserved post time is not in a correct format.'; 
    512 //$__text['등록'] = ''; 
     515$__text['등록'] = 'Register'; 
    513516$__text['등록되지 않은 소유자 E-mail 입니다.'] = 'This E-mail is not registered yet.'; 
    514517$__text['등록된 %1 공지 목록입니다'] = 'List of %1 notices'; 
     
    532535$__text['로그인 ID'] = 'Login ID'; 
    533536$__text['로그인 회수'] = '# of Logins'; 
    534 //$__text['로그인'] = ''; 
    535 //$__text['로그인된 오픈아이디의 권한으로는 수정/삭제가 불가능합니다.'] = ''; 
     537$__text['로그인'] = 'Log-ing'; 
     538$__text['로그인된 오픈아이디의 권한으로는 수정/삭제가 불가능합니다.'] = 'You cannot modify/delete with the permission of this OpenID.'; 
    536539$__text['로딩 중..'] = 'Loading..'; 
    537540$__text['리더 데이터를 복원하고 있습니다.'] = 'Restoring reader data.'; 
     
    563566$__text['링크를 수정하고 있습니다.'] = 'Modifying link'; 
    564567$__text['링크를 추가하고 있습니다.'] = 'Adding link'; 
    565 //$__text['마지막 댓글로 채우기'] = ''; 
     568$__text['마지막 댓글로 채우기'] = 'Fill with last comment'; 
    566569$__text['마지막 로그인'] = 'Last login'; 
    567570$__text['만나는'] = 'Date'; 
     
    592595$__text['목록과 함께 해당되는 모든 글을 표시합니다.'] = 'Display title and complete post.'; 
    593596$__text['목록으로'] = 'To List'; 
    594 //$__text['목요일'] = ''; 
     597$__text['목요일'] = 'Thu'; 
    595598$__text['문자를 사용합니다.'] = 'Use characters in the URL'; 
    596599$__text['문자열 길이 조절'] = 'Adjust character length'; 
     
    638641$__text['백업파일이 올바르지 않습니다.'] = 'Incorrect backup file'; 
    639642$__text['버전 %1'] = 'Version %1'; 
    640 //$__text['버전 검사'] = ''; 
     643$__text['버전 검사'] = 'Version test'; 
    641644$__text['버전'] = 'Version'; 
    642645$__text['버전업 체크를 위한 파일을 생성합니다. 지금 생성하시겠습니까?'] = 'Create file for version tracking?'; 
    643646$__text['범위설정'] = 'Setting'; 
    644 //$__text['변경 중'] = ''; 
     647$__text['변경 중'] = 'Changing'; 
    645648$__text['변경된 1차 블로그 주소로 이동합니다'] = 'Go to the updated 1st blog URL'; 
    646649$__text['변경된 2차 블로그 주소로 이동합니다'] = 'Go to the updated 2nd blog URL'; 
     
    661664$__text['보호글의 비밀번호를 변경하지 못했습니다.'] = 'Could not change password on protected post.'; 
    662665$__text['보호된 글'] = 'Locked post'; 
    663 //$__text['보호된 글입니다'] = ''; 
     666$__text['보호된 글입니다'] = 'Protected post'; 
    664667$__text['보호설정'] = 'Protection setting'; 
    665668$__text['복구'] = 'Restore'; 
     
    678681$__text['부모'] = 'Parent'; 
    679682$__text['부분공개'] = 'Partial'; 
    680 //$__text['분'] = ''; 
     683$__text['분'] = 'min.'; 
    681684$__text['분류 관리 및 설정'] = 'Category management'; 
    682685$__text['분류 관리'] = 'Category'; 
     
    686689$__text['분류 스킨 선택'] = 'Select category style'; 
    687690$__text['분류 없음'] = 'No Category'; 
    688 //$__text['분류 전체보기'] = ''; 
     691$__text['분류 전체보기'] = 'All category'; 
    689692//$__text['분류 테이블의 라벨 필드 속성을 변경합니다.'] = ''; 
    690693//$__text['분류 테이블의 우선순위 필드명을 변경합니다.'] = ''; 
     
    696699$__text['분류를 변경하지 못했습니다.'] = 'Could not edit categories'; 
    697700$__text['분류를 복원하고 있습니다.'] = 'Restoring Categories'; 
    698 //$__text['분류없음'] = ''; 
     701$__text['분류없음'] = 'No category'; 
    699702$__text['분류에 등록된 글이 있으므로 삭제할 수 없습니다.'] = 'Cannot delete category with posts'; 
    700703$__text['분류의 글 정보를 다시 계산해서 저장합니다.'] = 'Refreshing post information in categories.'; 
     
    715718$__text['블로그 글을 한 쪽당 %1개 보여줍니다.'] = 'Show %1 posts per page'; 
    716719$__text['블로그 로고 및 파비콘'] = 'Blog Logo & Favicon'; 
    717 //$__text['블로그 로그인 암호가 초기화되었습니다.'] = ''; 
    718 //$__text['블로그 로그인을 위한 임시 암호가 생성 되었습니다. 이 이메일에 로그인할 수 있는 인증 정보가 포함되어 있습니다.'] = ''; 
     720$__text['블로그 로그인 암호가 초기화되었습니다.'] = 'Login password resetted.'; 
     721$__text['블로그 로그인을 위한 임시 암호가 생성 되었습니다. 이 이메일에 로그인할 수 있는 인증 정보가 포함되어 있습니다.'] = 'Temporary password created. This E-mail contains information to authenticate.'; 
    719722$__text['블로그 메인으로 이동합니다.'] = 'To Blog Main Page'; 
    720723$__text['블로그 목록'] = 'Blog list'; 
    721 //$__text['블로그 바로가기'] = ''; 
     724$__text['블로그 바로가기'] = 'Go to blog'; 
    722725$__text['블로그 삭제에 실패하였습니다.'] = 'Deleting blog failed.'; 
    723726$__text['블로그 설명'] = 'Blog Description'; 
     
    750753$__text['블로그 주소 예시'] = 'Example'; 
    751754$__text['블로그 주소'] = 'Blog URL'; 
    752 //$__text['블로그 주소(%1)를 소유자 계정에 연결된 오픈아이디 중 하나에 위임하여 오픈아이디로 사용할 수 있습니다.'] = ''; 
     755$__text['블로그 주소(%1)를 소유자 계정에 연결된 오픈아이디 중 하나에 위임하여 오픈아이디로 사용할 수 있습니다