Changeset 1496802
- Timestamp:
- 09/16/2016 10:03:50 AM (10 years ago)
- Location:
- idea-board/trunk
- Files:
-
- 3 edited
-
assets/css/idea-board.css (modified) (1 diff)
-
src/ideapeople/board/Roles.php (modified) (1 diff)
-
views/admin/setting.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
idea-board/trunk/assets/css/idea-board.css
r1496702 r1496802 1 1 #idea-board { 2 2 width: 100%; 3 clear: both;4 content: '';5 3 display: block; 6 4 font-size: .9rem; -
idea-board/trunk/src/ideapeople/board/Roles.php
r1496664 r1496802 21 21 22 22 $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( '본인만' ); 26 26 27 27 $roles = array_merge( $roles, $wp_roles->get_names() ); -
idea-board/trunk/views/admin/setting.php
r1496785 r1496802 76 76 77 77 <tr> 78 <th> 게시판 설정</th>78 <th><?php _e_idea_board( '게시판 설정' ) ?></th> 79 79 <td> 80 80 <p> … … 83 83 <input type="text" name="board_categories" id="board_categories" class="block" 84 84 value="<?php echo Setting::get_categories( $board->term_id, '' ); ?>"/> 85 <em> ,로 구분하여 입력해 주세요.</em>85 <em><?php _e_idea_board( ',로 구분하여 입력해 주세요' ) ?></em> 86 86 </label> 87 87 </p> … … 116 116 </tr> 117 117 <tr> 118 <th> 스킨</th>118 <th><?php _e_idea_board( '스킨' ) ?></th> 119 119 <td> 120 120 <p> … … 142 142 143 143 <tr> 144 <th> 게시글</th>144 <th><?php _e_idea_board( '게시글' ) ?></th> 145 145 <td> 146 146 <p class="form-required"> … … 174 174 </tr> 175 175 <tr> 176 <th> 토론</th>176 <th><?php _e_idea_board( '토론' ) ?></th> 177 177 <td> 178 178 <p> … … 198 198 199 199 <tr> 200 <th> 권한</th>200 <th><?php _e_idea_board( '권한' ) ?></th> 201 201 <td class="role_row"> 202 202 <p> … … 237 237 </tr> 238 238 <tr> 239 <th> 기본글</th>239 <th><?php _e_idea_board( '기본글' ) ?></th> 240 240 <td> 241 241 <?php wp_editor( Setting::get_basic_content(), 'board_basic_content' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.