XPressME Integration Kit

Trac

Changeset 138


Ignore:
Timestamp:
Mar 25, 2009, 12:51:12 AM (15 years ago)
Author:
toemon
Message:

拡張ブロックの実装 #78 bump Ver 0.17

Location:
trunk
Files:
3 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/language/ja_utf8/blocks.php

    r136 r138  
    2424        define("_MB_XPRESS_FLAT","フラット"); 
    2525        define("_MB_XPRESS_LIST","リスト"); 
     26        define("_MB_XPRESS_FILE_NAME","ファイル名"); 
    2627         
    2728// recent comment block  
     
    123124// meta  
    124125        define("_MB_XPRESS_SELECT_WIDGET","表示するウィジェットを選択 (複数選択可)"); 
     126         
     127// custom  
     128        define("_MB_XPRESS_ENHACED_FILE","カスタムブロックを表示するファイル名を入力してください。"); 
     129        define("_MB_XPRESS_MAKE_ENHACED_FILE","ここで指定したファイルをテーマ内のブロックディレクトリーに作成してください。"); 
    125130} 
    126131?> 
  • trunk/language/ja_utf8/modinfo.php

    r136 r138  
    3131        define("_MI_XPRESS_BLOCK_SIDEBAR","サイドバー"); 
    3232        define("_MI_XPRESS_BLOCK_WIDGET","ウィジェット"); 
     33        define("_MI_XPRESS_BLOCK_ENHANCED","拡張ブロック"); 
    3334         
    3435        // Notify Categories 
  • trunk/wp-content/themes/xpress_default/ja.po

    r125 r138  
    1818"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" 
    1919"POT-Creation-Date: 2008-08-15 21:16+0900\n" 
    20 "PO-Revision-Date: 2009-03-20 12:18+0900\n" 
     20"PO-Revision-Date: 2009-03-25 00:23+0900\n" 
    2121"Last-Translator: toemon <toychee@toemon.com>\n" 
    2222"Language-Team: toemon <info@toemon.com>\n" 
     
    690690msgstr "" 
    691691 
     692#: xpress_default/blocks/enhanced_block_theme.php:11 
     693msgid "The include file name to display it is not set." 
     694msgstr "表示を行うためのインクルードファイル名が設定されていません。" 
     695 
     696#: xpress_default/blocks/enhanced_block_theme.php:13 
     697#, php-format 
     698msgid "File %s not exist." 
     699msgstr "ファイル %s が見つかりません。" 
     700 
     701#: xpress_default/blocks/enhanced_block_theme.php:19 
     702msgid "PHP code error" 
     703msgstr "PHPコードにエラーがあります。" 
     704 
    692705#: xpress_default/blocks/meta_block_theme.php:24 
    693706msgid "Posts RSS" 
  • trunk/xoops_version.php

    r136 r138  
    3131$modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 
    3232$modversion['description'] = constant( '_MI_XPRESS_DESC'); 
    33 $modversion['version'] = "0.15"; 
     33$modversion['version'] = "0.17"; 
    3434$modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;"; 
    3535$modversion['author'] = "toemon (http://www.toemon.com)"; 
     
    4040 
    4141// status 
    42 $modversion['codename'] = "r136"; 
     42$modversion['codename'] = "r138"; 
    4343 
    4444// onInstall, onUpdate, onUninstall 
     
    257257        'func_num'              => $b_no,        
    258258); 
     259$b_no++; 
     260$modversion['blocks'][$b_no] = array( 
     261        'file'                  => 'enhanced_block.php' , 
     262        'name'                  => constant('_MI_XPRESS_BLOCK_ENHANCED') , 
     263        'description'   => '' , 
     264        'show_func'     => "b_". $mydirname . "_enhanced_show" , 
     265        'edit_func'     => "b_". $mydirname . "_enhanced_edit" , 
     266        'options'               => $mydirname. '||' , 
     267        'can_clone'             => true , 
     268        'func_num'              => $b_no,        
     269); 
    259270 
    260271 
Note: See TracChangeset for help on using the changeset viewer.