XPressME Integration Kit

Trac

Changeset 141


Ignore:
Timestamp:
Mar 29, 2009, 2:09:34 PM (15 years ago)
Author:
toemon
Message:

デフォルトテーマxpress_defaultの調整 bump Ver0.18
メインメニューにwordPress管理とXPressME設定を追加

Location:
trunk
Files:
1 deleted
11 edited

Legend:

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

    r138 r141  
    1414        // Sub menu titles 
    1515        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設定"); 
    1719 
    1820        // Block Name 
  • trunk/wp-content/plugins/xpressme/include/custom_functions.php

    r140 r141  
    264264function xpress_conditional_title($display = true) 
    265265{ 
    266         $output = __('Main', 'xpress'); 
     266        $output = __('Main', 'xpressme'); 
    267267        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)); 
    269269        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) ); 
    271271        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'))); 
    273273        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'))); 
    275275        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'))); 
    277277        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'))); 
    279279        if (is_search()) 
    280                 $output = __('Search Results', 'xpress'); 
     280                $output = __('Search Results', 'xpressme'); 
    281281                 
    282282        if ($display)  
  • trunk/wp-content/plugins/xpressme/include/xpress_common_functions.php

    r140 r141  
    128128} 
    129129 
     130function 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} 
    130156?> 
  • trunk/wp-content/plugins/xpressme/language/xpressme-ja.po

    r140 r141  
    33"Project-Id-Version: XPressME Plugin\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2009-03-25 00:47+0900\n" 
     5"PO-Revision-Date: 2009-03-29 13:01+0900\n" 
    66"Last-Translator: toemon <toychee@toemon.com>\n" 
    77"Language-Team: \n" 
     
    3030 
    3131#: xpressme_class.php:204 
    32 #: xpressme_class.php:410 
    33 #: xpressme_class.php:415 
    34 #: xpressme_class.php:436 
    35 #: xpressme_class.php:441 
     32#: xpressme_class.php:416 
     33#: xpressme_class.php:421 
     34#: xpressme_class.php:442 
     35#: xpressme_class.php:447 
    3636msgid "YES" 
    3737msgstr "はい" 
    3838 
    3939#: xpressme_class.php:205 
    40 #: xpressme_class.php:411 
    41 #: xpressme_class.php:416 
    42 #: xpressme_class.php:437 
    43 #: xpressme_class.php:442 
     40#: xpressme_class.php:417 
     41#: xpressme_class.php:422 
     42#: xpressme_class.php:443 
     43#: xpressme_class.php:448 
    4444msgid "NO" 
    4545msgstr "いいえ" 
     
    6161msgstr "ログイン時、常に権限を更新する" 
    6262 
    63 #: xpressme_class.php:269 
    64 #: xpressme_class.php:273 
    65 #: xpressme_class.php:276 
     63#: xpressme_class.php:274 
     64#: xpressme_class.php:278 
     65#: xpressme_class.php:281 
    6666msgid "Default Role of WordPress" 
    6767msgstr "WordPressのデフォルト権限" 
    6868 
    69 #: xpressme_class.php:270 
    70 #: xpressme_class.php:274 
    71 #: xpressme_class.php:277 
     69#: xpressme_class.php:275 
     70#: xpressme_class.php:279 
     71#: xpressme_class.php:282 
    7272msgid "Group User Doesn't Register" 
    7373msgstr "ユーザ登録しない" 
    7474 
    75 #: xpressme_class.php:305 
     75#: xpressme_class.php:311 
    7676msgid "Do Not Comment Integration." 
    7777msgstr "コメント統合しません。" 
    7878 
    79 #: xpressme_class.php:339 
     79#: xpressme_class.php:345 
    8080msgid "Comment integration with D3Forum" 
    8181msgstr "D3Forumとのコメント統合" 
    8282 
    83 #: xpressme_class.php:341 
     83#: xpressme_class.php:347 
    8484msgid "Select the forum of D3Forum that does the comment integration from the following lists." 
    8585msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。" 
    8686 
    87 #: xpressme_class.php:345 
     87#: xpressme_class.php:351 
    8888msgid "Select the Type of display of D3Forum comment." 
    8989msgstr "D3Forumの表示タイプを選択" 
    9090 
    91 #: xpressme_class.php:347 
    92 #: xpressme_class.php:350 
     91#: xpressme_class.php:353 
     92#: xpressme_class.php:356 
    9393msgid "Flat" 
    9494msgstr "フラット" 
    9595 
    96 #: xpressme_class.php:348 
    97 #: xpressme_class.php:351 
     96#: xpressme_class.php:354 
     97#: xpressme_class.php:357 
    9898msgid "Threaded" 
    9999msgstr "スレッド" 
    100100 
    101 #: xpressme_class.php:354 
     101#: xpressme_class.php:360 
    102102msgid "Select the order of display of D3Forum comment." 
    103103msgstr "D3Forumコメントの表示順を選択" 
    104104 
    105 #: xpressme_class.php:356 
    106 #: xpressme_class.php:359 
     105#: xpressme_class.php:362 
     106#: xpressme_class.php:365 
    107107msgid "DESC" 
    108108msgstr "降順" 
    109109 
    110 #: xpressme_class.php:357 
    111 #: xpressme_class.php:360 
     110#: xpressme_class.php:363 
     111#: xpressme_class.php:366 
    112112msgid "ASC" 
    113113msgstr "昇順" 
    114114 
    115 #: xpressme_class.php:363 
     115#: xpressme_class.php:369 
    116116msgid "Number of displays of D3Forum comments." 
    117117msgstr "D3Forumのコメント表示数" 
    118118 
    119 #: xpressme_class.php:367 
     119#: xpressme_class.php:373 
    120120msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. " 
    121121msgstr "WordPressコメントとD3Forumポスト間の一括転送(エクスポート・インポート)" 
    122122 
    123 #: xpressme_class.php:368 
     123#: xpressme_class.php:374 
    124124msgid "Export to D3Forum" 
    125125msgstr "D3Forumへ一括エクスポート" 
    126126 
    127 #: xpressme_class.php:369 
     127#: xpressme_class.php:375 
    128128msgid "Import from D3Forum" 
    129129msgstr "D3Forumから一括インポート" 
    130130 
    131 #: xpressme_class.php:400 
     131#: xpressme_class.php:406 
    132132msgid "XPressME Configuration Page" 
    133133msgstr "XPressMEの設定ページ" 
    134134 
    135 #: xpressme_class.php:404 
     135#: xpressme_class.php:410 
    136136msgid "Media Upload Base Path" 
    137137msgstr "メディアアップロードのベースパス設定" 
    138138 
    139 #: xpressme_class.php:405 
     139#: xpressme_class.php:411 
    140140msgid "Use XOOPS UPLOAD PATH" 
    141141msgstr "XOOPSのアップロードパスを使用する。" 
    142142 
    143 #: xpressme_class.php:406 
     143#: xpressme_class.php:412 
    144144msgid "USE WordPress BASE_PATH" 
    145145msgstr "WordPressのベースパスを使用する。" 
    146146 
    147 #: xpressme_class.php:409 
     147#: xpressme_class.php:415 
    148148msgid "Thema Sidebar Display" 
    149149msgstr "テーマ表示時にサイドバー表示する。" 
    150150 
    151 #: xpressme_class.php:414 
     151#: xpressme_class.php:420 
    152152msgid "The change tracking of the post is preserved" 
    153153msgstr "投稿の変更履歴を有効にする。" 
    154154 
    155 #: xpressme_class.php:419 
     155#: xpressme_class.php:425 
    156156msgid "Display Navi Title of Old Post Link" 
    157157msgstr "古い記事へのナビタイトルを設定" 
    158158 
    159 #: xpressme_class.php:422 
     159#: xpressme_class.php:428 
    160160msgid "Display Navi Title of Newer Post Link" 
    161161msgstr "新しい記事へのナビタイトルを設定" 
    162162 
    163 #: xpressme_class.php:425 
     163#: xpressme_class.php:431 
    164164msgid "Select Display name of PostNavi Link" 
    165165msgstr "投稿記事リンクナビのタイトル設定" 
    166166 
    167 #: xpressme_class.php:426 
     167#: xpressme_class.php:432 
    168168msgid "Title of post" 
    169169msgstr "投稿記事のタイトルを表示" 
    170170 
    171 #: xpressme_class.php:427 
     171#: xpressme_class.php:433 
    172172msgid "Title of Navi" 
    173173msgstr "ナビタイトルを表示" 
    174174 
    175 #: xpressme_class.php:430 
     175#: xpressme_class.php:436 
    176176msgid "Adjustment of Navi link display position" 
    177177msgstr "投稿記事ナビリンクの表示位置設定" 
    178178 
    179 #: xpressme_class.php:431 
     179#: xpressme_class.php:437 
    180180msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right" 
    181181msgstr "古い記事へのリンクを左に、より新しい記事へのリンクを右に表示" 
    182182 
    183 #: xpressme_class.php:432 
     183#: xpressme_class.php:438 
    184184msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right" 
    185185msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示" 
    186186 
    187 #: xpressme_class.php:435 
     187#: xpressme_class.php:441 
    188188msgid "Is the posts author views counted?" 
    189189msgstr "投稿者の閲覧をカウントしますか?" 
    190190 
    191 #: xpressme_class.php:440 
     191#: xpressme_class.php:446 
    192192msgid "Is SQL debugging window displayed?" 
    193193msgstr "SQLデバッグウィンドを表示しますか?" 
    194194 
    195 #: xpressme_class.php:452 
     195#: xpressme_class.php:458 
    196196msgid "Update Config" 
    197197msgstr "更新" 
    198198 
    199 #: xpressme_class.php:453 
     199#: xpressme_class.php:459 
    200200msgid "Preset Config" 
    201201msgstr "プリセット" 
     
    206206msgstr "閲覧数 :%d" 
    207207 
     208#: include/custom_functions.php:266 
     209msgid "Main" 
     210msgstr "メイン" 
     211 
     212#: include/custom_functions.php:268 
     213#, php-format 
     214msgid "Archive for the &#8216;%s&#8217; Category" 
     215msgstr "カテゴリー &#8216;%s&#8217; のアーカイブ" 
     216 
     217#: include/custom_functions.php:270 
     218#, php-format 
     219msgid "Posts Tagged &#8216;%s&#8217;" 
     220msgstr "" 
     221 
     222#: include/custom_functions.php:272 
     223#, php-format 
     224msgid "Archive for %s|Daily archive page" 
     225msgstr "%sの日別アーカイブ" 
     226 
     227#: include/custom_functions.php:272 
     228msgid "F jS, Y" 
     229msgstr "Y年n月j日" 
     230 
     231#: include/custom_functions.php:274 
     232#, php-format 
     233msgid "Archive for %s|Monthly archive page" 
     234msgstr "%sの月別アーカイブ" 
     235 
     236#: include/custom_functions.php:274 
     237msgid "F, Y" 
     238msgstr "Y年n月" 
     239 
     240#: include/custom_functions.php:276 
     241#, php-format 
     242msgid "Archive for %s|Yearly archive page" 
     243msgstr "%sの年別アーカイブ " 
     244 
     245#: include/custom_functions.php:276 
     246msgid "Y" 
     247msgstr "Y年" 
     248 
     249#: include/custom_functions.php:278 
     250#, php-format 
     251msgid "Archive for the &#8216;%s&#8217; Author" 
     252msgstr "投稿者 &#8216;%s&#8217; のアーカイブ" 
     253 
     254#: include/custom_functions.php:280 
     255msgid "Search Results" 
     256msgstr "検索結果" 
     257 
  • trunk/wp-content/themes/xpress_default/index.php

    r140 r141  
    77                echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 
    88        }        
    9 ?> 
     9?>                               
     10 
    1011                <div class="xpress-header-bar"> 
    1112                        <div class="xpress-header-title"> 
  • trunk/wp-content/themes/xpress_default/ja.po

    r140 r141  
    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-29 01:21+0900\n" 
     20"PO-Revision-Date: 2009-03-29 12:52+0900\n" 
    2121"Last-Translator: toemon <toychee@toemon.com>\n" 
    2222"Language-Team: toemon <info@toemon.com>\n" 
     
    167167 
    168168#: xpress_default/comments.php:45 
    169 #: xpress_default/single.php:22 
    170169msgid "F jS, Y" 
    171170msgstr "Y 年 n 月 j 日" 
     
    354353#: xpress_default/image.php:13 
    355354#: xpress_default/index.php:46 
    356 #: xpress_default/single.php:25 
     355#: xpress_default/single.php:38 
    357356msgid "Read the rest of this entry &raquo;" 
    358357msgstr "この投稿の続きを読む &raquo;" 
     
    360359#: xpress_default/image.php:15 
    361360#: xpress_default/page.php:29 
    362 #: xpress_default/single.php:27 
     361#: xpress_default/single.php:40 
    363362msgid "Pages:" 
    364363msgstr "ページ:" 
     
    371370#: xpress_default/image.php:25 
    372371#: xpress_default/sidebar.php:24 
    373 #: xpress_default/single.php:36 
     372#: xpress_default/single.php:49 
    374373msgid "l, F jS, Y" 
    375374msgstr "Y 年 n 月 j 日 l" 
    376375 
    377376#: xpress_default/image.php:27 
    378 #: xpress_default/single.php:38 
     377#: xpress_default/single.php:51 
    379378#, php-format 
    380379msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed." 
     
    382381 
    383382#: xpress_default/image.php:31 
    384 #: xpress_default/single.php:45 
     383#: xpress_default/single.php:58 
    385384#, php-format 
    386385msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
     
    388387 
    389388#: xpress_default/image.php:35 
    390 #: xpress_default/single.php:49 
     389#: xpress_default/single.php:62 
    391390#, php-format 
    392391msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
     
    394393 
    395394#: xpress_default/image.php:39 
    396 #: xpress_default/single.php:53 
     395#: xpress_default/single.php:66 
    397396msgid "You can skip to the end and leave a response. Pinging is currently not allowed." 
    398397msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。" 
    399398 
    400399#: xpress_default/image.php:43 
    401 #: xpress_default/single.php:57 
     400#: xpress_default/single.php:70 
    402401msgid "Both comments and pings are currently closed." 
    403402msgstr "現在コメント、トラックバックともに受け付けておりません。" 
     
    409408 
    410409#: xpress_default/image.php:58 
    411 #: xpress_default/single.php:71 
     410#: xpress_default/single.php:84 
    412411msgid "Sorry, no posts matched your criteria." 
    413412msgstr "該当する投稿は見つかりませんでした。" 
    414413 
    415414#: xpress_default/index.php:21 
     415#: xpress_default/single.php:16 
    416416msgid "Mein Page" 
    417417msgstr "メインページ" 
    418418 
    419419#: xpress_default/index.php:22 
     420#: xpress_default/single.php:17 
    420421msgid "Post New" 
    421422msgstr "新規投稿" 
     
    423424#: xpress_default/index.php:31 
    424425#: xpress_default/index.php:70 
    425 #: xpress_default/search.php:27 
    426 #: xpress_default/search.php:45 
    427426msgid "&laquo; Older Entries" 
    428427msgstr "&laquo; 前ページへ" 
     
    430429#: xpress_default/index.php:32 
    431430#: xpress_default/index.php:71 
    432 #: xpress_default/search.php:28 
    433 #: xpress_default/search.php:46 
    434431msgid "Newer Entries &raquo;" 
    435432msgstr "次ページへ &raquo;" 
    436433 
    437434#: xpress_default/index.php:42 
    438 #: xpress_default/search.php:36 
     435#: xpress_default/single.php:33 
    439436#, php-format 
    440437msgid "Permanent Link to %s" 
     
    447444 
    448445#: xpress_default/index.php:56 
    449 #: xpress_default/search.php:39 
    450 #: xpress_default/single.php:28 
     446#: xpress_default/single.php:41 
    451447#, php-format 
    452448msgid "Posted in %s" 
     
    454450 
    455451#: xpress_default/index.php:58 
    456 #: xpress_default/search.php:39 
    457452msgid "Edit" 
    458453msgstr "編集" 
    459454 
    460455#: xpress_default/index.php:59 
    461 #: xpress_default/search.php:39 
    462456msgid "No Comments &#187;" 
    463457msgstr "コメントはまだありません &#187;" 
    464458 
    465459#: xpress_default/index.php:59 
    466 #: xpress_default/search.php:39 
    467460msgid "1 Comment &#187;" 
    468461msgstr "1 件のコメント &#187;" 
    469462 
    470463#: xpress_default/index.php:59 
    471 #: xpress_default/search.php:39 
    472464msgid "% Comments &#187;" 
    473465msgstr "% 件のコメント &#187;" 
    474466 
    475467#: xpress_default/index.php:59 
    476 #: xpress_default/search.php:39 
    477468msgid "Comments Closed" 
    478469msgstr "コメントは受け付けていません。" 
     
    494485msgstr "このページの続きを読む &raquo;" 
    495486 
    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 
     488msgid "Search for:" 
     489msgstr "検索:" 
     490 
     491#: xpress_default/searchform.php:4 
     492#: xpress_default/blocks/search_block_theme.php:13 
     493msgid "Search" 
     494msgstr "検索" 
     495 
     496#: xpress_default/sidebar.php:10 
     497msgid "Author" 
     498msgstr "作成者" 
     499 
     500#: xpress_default/sidebar.php:21 
     501#, php-format 
     502msgid "You are currently browsing the archives for the %s category." 
     503msgstr "%s カテゴリーのアーカイブを表示しています。" 
     504 
     505#: xpress_default/sidebar.php:24 
     506#, php-format 
     507msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s." 
     508msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。" 
     509 
     510#: xpress_default/sidebar.php:27 
     511#, php-format 
     512msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s." 
     513msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。" 
     514 
     515#: xpress_default/sidebar.php:27 
     516msgid "F, Y" 
     517msgstr "Y 年 n 月" 
     518 
     519#: xpress_default/sidebar.php:30 
     520#, php-format 
     521msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s." 
     522msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。" 
     523 
     524#: xpress_default/sidebar.php:33 
     525#, php-format 
     526msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links." 
     527msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。" 
     528 
     529#: xpress_default/sidebar.php:36 
     530#, php-format 
     531msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives." 
     532msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。" 
     533 
     534#: xpress_default/sidebar.php:42 
     535msgid "Pages" 
     536msgstr "ページ" 
     537 
     538#: xpress_default/sidebar.php:44 
     539msgid "Archives" 
     540msgstr "アーカイブ" 
     541 
     542#: xpress_default/sidebar.php:51 
     543#: xpress_default/sidebar.php:53 
     544msgid "Categories" 
     545msgstr "カテゴリー" 
     546 
     547#: xpress_default/sidebar.php:62 
     548msgid "Meta" 
     549msgstr "メタ情報" 
     550 
     551#: xpress_default/sidebar.php:66 
     552msgid "This page validates as XHTML 1.0 Transitional" 
     553msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する" 
     554 
     555#: xpress_default/sidebar.php:66 
     556msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 
     557msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 
     558 
     559#: xpress_default/sidebar.php:67 
     560msgid "XHTML Friends Network" 
     561msgstr "XHTML Friends Network" 
     562 
     563#: xpress_default/sidebar.php:67 
     564msgid "XFN" 
     565msgstr "XFN" 
     566 
     567#: xpress_default/sidebar.php:68 
     568msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." 
     569msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform." 
     570 
     571#: xpress_default/single.php:41 
    502572#: xpress_default/blocks/popular_posts_block_theme.php:109 
    503573#: xpress_default/blocks/recent_posts_content_block_theme.php:61 
     
    506576msgstr "タグ:" 
    507577 
    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>&#8216;%3$s&#8217;</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>&#8216;%3$s&#8217;</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 
    597579#, php-format 
    598580msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s." 
    599581msgstr "この投稿は %1$s %2$s %3$s に %4$s カテゴリーに公開されました。" 
    600582 
    601 #: xpress_default/single.php:40 
     583#: xpress_default/single.php:53 
    602584msgid "You can follow any responses to this entry through the" 
    603585msgstr "この投稿へのコメントは" 
    604586 
    605 #: xpress_default/single.php:40 
     587#: xpress_default/single.php:53 
    606588msgid "feed." 
    607589msgstr "フィードで購読することができます。" 
    608590 
    609 #: xpress_default/single.php:59 
     591#: xpress_default/single.php:72 
    610592msgid "Edit this entry" 
    611593msgstr "この投稿を編集 " 
  • trunk/wp-content/themes/xpress_default/single.php

    r64 r141  
    11<?php get_header(); ?> 
    22 
    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                                &nbsp;( <?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"> 
    1127 
    1228        <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
    1329 
    14                 <div class="xpress_single_navigation"> 
     30                <div class="xpress-navi-bar"> 
    1531                        <div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div> 
    1632                        <div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div> 
    1733                </div> 
    1834 
    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> 
    2342 
    24                         <div class="entry"> 
     43                        <div class="xpress-post-entry"> 
    2544                                <?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'xpress') . '</p>'); ?> 
    2645 
     
    7291 
    7392<?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> 
    7497 
    7598        </div> 
    76  
     99</div> 
     100<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 
     101<hr class="xpress-border"> 
    77102<?php get_footer(); ?> 
  • trunk/wp-content/themes/xpress_default/style.css

    r140 r141  
    227227 
    228228#xpress_content { 
    229         padding: 0 15px; 
     229        padding: 0px; 
    230230        } 
    231231         
  • trunk/xoops_version.php

    r138 r141  
    3131$modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 
    3232$modversion['description'] = constant( '_MI_XPRESS_DESC'); 
    33 $modversion['version'] = "0.17"; 
     33$modversion['version'] = "0.18"; 
    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'] = "r138"; 
     42$modversion['codename'] = "r141"; 
    4343 
    4444// onInstall, onUpdate, onUninstall 
     
    8787        $modversion['sub'][2]['name'] = constant( '_MI_XPRESS_MENU_EDIT'); 
    8888        $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"; 
    8993} 
    9094 
Note: See TracChangeset for help on using the changeset viewer.