Plugin Directory

Changeset 1496802


Ignore:
Timestamp:
09/16/2016 10:03:50 AM (10 years ago)
Author:
oternet
Message:

다국어 변경

Location:
idea-board/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • idea-board/trunk/assets/css/idea-board.css

    r1496702 r1496802  
    11#idea-board {
    22    width: 100%;
    3     clear: both;
    4     content: '';
    53    display: block;
    64    font-size: .9rem;
  • idea-board/trunk/src/ideapeople/board/Roles.php

    r1496664 r1496802  
    2121
    2222        $roles                 = array();
    23         $roles[ 'all' ]        = '전체공개';
    24         $roles[ 'isLogin' ]    = '로그인 사용자';
    25         $roles[ 'onlyAuthor' ] = '본인만';
     23        $roles[ 'all' ]        = __idea_board( '전체공개' );
     24        $roles[ 'isLogin' ]    = __idea_board( '로그인 사용자' );
     25        $roles[ 'onlyAuthor' ] = __idea_board( '본인만' );
    2626
    2727        $roles = array_merge( $roles, $wp_roles->get_names() );
  • idea-board/trunk/views/admin/setting.php

    r1496785 r1496802  
    7676
    7777    <tr>
    78         <th>게시판 설정</th>
     78        <th><?php _e_idea_board( '게시판 설정' ) ?></th>
    7979        <td>
    8080            <p>
     
    8383                    <input type="text" name="board_categories" id="board_categories" class="block"
    8484                           value="<?php echo Setting::get_categories( $board->term_id, '' ); ?>"/>
    85                     <em>,로 구분하여 입력해 주세요.</em>
     85                    <em><?php _e_idea_board( ',로 구분하여 입력해 주세요' ) ?></em>
    8686                </label>
    8787            </p>
     
    116116    </tr>
    117117    <tr>
    118         <th>스킨</th>
     118        <th><?php _e_idea_board( '스킨' ) ?></th>
    119119        <td>
    120120            <p>
     
    142142
    143143    <tr>
    144         <th>게시글</th>
     144        <th><?php _e_idea_board( '게시글' ) ?></th>
    145145        <td>
    146146            <p class="form-required">
     
    174174    </tr>
    175175    <tr>
    176         <th>토론</th>
     176        <th><?php _e_idea_board( '토론' ) ?></th>
    177177        <td>
    178178            <p>
     
    198198
    199199    <tr>
    200         <th>권한</th>
     200        <th><?php _e_idea_board( '권한' ) ?></th>
    201201        <td class="role_row">
    202202            <p>
     
    237237    </tr>
    238238    <tr>
    239         <th>기본글</th>
     239        <th><?php _e_idea_board( '기본글' ) ?></th>
    240240        <td>
    241241            <?php wp_editor( Setting::get_basic_content(), 'board_basic_content' ); ?>
Note: See TracChangeset for help on using the changeset viewer.