- Timestamp:
- Jun 19, 2009, 10:40:34 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external/xpress_i18n/ja_EUC/language/japanese/modinfo.php
r276 r300 20 20 define("_MI_XP2_MENU_ADMIN","WordPress´ÉÍý"); 21 21 define("_MI_XP2_MENU_XPRESS","XPressMEÀßÄê"); 22 define("_MI_XP2_MENU_TO_MODULE","¥â¥¸¥å¡¼¥ë¤Ø"); 22 23 23 24 // Block Name -
trunk/external/xpress_i18n/ja_UTF/language/ja_utf8/modinfo.php
r276 r300 20 20 define("_MI_XP2_MENU_ADMIN","WordPress管理"); 21 21 define("_MI_XP2_MENU_XPRESS","XPressME設定"); 22 define("_MI_XP2_MENU_TO_MODULE","モジュールへ"); 22 23 23 24 // Block Name -
trunk/xpressme_integration_kit/admin/menu.php
r276 r300 55 55 $adminmenu[$i++]['link'] = "admin/wp_admin.php"; 56 56 57 $adminmenu[$i]['title'] = _MI_XP2_MENU_TO_MODULE ; 58 $adminmenu[$i++]['link'] = "index.php"; 59 60 57 61 ?> -
trunk/xpressme_integration_kit/class/check_blocks_class.php
r151 r300 217 217 $option_arr_1 = explode( '|', $info['options'] ); 218 218 $option_arr_2 = explode( '|', $block_obj->getVar('options', 'n') ); 219 220 if ( count($option_arr_1) != count($option_arr_2) ) 221 { 222 $this->_err( $name.': options count unmatch' ); 219 220 $excludes_block = array('widget_block.php','popular_posts_block.php','recent_comments_block.php','recent_posts_content_block.php','recent_posts_list_block.php'); 221 222 if (in_array($info['file'],$excludes_block)){ 223 if ( count($option_arr_1) > count($option_arr_2) ) 224 { 225 $this->_err( $name.': options count unmatch' ); 226 } 227 228 } else { 229 if ( count($option_arr_1) != count($option_arr_2) ) 230 { 231 $this->_err( $name.': options count unmatch' ); 232 } 223 233 } 224 234 } -
trunk/xpressme_integration_kit/language/english/modinfo.php
r276 r300 20 20 define("_MI_XP2_MENU_ADMIN","WordPress Admin"); 21 21 define("_MI_XP2_MENU_XPRESS","XPressME Setting"); 22 define("_MI_XP2_MENU_TO_MODULE","to Modules"); 22 23 23 24 // Block Name -
trunk/xpressme_integration_kit/language/ja_utf8/modinfo.php
r276 r300 20 20 define("_MI_XP2_MENU_ADMIN","WordPress管理"); 21 21 define("_MI_XP2_MENU_XPRESS","XPressME設定"); 22 define("_MI_XP2_MENU_TO_MODULE","モジュールへ"); 22 23 23 24 // Block Name
Note: See TracChangeset
for help on using the changeset viewer.