Changeset 35
- Timestamp:
- Dec 20, 2008, 1:38:22 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/language/ja_utf8/blocks.php
r1 r35 2 2 if( ! defined( 'XPRESS_BLOCK_LANG_INCLUDED' ) ) { 3 3 define( 'XPRESS_BLOCK_LANG_INCLUDED' , 1 ) ; 4 4 define("_MB_XPRESS_COUNT",'表示数'); 5 define("_MB_XPRESS_LENGTH","長さ"); 6 define("_MB_XPRESS_COMM_DISP_AUTH","コメント投稿者を表示する"); 7 define("_MB_XPRESS_COMM_DISP_TYPE","コメントタイプを表示する"); 8 define("_MB_XPRESS_COM_TYPE","表示するコメントのタイプを選択"); 9 define("_MB_XPRESS_COMMENT","コメント"); 10 define("_MB_XPRESS_TRUCKBACK","トラックバック"); 11 define("_MB_XPRESS_PINGBACK","ピンバック"); 12 define("_MB_XPRESS_ALL","すべて"); 5 13 } 6 14 ?> -
trunk/language/ja_utf8/modinfo.php
r1 r35 12 12 define("_MI_XPRESS_MENU_POST_NEW","新規投稿"); 13 13 define("_MI_XPRESS_MENU_EDIT","投稿管理"); 14 15 // Block Name 16 define("_MI_XPRESS_BLOCK_COMMENTS","最近のコメント"); 14 17 } 15 18 ?> -
trunk/xoops_version.php
r30 r35 93 93 * Templates 94 94 */ 95 //$modversion['templates'] = array() ; 96 //$modversion['templates'][1]['file'] = 'xpress_index.html'; 97 //$modversion['templates'][1]['description'] = ''; 95 // All Templates can't be touched by modulesadmin. 96 $modversion['templates'] = array() ; 98 97 99 98 $modversion['hasconfig'] = 0; 99 100 //BLOCKS 101 $modversion['blocks'][1] = array( 102 'file' => 'xpress_block_recent_comments.php' , 103 'name' => constant('_MI_XPRESS_BLOCK_COMMENTS') , 104 'description' => '' , 105 'show_func' => "b_". $mydirname . "_comments_show" , 106 'edit_func' => "b_". $mydirname . "_comments_edit" , 107 'template' => 'xpress_block_recent_comments.html' , 108 'options' => $mydirname. '|10|30|' , 109 'can_clone' => true , 110 'func_num' => 1, 111 ); 100 112 ?>
Note: See TracChangeset
for help on using the changeset viewer.