Changeset 141
- Timestamp:
- Mar 29, 2009, 2:09:34 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/language/ja_utf8/modinfo.php
r138 r141 14 14 // Sub menu titles 15 15 define("_MI_XPRESS_MENU_POST_NEW","新規投稿"); 16 define("_MI_XPRESS_MENU_EDIT","投稿編集"); 16 define("_MI_XPRESS_MENU_EDIT","編集"); 17 define("_MI_XPRESS_MENU_ADMIN","WordPress管理"); 18 define("_MI_XPRESS_MENU_XPRESS","XPressME設定"); 17 19 18 20 // Block Name -
trunk/wp-content/plugins/xpressme/include/custom_functions.php
r140 r141 264 264 function xpress_conditional_title($display = true) 265 265 { 266 $output = __('Main', 'xpress ');266 $output = __('Main', 'xpressme'); 267 267 if (is_category()) 268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpress '), single_cat_title('', false));268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false)); 269 269 if (is_tag()) 270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpress '), single_tag_title('', false) );270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) ); 271 271 if (is_day()) 272 $output = sprintf(_ c('Archive for %s|Daily archive page', 'xpress'), get_the_time(__('F jS, Y', 'xpress')));272 $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme'))); 273 273 if (is_month()) 274 $output = sprintf(_ c('Archive for %s|Monthly archive page', 'xpress'), get_the_time(__('F, Y', 'xpress')));274 $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme'))); 275 275 if (is_year()) 276 $output = sprintf(_ c('Archive for %s|Yearly archive page', 'xpress'), get_the_time(__('Y', 'xpress')));276 $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme'))); 277 277 if (is_author()) 278 $output = get_author_name( get_query_var('author')); __('Author Archive', 'xpress');278 $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author'))); 279 279 if (is_search()) 280 $output = __('Search Results', 'xpress ');280 $output = __('Search Results', 'xpressme'); 281 281 282 282 if ($display) -
trunk/wp-content/plugins/xpressme/include/xpress_common_functions.php
r140 r141 128 128 } 129 129 130 function block_cache_refresh() 131 { 132 global $xoops_db; 133 $mid = get_xpress_modid(); 134 $sql = "SELECT bid,options,func_file FROM " . get_xoops_prefix() . "newblocks WHERE mid = $mid"; 135 $blocks = $xoops_db->get_results($sql); 136 $mydirname = get_xpress_dir_name(); 137 require_once get_xpress_dir_path() . '/include/xpress_block_render.php'; 138 139 140 foreach($blocks as $block){ 141 $func_file = $block->func_file; 142 $call_theme_function_name = str_replace(".php", "", $func_file); 143 $inc_theme_file_name = str_replace(".php", "", $func_file) . '_theme.php'; 144 $cache_title = str_replace(".php", "", $func_file); 145 $blockID = $block->bid; 146 $options = explode("|", $block->options); 147 148 $block_theme_file = get_block_file_path($mydirname,$inc_theme_file_name); 149 require_once $block_theme_file; 150 $block_render = $call_theme_function_name($options); //The block name and the called function name should be assumed to be the same name. 151 $xml['block'] = $block_render; 152 $xml['block']['options'] = $block->options; 153 xpress_block_cache_write($mydirname,$cache_title. $blockID, $xml); 154 } 155 } 130 156 ?> -
trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
r140 r141 3 3 "Project-Id-Version: XPressME Plugin\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2009-03-2 5 00:47+0900\n"5 "PO-Revision-Date: 2009-03-29 13:01+0900\n" 6 6 "Last-Translator: toemon <toychee@toemon.com>\n" 7 7 "Language-Team: \n" … … 30 30 31 31 #: xpressme_class.php:204 32 #: xpressme_class.php:41 033 #: xpressme_class.php:4 1534 #: xpressme_class.php:4 3635 #: xpressme_class.php:44 132 #: xpressme_class.php:416 33 #: xpressme_class.php:421 34 #: xpressme_class.php:442 35 #: xpressme_class.php:447 36 36 msgid "YES" 37 37 msgstr "はい" 38 38 39 39 #: xpressme_class.php:205 40 #: xpressme_class.php:41 141 #: xpressme_class.php:4 1642 #: xpressme_class.php:4 3743 #: xpressme_class.php:44 240 #: xpressme_class.php:417 41 #: xpressme_class.php:422 42 #: xpressme_class.php:443 43 #: xpressme_class.php:448 44 44 msgid "NO" 45 45 msgstr "いいえ" … … 61 61 msgstr "ログイン時、常に権限を更新する" 62 62 63 #: xpressme_class.php:2 6964 #: xpressme_class.php:27 365 #: xpressme_class.php:2 7663 #: xpressme_class.php:274 64 #: xpressme_class.php:278 65 #: xpressme_class.php:281 66 66 msgid "Default Role of WordPress" 67 67 msgstr "WordPressのデフォルト権限" 68 68 69 #: xpressme_class.php:27 070 #: xpressme_class.php:27 471 #: xpressme_class.php:2 7769 #: xpressme_class.php:275 70 #: xpressme_class.php:279 71 #: xpressme_class.php:282 72 72 msgid "Group User Doesn't Register" 73 73 msgstr "ユーザ登録しない" 74 74 75 #: xpressme_class.php:3 0575 #: xpressme_class.php:311 76 76 msgid "Do Not Comment Integration." 77 77 msgstr "コメント統合しません。" 78 78 79 #: xpressme_class.php:3 3979 #: xpressme_class.php:345 80 80 msgid "Comment integration with D3Forum" 81 81 msgstr "D3Forumとのコメント統合" 82 82 83 #: xpressme_class.php:34 183 #: xpressme_class.php:347 84 84 msgid "Select the forum of D3Forum that does the comment integration from the following lists." 85 85 msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。" 86 86 87 #: xpressme_class.php:3 4587 #: xpressme_class.php:351 88 88 msgid "Select the Type of display of D3Forum comment." 89 89 msgstr "D3Forumの表示タイプを選択" 90 90 91 #: xpressme_class.php:3 4792 #: xpressme_class.php:35 091 #: xpressme_class.php:353 92 #: xpressme_class.php:356 93 93 msgid "Flat" 94 94 msgstr "フラット" 95 95 96 #: xpressme_class.php:3 4897 #: xpressme_class.php:35 196 #: xpressme_class.php:354 97 #: xpressme_class.php:357 98 98 msgid "Threaded" 99 99 msgstr "スレッド" 100 100 101 #: xpressme_class.php:3 54101 #: xpressme_class.php:360 102 102 msgid "Select the order of display of D3Forum comment." 103 103 msgstr "D3Forumコメントの表示順を選択" 104 104 105 #: xpressme_class.php:3 56106 #: xpressme_class.php:3 59105 #: xpressme_class.php:362 106 #: xpressme_class.php:365 107 107 msgid "DESC" 108 108 msgstr "降順" 109 109 110 #: xpressme_class.php:3 57111 #: xpressme_class.php:36 0110 #: xpressme_class.php:363 111 #: xpressme_class.php:366 112 112 msgid "ASC" 113 113 msgstr "昇順" 114 114 115 #: xpressme_class.php:36 3115 #: xpressme_class.php:369 116 116 msgid "Number of displays of D3Forum comments." 117 117 msgstr "D3Forumのコメント表示数" 118 118 119 #: xpressme_class.php:3 67119 #: xpressme_class.php:373 120 120 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. " 121 121 msgstr "WordPressコメントとD3Forumポスト間の一括転送(エクスポート・インポート)" 122 122 123 #: xpressme_class.php:3 68123 #: xpressme_class.php:374 124 124 msgid "Export to D3Forum" 125 125 msgstr "D3Forumへ一括エクスポート" 126 126 127 #: xpressme_class.php:3 69127 #: xpressme_class.php:375 128 128 msgid "Import from D3Forum" 129 129 msgstr "D3Forumから一括インポート" 130 130 131 #: xpressme_class.php:40 0131 #: xpressme_class.php:406 132 132 msgid "XPressME Configuration Page" 133 133 msgstr "XPressMEの設定ページ" 134 134 135 #: xpressme_class.php:4 04135 #: xpressme_class.php:410 136 136 msgid "Media Upload Base Path" 137 137 msgstr "メディアアップロードのベースパス設定" 138 138 139 #: xpressme_class.php:4 05139 #: xpressme_class.php:411 140 140 msgid "Use XOOPS UPLOAD PATH" 141 141 msgstr "XOOPSのアップロードパスを使用する。" 142 142 143 #: xpressme_class.php:4 06143 #: xpressme_class.php:412 144 144 msgid "USE WordPress BASE_PATH" 145 145 msgstr "WordPressのベースパスを使用する。" 146 146 147 #: xpressme_class.php:4 09147 #: xpressme_class.php:415 148 148 msgid "Thema Sidebar Display" 149 149 msgstr "テーマ表示時にサイドバー表示する。" 150 150 151 #: xpressme_class.php:4 14151 #: xpressme_class.php:420 152 152 msgid "The change tracking of the post is preserved" 153 153 msgstr "投稿の変更履歴を有効にする。" 154 154 155 #: xpressme_class.php:4 19155 #: xpressme_class.php:425 156 156 msgid "Display Navi Title of Old Post Link" 157 157 msgstr "古い記事へのナビタイトルを設定" 158 158 159 #: xpressme_class.php:42 2159 #: xpressme_class.php:428 160 160 msgid "Display Navi Title of Newer Post Link" 161 161 msgstr "新しい記事へのナビタイトルを設定" 162 162 163 #: xpressme_class.php:4 25163 #: xpressme_class.php:431 164 164 msgid "Select Display name of PostNavi Link" 165 165 msgstr "投稿記事リンクナビのタイトル設定" 166 166 167 #: xpressme_class.php:4 26167 #: xpressme_class.php:432 168 168 msgid "Title of post" 169 169 msgstr "投稿記事のタイトルを表示" 170 170 171 #: xpressme_class.php:4 27171 #: xpressme_class.php:433 172 172 msgid "Title of Navi" 173 173 msgstr "ナビタイトルを表示" 174 174 175 #: xpressme_class.php:43 0175 #: xpressme_class.php:436 176 176 msgid "Adjustment of Navi link display position" 177 177 msgstr "投稿記事ナビリンクの表示位置設定" 178 178 179 #: xpressme_class.php:43 1179 #: xpressme_class.php:437 180 180 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right" 181 181 msgstr "古い記事へのリンクを左に、より新しい記事へのリンクを右に表示" 182 182 183 #: xpressme_class.php:43 2183 #: xpressme_class.php:438 184 184 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right" 185 185 msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示" 186 186 187 #: xpressme_class.php:4 35187 #: xpressme_class.php:441 188 188 msgid "Is the posts author views counted?" 189 189 msgstr "投稿者の閲覧をカウントしますか?" 190 190 191 #: xpressme_class.php:44 0191 #: xpressme_class.php:446 192 192 msgid "Is SQL debugging window displayed?" 193 193 msgstr "SQLデバッグウィンドを表示しますか?" 194 194 195 #: xpressme_class.php:45 2195 #: xpressme_class.php:458 196 196 msgid "Update Config" 197 197 msgstr "更新" 198 198 199 #: xpressme_class.php:45 3199 #: xpressme_class.php:459 200 200 msgid "Preset Config" 201 201 msgstr "プリセット" … … 206 206 msgstr "閲覧数 :%d" 207 207 208 #: include/custom_functions.php:266 209 msgid "Main" 210 msgstr "メイン" 211 212 #: include/custom_functions.php:268 213 #, php-format 214 msgid "Archive for the ‘%s’ Category" 215 msgstr "カテゴリー ‘%s’ のアーカイブ" 216 217 #: include/custom_functions.php:270 218 #, php-format 219 msgid "Posts Tagged ‘%s’" 220 msgstr "" 221 222 #: include/custom_functions.php:272 223 #, php-format 224 msgid "Archive for %s|Daily archive page" 225 msgstr "%sの日別アーカイブ" 226 227 #: include/custom_functions.php:272 228 msgid "F jS, Y" 229 msgstr "Y年n月j日" 230 231 #: include/custom_functions.php:274 232 #, php-format 233 msgid "Archive for %s|Monthly archive page" 234 msgstr "%sの月別アーカイブ" 235 236 #: include/custom_functions.php:274 237 msgid "F, Y" 238 msgstr "Y年n月" 239 240 #: include/custom_functions.php:276 241 #, php-format 242 msgid "Archive for %s|Yearly archive page" 243 msgstr "%sの年別アーカイブ " 244 245 #: include/custom_functions.php:276 246 msgid "Y" 247 msgstr "Y年" 248 249 #: include/custom_functions.php:278 250 #, php-format 251 msgid "Archive for the ‘%s’ Author" 252 msgstr "投稿者 ‘%s’ のアーカイブ" 253 254 #: include/custom_functions.php:280 255 msgid "Search Results" 256 msgstr "検索結果" 257 -
trunk/wp-content/themes/xpress_default/index.php
r140 r141 7 7 echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 8 8 } 9 ?> 9 ?> 10 10 11 <div class="xpress-header-bar"> 11 12 <div class="xpress-header-title"> -
trunk/wp-content/themes/xpress_default/ja.po
r140 r141 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-29 01:21+0900\n"20 "PO-Revision-Date: 2009-03-29 12:52+0900\n" 21 21 "Last-Translator: toemon <toychee@toemon.com>\n" 22 22 "Language-Team: toemon <info@toemon.com>\n" … … 167 167 168 168 #: xpress_default/comments.php:45 169 #: xpress_default/single.php:22170 169 msgid "F jS, Y" 171 170 msgstr "Y 年 n 月 j 日" … … 354 353 #: xpress_default/image.php:13 355 354 #: xpress_default/index.php:46 356 #: xpress_default/single.php: 25355 #: xpress_default/single.php:38 357 356 msgid "Read the rest of this entry »" 358 357 msgstr "この投稿の続きを読む »" … … 360 359 #: xpress_default/image.php:15 361 360 #: xpress_default/page.php:29 362 #: xpress_default/single.php: 27361 #: xpress_default/single.php:40 363 362 msgid "Pages:" 364 363 msgstr "ページ:" … … 371 370 #: xpress_default/image.php:25 372 371 #: xpress_default/sidebar.php:24 373 #: xpress_default/single.php: 36372 #: xpress_default/single.php:49 374 373 msgid "l, F jS, Y" 375 374 msgstr "Y 年 n 月 j 日 l" 376 375 377 376 #: xpress_default/image.php:27 378 #: xpress_default/single.php: 38377 #: xpress_default/single.php:51 379 378 #, php-format 380 379 msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed." … … 382 381 383 382 #: xpress_default/image.php:31 384 #: xpress_default/single.php: 45383 #: xpress_default/single.php:58 385 384 #, php-format 386 385 msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." … … 388 387 389 388 #: xpress_default/image.php:35 390 #: xpress_default/single.php: 49389 #: xpress_default/single.php:62 391 390 #, php-format 392 391 msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." … … 394 393 395 394 #: xpress_default/image.php:39 396 #: xpress_default/single.php: 53395 #: xpress_default/single.php:66 397 396 msgid "You can skip to the end and leave a response. Pinging is currently not allowed." 398 397 msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。" 399 398 400 399 #: xpress_default/image.php:43 401 #: xpress_default/single.php: 57400 #: xpress_default/single.php:70 402 401 msgid "Both comments and pings are currently closed." 403 402 msgstr "現在コメント、トラックバックともに受け付けておりません。" … … 409 408 410 409 #: xpress_default/image.php:58 411 #: xpress_default/single.php: 71410 #: xpress_default/single.php:84 412 411 msgid "Sorry, no posts matched your criteria." 413 412 msgstr "該当する投稿は見つかりませんでした。" 414 413 415 414 #: xpress_default/index.php:21 415 #: xpress_default/single.php:16 416 416 msgid "Mein Page" 417 417 msgstr "メインページ" 418 418 419 419 #: xpress_default/index.php:22 420 #: xpress_default/single.php:17 420 421 msgid "Post New" 421 422 msgstr "新規投稿" … … 423 424 #: xpress_default/index.php:31 424 425 #: xpress_default/index.php:70 425 #: xpress_default/search.php:27426 #: xpress_default/search.php:45427 426 msgid "« Older Entries" 428 427 msgstr "« 前ページへ" … … 430 429 #: xpress_default/index.php:32 431 430 #: xpress_default/index.php:71 432 #: xpress_default/search.php:28433 #: xpress_default/search.php:46434 431 msgid "Newer Entries »" 435 432 msgstr "次ページへ »" 436 433 437 434 #: xpress_default/index.php:42 438 #: xpress_default/s earch.php:36435 #: xpress_default/single.php:33 439 436 #, php-format 440 437 msgid "Permanent Link to %s" … … 447 444 448 445 #: xpress_default/index.php:56 449 #: xpress_default/search.php:39 450 #: xpress_default/single.php:28 446 #: xpress_default/single.php:41 451 447 #, php-format 452 448 msgid "Posted in %s" … … 454 450 455 451 #: xpress_default/index.php:58 456 #: xpress_default/search.php:39457 452 msgid "Edit" 458 453 msgstr "編集" 459 454 460 455 #: xpress_default/index.php:59 461 #: xpress_default/search.php:39462 456 msgid "No Comments »" 463 457 msgstr "コメントはまだありません »" 464 458 465 459 #: xpress_default/index.php:59 466 #: xpress_default/search.php:39467 460 msgid "1 Comment »" 468 461 msgstr "1 件のコメント »" 469 462 470 463 #: xpress_default/index.php:59 471 #: xpress_default/search.php:39472 464 msgid "% Comments »" 473 465 msgstr "% 件のコメント »" 474 466 475 467 #: xpress_default/index.php:59 476 #: xpress_default/search.php:39477 468 msgid "Comments Closed" 478 469 msgstr "コメントは受け付けていません。" … … 494 485 msgstr "このページの続きを読む »" 495 486 496 #: xpress_default/search.php:24 497 msgid "Search Results" 498 msgstr "検索結果" 499 500 #: xpress_default/search.php:39 501 #: xpress_default/single.php:28 487 #: xpress_default/searchform.php:2 488 msgid "Search for:" 489 msgstr "検索:" 490 491 #: xpress_default/searchform.php:4 492 #: xpress_default/blocks/search_block_theme.php:13 493 msgid "Search" 494 msgstr "検索" 495 496 #: xpress_default/sidebar.php:10 497 msgid "Author" 498 msgstr "作成者" 499 500 #: xpress_default/sidebar.php:21 501 #, php-format 502 msgid "You are currently browsing the archives for the %s category." 503 msgstr "%s カテゴリーのアーカイブを表示しています。" 504 505 #: xpress_default/sidebar.php:24 506 #, php-format 507 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s." 508 msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。" 509 510 #: xpress_default/sidebar.php:27 511 #, php-format 512 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s." 513 msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。" 514 515 #: xpress_default/sidebar.php:27 516 msgid "F, Y" 517 msgstr "Y 年 n 月" 518 519 #: xpress_default/sidebar.php:30 520 #, php-format 521 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s." 522 msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。" 523 524 #: xpress_default/sidebar.php:33 525 #, php-format 526 msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>‘%3$s’</strong>. If you are unable to find anything in these search results, you can try one of these links." 527 msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>‘%3$s’</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。" 528 529 #: xpress_default/sidebar.php:36 530 #, php-format 531 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives." 532 msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。" 533 534 #: xpress_default/sidebar.php:42 535 msgid "Pages" 536 msgstr "ページ" 537 538 #: xpress_default/sidebar.php:44 539 msgid "Archives" 540 msgstr "アーカイブ" 541 542 #: xpress_default/sidebar.php:51 543 #: xpress_default/sidebar.php:53 544 msgid "Categories" 545 msgstr "カテゴリー" 546 547 #: xpress_default/sidebar.php:62 548 msgid "Meta" 549 msgstr "メタ情報" 550 551 #: xpress_default/sidebar.php:66 552 msgid "This page validates as XHTML 1.0 Transitional" 553 msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する" 554 555 #: xpress_default/sidebar.php:66 556 msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 557 msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 558 559 #: xpress_default/sidebar.php:67 560 msgid "XHTML Friends Network" 561 msgstr "XHTML Friends Network" 562 563 #: xpress_default/sidebar.php:67 564 msgid "XFN" 565 msgstr "XFN" 566 567 #: xpress_default/sidebar.php:68 568 msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." 569 msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform." 570 571 #: xpress_default/single.php:41 502 572 #: xpress_default/blocks/popular_posts_block_theme.php:109 503 573 #: xpress_default/blocks/recent_posts_content_block_theme.php:61 … … 506 576 msgstr "タグ:" 507 577 508 #: xpress_default/search.php:51 509 msgid "No posts found. Try a different search?" 510 msgstr "見つかりませんでした。別の検索をしますか ?" 511 512 #: xpress_default/searchform.php:2 513 msgid "Search for:" 514 msgstr "検索:" 515 516 #: xpress_default/searchform.php:4 517 #: xpress_default/blocks/search_block_theme.php:13 518 msgid "Search" 519 msgstr "検索" 520 521 #: xpress_default/sidebar.php:10 522 msgid "Author" 523 msgstr "作成者" 524 525 #: xpress_default/sidebar.php:21 526 #, php-format 527 msgid "You are currently browsing the archives for the %s category." 528 msgstr "%s カテゴリーのアーカイブを表示しています。" 529 530 #: xpress_default/sidebar.php:24 531 #, php-format 532 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s." 533 msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。" 534 535 #: xpress_default/sidebar.php:27 536 #, php-format 537 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s." 538 msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。" 539 540 #: xpress_default/sidebar.php:27 541 msgid "F, Y" 542 msgstr "Y 年 n 月" 543 544 #: xpress_default/sidebar.php:30 545 #, php-format 546 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s." 547 msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。" 548 549 #: xpress_default/sidebar.php:33 550 #, php-format 551 msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>‘%3$s’</strong>. If you are unable to find anything in these search results, you can try one of these links." 552 msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>‘%3$s’</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。" 553 554 #: xpress_default/sidebar.php:36 555 #, php-format 556 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives." 557 msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。" 558 559 #: xpress_default/sidebar.php:42 560 msgid "Pages" 561 msgstr "ページ" 562 563 #: xpress_default/sidebar.php:44 564 msgid "Archives" 565 msgstr "アーカイブ" 566 567 #: xpress_default/sidebar.php:51 568 #: xpress_default/sidebar.php:53 569 msgid "Categories" 570 msgstr "カテゴリー" 571 572 #: xpress_default/sidebar.php:62 573 msgid "Meta" 574 msgstr "メタ情報" 575 576 #: xpress_default/sidebar.php:66 577 msgid "This page validates as XHTML 1.0 Transitional" 578 msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する" 579 580 #: xpress_default/sidebar.php:66 581 msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 582 msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 583 584 #: xpress_default/sidebar.php:67 585 msgid "XHTML Friends Network" 586 msgstr "XHTML Friends Network" 587 588 #: xpress_default/sidebar.php:67 589 msgid "XFN" 590 msgstr "XFN" 591 592 #: xpress_default/sidebar.php:68 593 msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." 594 msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform." 595 596 #: xpress_default/single.php:36 578 #: xpress_default/single.php:49 597 579 #, php-format 598 580 msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s." 599 581 msgstr "この投稿は %1$s %2$s %3$s に %4$s カテゴリーに公開されました。" 600 582 601 #: xpress_default/single.php: 40583 #: xpress_default/single.php:53 602 584 msgid "You can follow any responses to this entry through the" 603 585 msgstr "この投稿へのコメントは" 604 586 605 #: xpress_default/single.php: 40587 #: xpress_default/single.php:53 606 588 msgid "feed." 607 589 msgstr "フィードで購読することができます。" 608 590 609 #: xpress_default/single.php: 59591 #: xpress_default/single.php:72 610 592 msgid "Edit this entry" 611 593 msgstr "この投稿を編集 " -
trunk/wp-content/themes/xpress_default/single.php
r64 r141 1 1 <?php get_header(); ?> 2 2 3 <div id="xpress_content" class="widecolumn"> 4 5 <div id="xpress_header"> 6 <div id="xpress_headerimg"> 7 <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 8 <div class="description"><?php bloginfo('description'); ?></div> 9 </div> 10 </div> 3 <div id="xpress_wrap"> 4 <?php 5 if(xpress_is_theme_sidebar_disp()) { 6 echo '<div id="xpress_content" class="narrowcolumn">'; 7 } else { 8 echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 9 } 10 ?> 11 <div class="xpress-header-bar"> 12 <div class="xpress-header-title"> 13 <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> 14 </div> 15 <div class="xpress-conditional-title"> 16 ( <?php xpress_conditional_title();?> ) 17 </div> 18 <div class="xpress-description"> 19 <?php bloginfo('description'); ?> 20 </div> 21 <div class="xpress-operation-link"> 22 <a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a> 23 <?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?> 24 </div> 25 </div> 26 <hr class="xpress-border"> 11 27 12 28 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 13 29 14 <div class="xpress _single_navigation">30 <div class="xpress-navi-bar"> 15 31 <div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div> 16 32 <div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div> 17 33 </div> 18 34 19 <div class="post" id="post-<?php the_ID(); ?>"> 20 <?php if (function_exists('hotDates')) { hotDates(); }?> 21 <h2><?php the_title(); ?></h2> 22 <small><?php the_time(__('F jS, Y', 'xpress')) ?> <!-- by <?php the_author() ?> --></small> 35 <div class="xpress-post" id="post-<?php the_ID(); ?>"> 36 <div class ="xpress-post-header"> 37 <?php if (function_exists('hotDates')) { hotDates(); }?> 38 <div class ="xpress-post-title"> 39 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> 40 </div> 41 </div> 23 42 24 <div class=" entry">43 <div class="xpress-post-entry"> 25 44 <?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'xpress') . '</p>'); ?> 26 45 … … 72 91 73 92 <?php endif; ?> 93 <div class="xpress-navi-bar"> 94 <div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div> 95 <div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div> 96 </div> 74 97 75 98 </div> 76 99 </div> 100 <?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 101 <hr class="xpress-border"> 77 102 <?php get_footer(); ?> -
trunk/wp-content/themes/xpress_default/style.css
r140 r141 227 227 228 228 #xpress_content { 229 padding: 0 15px;229 padding: 0px; 230 230 } 231 231 -
trunk/xoops_version.php
r138 r141 31 31 $modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 32 32 $modversion['description'] = constant( '_MI_XPRESS_DESC'); 33 $modversion['version'] = "0.1 7";33 $modversion['version'] = "0.18"; 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'] = "r1 38";42 $modversion['codename'] = "r141"; 43 43 44 44 // onInstall, onUpdate, onUninstall … … 87 87 $modversion['sub'][2]['name'] = constant( '_MI_XPRESS_MENU_EDIT'); 88 88 $modversion['sub'][2]['url'] = "wp-admin/edit.php"; 89 $modversion['sub'][3]['name'] = constant( '_MI_XPRESS_MENU_ADMIN'); 90 $modversion['sub'][3]['url'] = "wp-admin/"; 91 $modversion['sub'][4]['name'] = constant( '_MI_XPRESS_MENU_XPRESS'); 92 $modversion['sub'][4]['url'] = "wp-admin/options-general.php?page=xpressme_config"; 89 93 } 90 94
Note: See TracChangeset
for help on using the changeset viewer.