Changeset 138
- Timestamp:
- Mar 25, 2009, 12:51:12 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/language/ja_utf8/blocks.php
r136 r138 24 24 define("_MB_XPRESS_FLAT","フラット"); 25 25 define("_MB_XPRESS_LIST","リスト"); 26 define("_MB_XPRESS_FILE_NAME","ファイル名"); 26 27 27 28 // recent comment block … … 123 124 // meta 124 125 define("_MB_XPRESS_SELECT_WIDGET","表示するウィジェットを選択 (複数選択可)"); 126 127 // custom 128 define("_MB_XPRESS_ENHACED_FILE","カスタムブロックを表示するファイル名を入力してください。"); 129 define("_MB_XPRESS_MAKE_ENHACED_FILE","ここで指定したファイルをテーマ内のブロックディレクトリーに作成してください。"); 125 130 } 126 131 ?> -
trunk/language/ja_utf8/modinfo.php
r136 r138 31 31 define("_MI_XPRESS_BLOCK_SIDEBAR","サイドバー"); 32 32 define("_MI_XPRESS_BLOCK_WIDGET","ウィジェット"); 33 define("_MI_XPRESS_BLOCK_ENHANCED","拡張ブロック"); 33 34 34 35 // Notify Categories -
trunk/wp-content/themes/xpress_default/ja.po
r125 r138 18 18 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" 19 19 "POT-Creation-Date: 2008-08-15 21:16+0900\n" 20 "PO-Revision-Date: 2009-03-2 0 12:18+0900\n"20 "PO-Revision-Date: 2009-03-25 00:23+0900\n" 21 21 "Last-Translator: toemon <toychee@toemon.com>\n" 22 22 "Language-Team: toemon <info@toemon.com>\n" … … 690 690 msgstr "" 691 691 692 #: xpress_default/blocks/enhanced_block_theme.php:11 693 msgid "The include file name to display it is not set." 694 msgstr "表示を行うためのインクルードファイル名が設定されていません。" 695 696 #: xpress_default/blocks/enhanced_block_theme.php:13 697 #, php-format 698 msgid "File %s not exist." 699 msgstr "ファイル %s が見つかりません。" 700 701 #: xpress_default/blocks/enhanced_block_theme.php:19 702 msgid "PHP code error" 703 msgstr "PHPコードにエラーがあります。" 704 692 705 #: xpress_default/blocks/meta_block_theme.php:24 693 706 msgid "Posts RSS" -
trunk/xoops_version.php
r136 r138 31 31 $modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 32 32 $modversion['description'] = constant( '_MI_XPRESS_DESC'); 33 $modversion['version'] = "0.1 5";33 $modversion['version'] = "0.17"; 34 34 $modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;"; 35 35 $modversion['author'] = "toemon (http://www.toemon.com)"; … … 40 40 41 41 // status 42 $modversion['codename'] = "r13 6";42 $modversion['codename'] = "r138"; 43 43 44 44 // onInstall, onUpdate, onUninstall … … 257 257 'func_num' => $b_no, 258 258 ); 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 ); 259 270 260 271
Note: See TracChangeset
for help on using the changeset viewer.