XPressME Integration Kit

Trac

Changeset 150


Ignore:
Timestamp:
Apr 2, 2009, 6:37:19 PM (15 years ago)
Author:
toemon
Message:

bump Ver0.22 #85 トラックバックリスト表示実装 #80 デフォルトテーマデザイン完了

Location:
trunk
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/plugins/xpressme/include/custom_functions.php

    r147 r150  
    11<?php 
    22         
    3 function xpress_list_pings($comment, $args, $depth) { 
    4        $GLOBALS['comment'] = $comment; 
     3function xpress_list_pings($trackback, $args, $depth) { 
     4       $GLOBALS['comment'] = $trackback; 
    55        echo '<li id="comment-<?php comment_ID(); ?>">'; 
    66        comment_author_link(); 
     
    374374} 
    375375 
     376function xpress_pings_list($show = false){ 
     377         
     378        $trackbacks = xpress_get_pings(); 
     379        $output = '<ol id="xpress_pingslist"> '; 
     380 
     381        foreach ($trackbacks as $trackback){ 
     382                $list = date(get_settings('date_format'),$trackback['date']) . ' <a target="_blank" href="' . $trackback['site_url'] . '" rel="external nofollow">' . sprintf(__('From %1$s on site %2$s','xpressme'),$trackback['title'],$trackback['site_name']) . "</a>\n" ; 
     383 
     384                $output .=  '<li>'; 
     385                $output .=  $list ; 
     386                $output .=  '</li>'; 
     387 
     388        } 
     389        $output .= '</ol>' ; 
     390        if ($show) echo $output; else return $output; 
     391} 
     392 
     393function xpress_pings_number( $zero = false, $one = false, $more = false, $deprecated = '' ) { 
     394        $pings = xpress_get_pings(); 
     395        if (empty($pings)){ 
     396                $number = 0; 
     397        }else { 
     398                $number = count($pings); 
     399        } 
     400        if ( $number > 1 ) 
     401                $output = str_replace('%', number_format_i18n($number), ( false === $more ) ? __('% TrackBack/Pingback', 'xpressme') : $more); 
     402        elseif ( $number == 0 ) 
     403                $output = ( false === $zero ) ? __('No Trackback/Pingback', 'xpressme') : $zero; 
     404        else // must be one 
     405                $output = ( false === $one ) ? __('One Trackback/Pingback', 'xpressme') : $one; 
     406 
     407        echo $output; 
     408} 
     409 
     410 
     411function xpress_get_pings() 
     412{ 
     413        global $withcomments, $post, $wpdb, $id, $trackback, $user_login, $user_ID, $user_identity; 
     414 
     415        if ( ! (is_single() || is_page() || $withcomments) ) 
     416                return; 
     417 
     418        /** @todo Use API instead of SELECTs. */ 
     419        if ( $user_ID) { 
     420                $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND (comment_approved = '1' OR ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID)); 
     421        } else if ( empty($trackback_author) ) { 
     422                $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID)); 
     423        } else { 
     424                $trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND ( comment_approved = '1' OR ( comment_author = %s AND comment_author_email = %s AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $trackback_author, $trackback_author_email)); 
     425        } 
     426 
     427        if ($trackbacks){ 
     428                $ret = array(); 
     429                foreach ($trackbacks as $trackback){ 
     430 
     431                        $pattern = '<strong>(.*)<\/strong>(.*)'; 
     432                        if ( preg_match ( "/".$pattern."/i", $trackback->comment_content , $match ) ){ 
     433                                $title = $match[1]; 
     434                                $content = $match[2]; 
     435                        } 
     436                        if (empty($title)) $title = $trackback->comment_author; 
     437 
     438 
     439                        $row_data = array( 
     440                                'ID'            => $trackback->comment_ID , 
     441                                'post_ID'       => $trackback->comment_post_ID , 
     442                                'site_name' => $trackback->comment_author , 
     443                                'site_url' => $trackback->comment_author_url , 
     444                                'title' => $title , 
     445                                'content' => $content , 
     446                                'date'          => $trackback->comment_date , 
     447                                'date_gmt'              => $trackback->comment_date_gmt , 
     448                                'agent'         => $trackback->comment_agent , 
     449                                'type'          => $trackback->comment_type , 
     450                                'IP'            => $trackback->comment_author_IP , 
     451                        ); 
     452                        array_push($ret,$row_data); 
     453                } 
     454                return $ret; 
     455        } 
     456                        return false; 
     457} 
    376458?> 
  • trunk/wp-content/plugins/xpressme/language/xpressme-ja.po

    r147 r150  
    33"Project-Id-Version: XPressME Plugin\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2009-04-01 16:42+0900\n" 
     5"PO-Revision-Date: 2009-04-02 14:04+0900\n" 
    66"Last-Translator: toemon <toychee@toemon.com>\n" 
    77"Language-Team: \n" 
     
    342342msgstr "&#8216;%s&#8217; の検索結果" 
    343343 
     344#: include/custom_functions.php:382 
     345#, php-format 
     346msgid "From %1$s on site %2$s" 
     347msgstr "サイト %2$s の %1$s より" 
     348 
     349#: include/custom_functions.php:398 
     350#, fuzzy 
     351msgid "% TrackBack/Pingback" 
     352msgstr "トラックバック・ピンバック % 件" 
     353 
     354#: include/custom_functions.php:400 
     355msgid "No Trackback/Pingback" 
     356msgstr "トラックバック・ピンバックはありません" 
     357 
     358#: include/custom_functions.php:402 
     359msgid "One Trackback/Pingback" 
     360msgstr "トラックバック・ピンバック 1 件" 
     361 
    344362#: include/xpress_common_functions.php:202 
    345363msgid "Themes" 
  • trunk/wp-content/themes/xpress_default/comments.php

    r147 r150  
    1313 
    1414<?php if ( have_comments() ) : ?> 
    15         <?php if ( ! empty($comments_by_type['comment']) ) : ?> 
    16                 <h2 id="xpress_comments"><?php comments_number(__('No Responses', 'xpress'), __('One Response', 'xpress'), __('% Responses', 'xpress'));?> <?php printf(__('to &#8220;%s&#8221;', 'xpress'), the_title('', '', false)); ?></h2> 
     15        <?php if ( ! empty($comments_by_type['comment']) ) : ?> 
     16                <h3 id="xpress_comments"><?php comments_number(__('No Responses', 'xpress'), __('One Response', 'xpress'), __('% Responses', 'xpress'));?> <?php printf(__('to &#8220;%s&#8221;', 'xpress'), the_title('', '', false)); ?></h3> 
     17                <div id="xpress_commentlist"> 
     18                        <?php wp_list_comments('type=comment&style=div'); ?> 
     19                </div> 
     20        <?php endif; ?> 
     21         
     22        <div class="navigation"> 
     23                <div class="alignleft"><?php previous_comments_link() ?></div> 
     24                <div class="alignright"><?php next_comments_link() ?></div> 
     25        </div> 
     26<?php else : // this is displayed if there are no comments so far ?> 
    1727 
    18         <div id="xpress_commentlist"> 
    19         <?php wp_list_comments('type=comment&style=div'); ?> 
    20         </div> 
    21         <?php endif; ?> 
    22  
    23  
    24         <div class="navigation"> 
    25                 <div class="alignleft"><?php previous_comments_link() ?></div> 
    26                 <div class="alignright"><?php next_comments_link() ?></div> 
    27         </div> 
    28  <?php else : // this is displayed if there are no comments so far ?> 
    29  
    30         <?php if ('open' == $post->comment_status) : ?> 
    31                 <!-- If comments are open, but there are no comments. --> 
    32  
    33         <?php else : // comments are closed ?> 
    34                 <!-- If comments are closed. --> 
    35                 <p class="nocomments">Comments are closed.</p> 
    36  
    37         <?php endif; ?> 
     28        <?php if ('open' == $post->comment_status) : ?> 
     29                <!-- If comments are open, but there are no comments. --> 
     30        <?php else : // comments are closed ?> 
     31                <!-- If comments are closed. --> 
     32                <p class="nocomments">Comments are closed.</p> 
     33        <?php endif; ?> 
    3834<?php endif; ?> 
    3935 
     36<?php if ('open' == $post->comment_status) : ?> 
     37        <div id="xpress-respond"> 
    4038 
    41 <?php if ('open' == $post->comment_status) : ?> 
     39                <h3><?php comment_form_title( __('Leave a Reply', 'xpress'), __('Leave a Reply for %s' , 'xpress') ); ?></h3> 
     40        </div> 
     41                         
     42        <div id="cancel-comment-reply">  
     43                <small><?php cancel_comment_reply_link() ?></small> 
     44                </div>  
     45         
     46                <?php if ( get_option('comment_registration') && !$user_ID ) : ?> 
     47                        <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'xpress'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p> 
     48                <?php else : ?> 
     49                        <div id="xpress-comment-user"> 
     50                                <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 
     51                                <?php if ( $user_ID ) : ?> 
     52                                        <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'xpress'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account', 'xpress'); ?>"><?php _e('Log out &raquo;', 'xpress'); ?></a></p> 
     53                                <?php else : ?> 
     54                                        <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> 
     55                                        <label for="author"><small><?php _e('Name', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 
    4256 
    43 <div id="xpress-respond"> 
     57                                        <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> 
     58                                        <label for="email"><small><?php _e('Mail (will not be published)', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 
    4459 
    45 <h2><?php comment_form_title( __('Leave a Reply', 'xpress'), __('Leave a Reply for %s' , 'xpress') ); ?></h3> 
     60                                        <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> 
     61                                        <label for="url"><small><?php _e('Website', 'xpress'); ?></small></label></p> 
     62                                <?php endif; ?> 
     63                        </div> 
    4664 
    47 <div id="cancel-comment-reply">  
    48         <small><?php cancel_comment_reply_link() ?></small> 
    49 </div>  
    50          
    51 <div id="xpress-comment-user"> 
    52         <?php if ( get_option('comment_registration') && !$user_ID ) : ?> 
    53         <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'xpress'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p> 
    54         <?php else : ?> 
     65                        <div id="xpress-comment-form"> 
     66                                <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'xpress'), allowed_tags()); ?></small></p>--> 
    5567 
    56         <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 
    57  
    58         <?php if ( $user_ID ) : ?> 
    59  
    60         <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'xpress'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account', 'xpress'); ?>"><?php _e('Log out &raquo;', 'xpress'); ?></a></p> 
    61  
    62         <?php else : ?> 
    63  
    64         <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> 
    65         <label for="author"><small><?php _e('Name', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 
    66  
    67         <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> 
    68         <label for="email"><small><?php _e('Mail (will not be published)', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 
    69  
    70         <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> 
    71         <label for="url"><small><?php _e('Website', 'xpress'); ?></small></label></p> 
    72  
    73         <?php endif; ?> 
    74 </div> 
    75                  
    76 <div id="xpress-comment-form"> 
    77         <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'xpress'), allowed_tags()); ?></small></p>--> 
    78  
    79         <textarea name="comment" id="comment" cols="100" rows="5" tabindex="4" style="width:100%"></textarea> 
    80         <div class ="xpress-comment-submit"> 
    81                 <input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment', 'xpress'); ?>" /> 
     68                                <textarea name="comment" id="comment" cols="100" rows="5" tabindex="4" style="width:100%"></textarea> 
     69                                <div class ="xpress-comment-submit"> 
     70                                        <input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment', 'xpress'); ?>" /> 
     71                                </div> 
     72                                <?php comment_id_fields(); ?>    
     73                                <?php do_action('comment_form', $post->ID); ?> 
     74                                </form> 
     75                        </div> 
     76                <?php endif; // If registration required and not logged in ?> 
    8277        </div> 
    83         <?php comment_id_fields(); ?>    
    84         <?php do_action('comment_form', $post->ID); ?> 
    85         </form> 
    86 <div> 
    87 <?php endif; // If registration required and not logged in ?> 
    88 </div> 
    8978 
    9079<?php endif; // if you delete this the sky will fall on your head ?> 
  • trunk/wp-content/themes/xpress_default/index.php

    r147 r150  
    11<?php get_header(); ?> 
    2 <div id="xpress_wrap"> 
    3 <?php 
    4         if(xpress_is_theme_sidebar_disp()) { 
    5                 echo '<div id="xpress_content" class="narrowcolumn">';   
    6         } else { 
    7                 echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 
    8         }        
    9 ?>                               
    102 
    11                 <div id="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"> 
     3<div id="xpress-header-bar"> 
     4        <div class="xpress-header-title"> 
     5                <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> 
     6        </div> 
     7        <div class="xpress-conditional-title"> 
     8                &nbsp;( <?php xpress_conditional_title();?> ) 
     9        </div> 
     10        <div class="xpress-description"> 
     11                <?php bloginfo('description'); ?> 
     12        </div> 
     13        <div class="xpress-operation-link"> 
     14                <a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a>  
     15                <?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?> 
     16        </div> 
     17</div> 
     18<hr class="xpress-border"></hr> 
     19                 
     20<div id="xpress_wrap">                           
     21        <?php 
     22                if(xpress_is_theme_sidebar_disp()) { 
     23                        echo '<div id="xpress_content" class="narrowcolumn">';   
     24                } else { 
     25                        echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 
     26                }        
     27        ?>                               
    2728                <?php if (have_posts()) : ?> 
    2829                        <div class="xpress-navi-bar"> 
     
    4142                                                <?php if (function_exists('hotDates')) { hotDates(); }?> 
    4243                                                <div class ="xpress-post-title"> 
    43                                                         <h3><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> 
     44                                                        <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> 
    4445                                                </div> 
    4546                                        </div> 
     
    8586</div> 
    8687<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 
    87 <hr class="xpress-border"> 
     88<hr class="xpress-border"></hr> 
    8889<?php get_footer(); ?> 
  • trunk/wp-content/themes/xpress_default/ja.po

    r147 r150  
    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-04-01 16:55+0900\n" 
     20"PO-Revision-Date: 2009-04-02 18:19+0900\n" 
    2121"Last-Translator: toemon <toychee@toemon.com>\n" 
    2222"Language-Team: toemon <info@toemon.com>\n" 
     
    2828"X-Poedit-SourceCharset: utf-8\n" 
    2929"X-Poedit-KeywordsList: __;_e;_c\n" 
    30 "X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\\n" 
     30"X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\xpress_default\n" 
    3131"Plural-Forms: nplurals=1; plural=0;\n" 
    32 "X-Poedit-SearchPath-0: xpress_default\n" 
    33  
    34 #: xpress_default/404.php:22 
     32"X-Poedit-SearchPath-0: .\n" 
     33 
     34#: 404.php:22 
    3535msgid "Error 404 - Not Found" 
    3636msgstr "エラー 404 - 見つかりませんでした" 
    3737 
    38 #: xpress_default/archives.php:20 
     38#: archives.php:20 
    3939msgid "Archives by Month:" 
    4040msgstr "月別のアーカイブ:" 
    4141 
    42 #: xpress_default/archives.php:25 
     42#: archives.php:25 
    4343msgid "Archives by Subject:" 
    4444msgstr "カテゴリー別アーカイブ:" 
    4545 
    46 #: xpress_default/comments-popup.php:9 
     46#: comments-popup.php:9 
    4747#, php-format 
    4848msgid "%1$s - Comments on %2$s" 
    4949msgstr "%1$s - %2$s へのコメント" 
    5050 
    51 #: xpress_default/comments-popup.php:22 
     51#: comments-popup.php:22 
    5252msgid "Comments" 
    5353msgstr "コメント" 
    5454 
    55 #: xpress_default/comments-popup.php:24 
     55#: comments-popup.php:24 
    5656msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post." 
    5757msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード" 
    5858 
    59 #: xpress_default/comments-popup.php:27 
     59#: comments-popup.php:27 
    6060#, php-format 
    6161msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>" 
    6262msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>" 
    6363 
    64 #: xpress_default/comments-popup.php:45 
     64#: comments-popup.php:45 
    6565msgid "Comment" 
    6666msgstr "コメント" 
    6767 
    68 #: xpress_default/comments-popup.php:45 
     68#: comments-popup.php:45 
    6969msgid "Trackback" 
    7070msgstr "トラックバック" 
    7171 
    72 #: xpress_default/comments-popup.php:45 
     72#: comments-popup.php:45 
    7373msgid "Pingback" 
    7474msgstr "ピンバック" 
    7575 
    76 #: xpress_default/comments-popup.php:45 
     76#: comments-popup.php:45 
    7777#, php-format 
    7878msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>" 
    7979msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より" 
    8080 
    81 #: xpress_default/comments-popup.php:51 
     81#: comments-popup.php:51 
    8282msgid "No comments yet." 
    8383msgstr "コメントはまだありません。" 
    8484 
    85 #: xpress_default/comments-popup.php:55 
     85#: comments-popup.php:55 
    8686msgid "Leave a comment" 
    8787msgstr "コメントをどうぞ" 
    8888 
    89 #: xpress_default/comments-popup.php:56 
     89#: comments-popup.php:56 
    9090#, php-format 
    9191msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>" 
    9292msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>" 
    9393 
    94 #: xpress_default/comments-popup.php:60 
     94#: comments-popup.php:60 
    9595#, php-format 
    9696msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>" 
    9797msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>" 
    9898 
    99 #: xpress_default/comments-popup.php:64 
    100 #: xpress_default/comments.php:95 
     99#: comments-popup.php:64 
     100#: comments.php:55 
    101101msgid "Name" 
    102102msgstr "お名前" 
    103103 
    104 #: xpress_default/comments-popup.php:71 
     104#: comments-popup.php:71 
    105105msgid "E-mail" 
    106106msgstr "メールアドレス" 
    107107 
    108 #: xpress_default/comments-popup.php:76 
     108#: comments-popup.php:76 
    109109msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
    110110msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
    111111 
    112 #: xpress_default/comments-popup.php:81 
     112#: comments-popup.php:81 
    113113msgid "Your Comment" 
    114114msgstr "コメント" 
    115115 
    116 #: xpress_default/comments-popup.php:87 
     116#: comments-popup.php:87 
    117117msgid "Say It!" 
    118118msgstr "送信する !" 
    119119 
    120 #: xpress_default/comments-popup.php:92 
     120#: comments-popup.php:92 
    121121msgid "Sorry, the comment form is closed at this time." 
    122122msgstr "コメントフォームは現在閉鎖中です。" 
    123123 
    124 #: xpress_default/comments-popup.php:97 
     124#: comments-popup.php:97 
    125125msgid "Close this window." 
    126126msgstr "このウインドウを閉じる。" 
    127127 
    128 #: xpress_default/comments-popup.php:105 
     128#: comments-popup.php:105 
    129129#, php-format 
    130130msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
    131131msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
    132132 
    133 #: xpress_default/comments.php:9 
     133#: comments.php:6 
    134134msgid "This post is password protected. Enter the password to view comments." 
    135135msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。" 
    136136 
    137 #: xpress_default/comments.php:23 
     137#: comments.php:16 
    138138msgid "No Responses" 
    139139msgstr "コメント はありません" 
    140140 
    141 #: xpress_default/comments.php:23 
     141#: comments.php:16 
    142142msgid "One Response" 
    143143msgstr "コメント 1 件" 
    144144 
    145 #: xpress_default/comments.php:23 
     145#: comments.php:16 
    146146msgid "% Responses" 
    147147msgstr "コメント % 件" 
    148148 
    149 #: xpress_default/comments.php:23 
     149#: comments.php:16 
    150150#, php-format 
    151151msgid "to &#8220;%s&#8221;" 
    152152msgstr "<!-- to &#8220;%s&#8221; -->" 
    153153 
    154 #: xpress_default/comments.php:39 
    155 #, php-format 
    156 msgid "<cite>%s</cite> Says:" 
    157 msgstr "<cite>%s</cite> より: " 
    158  
    159 #: xpress_default/comments.php:41 
    160 msgid "Your comment is awaiting moderation." 
    161 msgstr "コメントは管理者の承認待ちです。" 
    162  
    163 #: xpress_default/comments.php:45 
    164 #, php-format 
    165 msgid "%1$s at %2$s" 
    166 msgstr "%1$s %2$s" 
    167  
    168 #: xpress_default/comments.php:45 
    169 msgid "F jS, Y" 
    170 msgstr "Y 年 n 月 j 日" 
    171  
    172 #: xpress_default/comments.php:45 
    173 msgid "edit" 
    174 msgstr "編集" 
    175  
    176 #: xpress_default/comments.php:67 
    177 msgid "Comments are closed." 
    178 msgstr "コメントは受け付けていません。" 
    179  
    180 #: xpress_default/comments.php:75 
     154#: comments.php:39 
    181155msgid "Leave a Reply" 
    182156msgstr "コメントをどうぞ" 
    183157 
    184 #: xpress_default/comments.php:75 
     158#: comments.php:39 
     159#, php-format 
    185160msgid "Leave a Reply for %s" 
    186161msgstr "%s にコメントする" 
    187162 
    188 #: xpress_default/comments.php:83 
     163#: comments.php:47 
    189164#, php-format 
    190165msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
    191166msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 
    192167 
    193 #: xpress_default/comments.php:90 
     168#: comments.php:52 
    194169#, php-format 
    195170msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
    196171msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 
    197172 
    198 #: xpress_default/comments.php:90 
     173#: comments.php:52 
    199174msgid "Log out of this account" 
    200175msgstr "このアカウントからログアウト" 
    201176 
    202 #: xpress_default/comments.php:90 
     177#: comments.php:52 
    203178msgid "Log out &raquo;" 
    204179msgstr "ログアウト &raquo;" 
    205180 
    206 #: xpress_default/comments.php:95 
    207 #: xpress_default/comments.php:98 
     181#: comments.php:55 
     182#: comments.php:58 
    208183msgid "(required)" 
    209184msgstr " (必須)" 
    210185 
    211 #: xpress_default/comments.php:98 
     186#: comments.php:58 
    212187msgid "Mail (will not be published)" 
    213188msgstr "メールアドレス (公開されません)" 
    214189 
    215 #: xpress_default/comments.php:101 
     190#: comments.php:61 
    216191msgid "Website" 
    217192msgstr "ウェブサイト" 
    218193 
    219 #: xpress_default/comments.php:105 
     194#: comments.php:66 
    220195#, php-format 
    221196msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
    222197msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 
    223198 
    224 #: xpress_default/comments.php:109 
     199#: comments.php:70 
    225200msgid "Submit Comment" 
    226201msgstr "コメント送信" 
    227202 
    228 #: xpress_default/footer.php:3 
     203#: footer.php:3 
    229204#, php-format 
    230205msgid "%1$s and %2$s." 
    231206msgstr "%1$s と %2$s" 
    232207 
    233 #: xpress_default/footer.php:3 
     208#: footer.php:3 
    234209msgid "Entries (RSS)" 
    235210msgstr "投稿 (RSS)" 
    236211 
    237 #: xpress_default/footer.php:3 
     212#: footer.php:3 
    238213msgid "Comments (RSS)" 
    239214msgstr "コメント (RSS)" 
    240215 
    241 #: xpress_default/footer.php:5 
     216#: footer.php:5 
    242217#, php-format 
    243218msgid "%d queries. %s seconds." 
    244219msgstr "%d 個のクエリと %s 秒を要しました。" 
    245220 
    246 #: xpress_default/functions.php:149 
     221#: functions.php:149 
    247222msgid "Customize Header" 
    248223msgstr "ヘッダーのカスタマイズ" 
    249224 
    250 #: xpress_default/functions.php:149 
    251 #: xpress_default/functions.php:363 
     225#: functions.php:149 
     226#: functions.php:363 
    252227msgid "Header Image and Color" 
    253228msgstr "ヘッダーの背景と文字の色" 
    254229 
    255 #: xpress_default/functions.php:162 
     230#: functions.php:162 
    256231msgid "Close Color Picker" 
    257232msgstr "カラーピッカーを閉じる" 
    258233 
    259 #: xpress_default/functions.php:359 
     234#: functions.php:359 
    260235msgid "Options saved." 
    261236msgstr "設定を保存しました。" 
    262237 
    263 #: xpress_default/functions.php:376 
    264 #: xpress_default/functions.php:383 
     238#: functions.php:376 
     239#: functions.php:383 
    265240msgid "Save" 
    266241msgstr "保存" 
    267242 
    268 #: xpress_default/functions.php:377 
     243#: functions.php:377 
    269244msgid "Font Color:" 
    270245msgstr "フォントの色:" 
    271246 
    272 #: xpress_default/functions.php:377 
     247#: functions.php:377 
    273248#, php-format 
    274249msgid "Any CSS color (%s or %s or %s)" 
    275250msgstr "CSS 色指定 (%s 、%s もしくは %s)" 
    276251 
    277 #: xpress_default/functions.php:378 
     252#: functions.php:378 
    278253msgid "Upper Color:" 
    279254msgstr "グラデーション上側の色:" 
    280255 
    281 #: xpress_default/functions.php:378 
    282 #: xpress_default/functions.php:379 
     256#: functions.php:378 
     257#: functions.php:379 
    283258#, php-format 
    284259msgid "HEX only (%s or %s)" 
    285260msgstr "16 進数のみ (%s もしくは %s)" 
    286261 
    287 #: xpress_default/functions.php:379 
     262#: functions.php:379 
    288263msgid "Lower Color:" 
    289264msgstr "グラデーション下側の色:" 
    290265 
    291 #: xpress_default/functions.php:381 
     266#: functions.php:381 
    292267msgid "Toggle Text" 
    293268msgstr "テキスト表示の切替え" 
    294269 
    295 #: xpress_default/functions.php:382 
     270#: functions.php:382 
    296271msgid "Use Defaults" 
    297272msgstr "デフォルト設定に戻す" 
    298273 
    299 #: xpress_default/functions.php:391 
     274#: functions.php:391 
    300275msgid "Font Color" 
    301276msgstr "フォントの色" 
    302277 
    303 #: xpress_default/functions.php:392 
     278#: functions.php:392 
    304279msgid "Upper Color" 
    305280msgstr "グラデーション上側の色" 
    306281 
    307 #: xpress_default/functions.php:393 
     282#: functions.php:393 
    308283msgid "Lower Color" 
    309284msgstr "グラデーション下側の色" 
    310285 
    311 #: xpress_default/functions.php:394 
     286#: functions.php:394 
    312287msgid "Revert" 
    313288msgstr "取り消し" 
    314289 
    315 #: xpress_default/functions.php:395 
     290#: functions.php:395 
    316291msgid "Advanced" 
    317292msgstr "詳細" 
    318293 
    319 #: xpress_default/functions.php:402 
     294#: functions.php:402 
    320295msgid "Update Header &raquo;" 
    321296msgstr "ヘッダーを更新 &raquo;" 
    322297 
    323 #: xpress_default/functions.php:408 
     298#: functions.php:408 
    324299msgid "Font Color (CSS):" 
    325300msgstr "フォントの色 (CSS):" 
    326301 
    327 #: xpress_default/functions.php:409 
     302#: functions.php:409 
    328303msgid "Upper Color (HEX):" 
    329304msgstr "グラデーション上側の色 (16 進数):" 
    330305 
    331 #: xpress_default/functions.php:410 
     306#: functions.php:410 
    332307msgid "Lower Color (HEX):" 
    333308msgstr "グラデーション下側の色 (16 進数):" 
    334309 
    335 #: xpress_default/functions.php:411 
     310#: functions.php:411 
    336311msgid "Select Default Colors" 
    337312msgstr "デフォルト設定に戻す" 
    338313 
    339 #: xpress_default/functions.php:412 
     314#: functions.php:412 
    340315msgid "Toggle Text Display" 
    341316msgstr "テキスト表示の切替え" 
    342317 
    343 #: xpress_default/header.php:9 
     318#: header.php:9 
    344319msgid "&raquo; Blog Archive" 
    345320msgstr "&raquo; ブログアーカイブ" 
    346321 
    347 #: xpress_default/header.php:14 
     322#: header.php:14 
    348323#, php-format 
    349324msgid "%s RSS Feed" 
    350325msgstr "%s RSS フィード" 
    351326 
    352 #: xpress_default/header.php:15 
     327#: header.php:15 
    353328#, php-format 
    354329msgid "%s Atom Feed" 
    355330msgstr "%s Atom フィード" 
    356331 
    357 #: xpress_default/image.php:13 
    358 #: xpress_default/index.php:46 
    359 #: xpress_default/single.php:38 
     332#: image.php:13 
     333#: index.php:48 
     334#: single.php:43 
    360335msgid "Read the rest of this entry &raquo;" 
    361336msgstr "この投稿の続きを読む &raquo;" 
    362337 
    363 #: xpress_default/image.php:15 
    364 #: xpress_default/page.php:29 
    365 #: xpress_default/single.php:40 
     338#: image.php:15 
     339#: page.php:29 
    366340msgid "Pages:" 
    367341msgstr "ページ:" 
    368342 
    369 #: xpress_default/image.php:25 
     343#: image.php:25 
    370344#, php-format 
    371345msgid "This entry was posted on %1$s at %2$s and is filed under %3$s." 
    372346msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。" 
    373347 
    374 #: xpress_default/image.php:25 
    375 #: xpress_default/sidebar.php:24 
    376 #: xpress_default/single.php:49 
     348#: image.php:25 
     349#: sidebar.php:24 
    377350msgid "l, F jS, Y" 
    378351msgstr "Y 年 n 月 j 日 l" 
    379352 
    380 #: xpress_default/image.php:27 
    381 #: xpress_default/single.php:51 
     353#: image.php:27 
    382354#, php-format 
    383355msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed." 
    384356msgstr "この投稿へのコメントは <a href='%s'>RSS 2.0</a> フィードで購読することができます。" 
    385357 
    386 #: xpress_default/image.php:31 
    387 #: xpress_default/single.php:58 
     358#: image.php:31 
    388359#, php-format 
    389360msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
    390361msgstr "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>することができます。" 
    391362 
    392 #: xpress_default/image.php:35 
    393 #: xpress_default/single.php:62 
     363#: image.php:35 
    394364#, php-format 
    395365msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
    396366msgstr "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。" 
    397367 
    398 #: xpress_default/image.php:39 
    399 #: xpress_default/single.php:66 
     368#: image.php:39 
    400369msgid "You can skip to the end and leave a response. Pinging is currently not allowed." 
    401370msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。" 
    402371 
    403 #: xpress_default/image.php:43 
    404 #: xpress_default/single.php:70 
     372#: image.php:43 
    405373msgid "Both comments and pings are currently closed." 
    406374msgstr "現在コメント、トラックバックともに受け付けておりません。" 
    407375 
    408 #: xpress_default/image.php:45 
    409 #: xpress_default/page.php:34 
     376#: image.php:45 
     377#: page.php:34 
    410378msgid "Edit this entry." 
    411379msgstr "この投稿を編集する。" 
    412380 
    413 #: xpress_default/image.php:58 
    414 #: xpress_default/single.php:84 
     381#: image.php:58 
     382#: single.php:81 
    415383msgid "Sorry, no posts matched your criteria." 
    416384msgstr "該当する投稿は見つかりませんでした。" 
    417385 
    418 #: xpress_default/index.php:21 
    419 #: xpress_default/single.php:16 
     386#: index.php:14 
     387#: single.php:14 
    420388msgid "Mein Page" 
    421389msgstr "メインページ" 
    422390 
    423 #: xpress_default/index.php:22 
    424 #: xpress_default/single.php:17 
     391#: index.php:15 
     392#: single.php:15 
    425393msgid "Post New" 
    426394msgstr "新規投稿" 
    427395 
    428 #: xpress_default/index.php:31 
    429 #: xpress_default/index.php:70 
    430 msgid "&laquo; Older Entries" 
    431 msgstr "&laquo; 前ページへ" 
    432  
    433 #: xpress_default/index.php:32 
    434 #: xpress_default/index.php:71 
    435 msgid "Newer Entries &raquo;" 
    436 msgstr "次ページへ &raquo;" 
    437  
    438 #: xpress_default/index.php:42 
    439 #: xpress_default/single.php:33 
     396#: index.php:44 
     397#: single.php:38 
    440398#, php-format 
    441399msgid "Permanent Link to %s" 
    442400msgstr "%s のパーマリンク" 
    443401 
    444 #: xpress_default/index.php:53 
     402#: index.php:56 
     403#: single.php:53 
    445404#, php-format 
    446405msgid "Views :%d" 
    447406msgstr "閲覧 :%d" 
    448407 
    449 #: xpress_default/index.php:56 
    450 #: xpress_default/single.php:41 
     408#: index.php:59 
     409#: single.php:56 
    451410#, php-format 
    452411msgid "Posted in %s" 
    453412msgstr "カテゴリー: %s" 
    454413 
    455 #: xpress_default/index.php:58 
     414#: index.php:61 
     415#: single.php:58 
    456416msgid "Edit" 
    457417msgstr "編集" 
    458418 
    459 #: xpress_default/index.php:59 
     419#: index.php:62 
     420#: single.php:59 
    460421msgid "No Comments &#187;" 
    461422msgstr "コメントはまだありません &#187;" 
    462423 
    463 #: xpress_default/index.php:59 
     424#: index.php:62 
     425#: single.php:59 
    464426msgid "1 Comment &#187;" 
    465427msgstr "1 件のコメント &#187;" 
    466428 
    467 #: xpress_default/index.php:59 
     429#: index.php:62 
     430#: single.php:59 
    468431msgid "% Comments &#187;" 
    469432msgstr "% 件のコメント &#187;" 
    470433 
    471 #: xpress_default/index.php:59 
     434#: index.php:62 
     435#: single.php:59 
    472436msgid "Comments Closed" 
    473437msgstr "コメントは受け付けていません。" 
    474438 
    475 #: xpress_default/index.php:77 
     439#: index.php:80 
    476440msgid "Not Found" 
    477441msgstr "見つかりませんでした。" 
    478442 
    479 #: xpress_default/index.php:78 
     443#: index.php:81 
    480444msgid "Sorry, but you are looking for something that isn&#8217;t here." 
    481445msgstr "お探しの物はここにはありません。" 
    482446 
    483 #: xpress_default/links.php:18 
     447#: links.php:18 
    484448msgid "Links:" 
    485449msgstr "リンク:" 
    486450 
    487 #: xpress_default/page.php:27 
     451#: page.php:27 
    488452msgid "Read the rest of this page &raquo;" 
    489453msgstr "このページの続きを読む &raquo;" 
    490454 
    491 #: xpress_default/searchform.php:2 
     455#: searchform.php:2 
    492456msgid "Search for:" 
    493457msgstr "検索:" 
    494458 
    495 #: xpress_default/searchform.php:4 
    496 #: xpress_default/blocks/search_block_theme.php:13 
     459#: searchform.php:4 
     460#: blocks/search_block_theme.php:13 
    497461msgid "Search" 
    498462msgstr "検索" 
    499463 
    500 #: xpress_default/sidebar.php:10 
     464#: sidebar.php:10 
    501465msgid "Author" 
    502466msgstr "作成者" 
    503467 
    504 #: xpress_default/sidebar.php:21 
     468#: sidebar.php:21 
    505469#, php-format 
    506470msgid "You are currently browsing the archives for the %s category." 
    507471msgstr "%s カテゴリーのアーカイブを表示しています。" 
    508472 
    509 #: xpress_default/sidebar.php:24 
     473#: sidebar.php:24 
    510474#, php-format 
    511475msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s." 
    512476msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。" 
    513477 
    514 #: xpress_default/sidebar.php:27 
     478#: sidebar.php:27 
    515479#, php-format 
    516480msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s." 
    517481msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。" 
    518482 
    519 #: xpress_default/sidebar.php:27 
     483#: sidebar.php:27 
    520484msgid "F, Y" 
    521485msgstr "Y 年 n 月" 
    522486 
    523 #: xpress_default/sidebar.php:30 
     487#: sidebar.php:30 
    524488#, php-format 
    525489msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s." 
    526490msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。" 
    527491 
    528 #: xpress_default/sidebar.php:33 
     492#: sidebar.php:33 
    529493#, php-format 
    530494msgid "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." 
    531495msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。" 
    532496 
    533 #: xpress_default/sidebar.php:36 
     497#: sidebar.php:36 
    534498#, php-format 
    535499msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives." 
    536500msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。" 
    537501 
    538 #: xpress_default/sidebar.php:42 
     502#: sidebar.php:42 
    539503msgid "Pages" 
    540504msgstr "ページ" 
    541505 
    542 #: xpress_default/sidebar.php:44 
     506#: sidebar.php:44 
    543507msgid "Archives" 
    544508msgstr "アーカイブ" 
    545509 
    546 #: xpress_default/sidebar.php:51 
    547 #: xpress_default/sidebar.php:53 
     510#: sidebar.php:51 
     511#: sidebar.php:53 
    548512msgid "Categories" 
    549513msgstr "カテゴリー" 
    550514 
    551 #: xpress_default/sidebar.php:62 
     515#: sidebar.php:62 
    552516msgid "Meta" 
    553517msgstr "メタ情報" 
    554518 
    555 #: xpress_default/sidebar.php:66 
     519#: sidebar.php:66 
    556520msgid "This page validates as XHTML 1.0 Transitional" 
    557521msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する" 
    558522 
    559 #: xpress_default/sidebar.php:66 
     523#: sidebar.php:66 
    560524msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 
    561525msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>" 
    562526 
    563 #: xpress_default/sidebar.php:67 
     527#: sidebar.php:67 
    564528msgid "XHTML Friends Network" 
    565529msgstr "XHTML Friends Network" 
    566530 
    567 #: xpress_default/sidebar.php:67 
     531#: sidebar.php:67 
    568532msgid "XFN" 
    569533msgstr "XFN" 
    570534 
    571 #: xpress_default/sidebar.php:68 
     535#: sidebar.php:68 
    572536msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." 
    573537msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform." 
    574538 
    575 #: xpress_default/single.php:41 
    576 #: xpress_default/blocks/popular_posts_block_theme.php:109 
    577 #: xpress_default/blocks/recent_posts_content_block_theme.php:61 
    578 #: xpress_default/blocks/recent_posts_list_block_theme.php:56 
     539#: single.php:64 
     540msgid "No Trackback/Pingback" 
     541msgstr "トラックバック・ピンバックはありません" 
     542 
     543#: single.php:64 
     544msgid "One Trackback/Pingback" 
     545msgstr "トラックバック・ピンバック 1 件" 
     546 
     547#: single.php:64 
     548msgid "% TrackBack/Pingback" 
     549msgstr "トラックバック・ピンバック % 件" 
     550 
     551#: blocks/archives_block_theme.php:13 
     552msgid "Select Yearly" 
     553msgstr "年を選択" 
     554 
     555#: blocks/archives_block_theme.php:16 
     556#: blocks/archives_block_theme.php:28 
     557msgid "Select Monthly" 
     558msgstr "月を選択" 
     559 
     560#: blocks/archives_block_theme.php:19 
     561msgid "Select Weekly" 
     562msgstr "週を選択" 
     563 
     564#: blocks/archives_block_theme.php:22 
     565msgid "Select Daily" 
     566msgstr "日を選択" 
     567 
     568#: blocks/archives_block_theme.php:25 
     569msgid "Select Post" 
     570msgstr "記事を選択" 
     571 
     572#: blocks/calender_block_theme.php:71 
     573msgid "Calendar" 
     574msgstr "カレンダー" 
     575 
     576#: blocks/calender_block_theme.php:72 
     577#, php-format 
     578msgid "%1$s %2$s|Used as a calendar caption" 
     579msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます" 
     580 
     581#: blocks/calender_block_theme.php:104 
     582#: blocks/calender_block_theme.php:114 
     583#, php-format 
     584msgid "View posts for %1$s %2$s" 
     585msgstr "%2$s 年 %1$s の投稿を表示" 
     586 
     587#: blocks/enhanced_block_theme.php:11 
     588msgid "The include file name to display it is not set." 
     589msgstr "表示を行うためのインクルードファイル名が設定されていません。" 
     590 
     591#: blocks/enhanced_block_theme.php:13 
     592#, php-format 
     593msgid "File %s not exist." 
     594msgstr "ファイル %s が見つかりません。" 
     595 
     596#: blocks/enhanced_block_theme.php:19 
     597msgid "PHP code error" 
     598msgstr "PHPコードにエラーがあります。" 
     599 
     600#: blocks/meta_block_theme.php:24 
     601msgid "Posts RSS" 
     602msgstr "投稿の RSS" 
     603 
     604#: blocks/meta_block_theme.php:27 
     605msgid "Comments RSS" 
     606msgstr "コメント のRSS" 
     607 
     608#: blocks/meta_block_theme.php:39 
     609msgid "Add New" 
     610msgstr "新規投稿" 
     611 
     612#: blocks/meta_block_theme.php:47 
     613msgid "Site Admin" 
     614msgstr "WordPress管理" 
     615 
     616#: blocks/meta_block_theme.php:53 
     617msgid "User Profile" 
     618msgstr "ユーザープロファイル" 
     619 
     620#: blocks/meta_block_theme.php:61 
     621#: blocks/meta_block_theme.php:66 
     622msgid "Subscription management" 
     623msgstr "メール購読の設定" 
     624 
     625#: blocks/meta_block_theme.php:74 
     626msgid "ReadMe" 
     627msgstr "ReadMe表示" 
     628 
     629#: blocks/meta_block_theme.php:79 
     630msgid "Themes" 
     631msgstr "テーマ選択" 
     632 
     633#: blocks/popular_posts_block_theme.php:114 
     634#: blocks/recent_posts_content_block_theme.php:62 
     635#: blocks/recent_posts_list_block_theme.php:60 
    579636msgid "Tags:" 
    580637msgstr "タグ:" 
    581638 
    582 #: xpress_default/single.php:49 
    583 #, php-format 
    584 msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s." 
    585 msgstr "この投稿は %1$s %2$s %3$s に %4$s カテゴリーに公開されました。" 
    586  
    587 #: xpress_default/single.php:53 
    588 msgid "You can follow any responses to this entry through the" 
    589 msgstr "この投稿へのコメントは" 
    590  
    591 #: xpress_default/single.php:53 
    592 msgid "feed." 
    593 msgstr "フィードで購読することができます。" 
    594  
    595 #: xpress_default/single.php:72 
    596 msgid "Edit this entry" 
    597 msgstr "この投稿を編集 " 
    598  
    599 #: xpress_default/blocks/archives_block_theme.php:13 
    600 msgid "Select Yearly" 
    601 msgstr "年を選択" 
    602  
    603 #: xpress_default/blocks/archives_block_theme.php:16 
    604 #: xpress_default/blocks/archives_block_theme.php:28 
    605 msgid "Select Monthly" 
    606 msgstr "月を選択" 
    607  
    608 #: xpress_default/blocks/archives_block_theme.php:19 
    609 msgid "Select Weekly" 
    610 msgstr "週を選択" 
    611  
    612 #: xpress_default/blocks/archives_block_theme.php:22 
    613 msgid "Select Daily" 
    614 msgstr "日を選択" 
    615  
    616 #: xpress_default/blocks/archives_block_theme.php:25 
    617 msgid "Select Post" 
    618 msgstr "記事を選択" 
    619  
    620 #: xpress_default/blocks/calender_block_theme.php:71 
    621 msgid "Calendar" 
    622 msgstr "カレンダー" 
    623  
    624 #: xpress_default/blocks/calender_block_theme.php:72 
    625 #, php-format 
    626 msgid "%1$s %2$s|Used as a calendar caption" 
    627 msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます" 
    628  
    629 #: xpress_default/blocks/calender_block_theme.php:104 
    630 #: xpress_default/blocks/calender_block_theme.php:114 
    631 #, php-format 
    632 msgid "View posts for %1$s %2$s" 
    633 msgstr "%2$s 年 %1$s の投稿を表示" 
    634  
    635 #: xpress_default/blocks/enhanced_block_theme.php:11 
    636 msgid "The include file name to display it is not set." 
    637 msgstr "表示を行うためのインクルードファイル名が設定されていません。" 
    638  
    639 #: xpress_default/blocks/enhanced_block_theme.php:13 
    640 #, php-format 
    641 msgid "File %s not exist." 
    642 msgstr "ファイル %s が見つかりません。" 
    643  
    644 #: xpress_default/blocks/enhanced_block_theme.php:19 
    645 msgid "PHP code error" 
    646 msgstr "PHPコードにエラーがあります。" 
    647  
    648 #: xpress_default/blocks/meta_block_theme.php:24 
    649 msgid "Posts RSS" 
    650 msgstr "投稿の RSS" 
    651  
    652 #: xpress_default/blocks/meta_block_theme.php:27 
    653 msgid "Comments RSS" 
    654 msgstr "コメント のRSS" 
    655  
    656 #: xpress_default/blocks/meta_block_theme.php:39 
    657 msgid "Add New" 
    658 msgstr "新規投稿" 
    659  
    660 #: xpress_default/blocks/meta_block_theme.php:47 
    661 msgid "Site Admin" 
    662 msgstr "WordPress管理" 
    663  
    664 #: xpress_default/blocks/meta_block_theme.php:53 
    665 msgid "User Profile" 
    666 msgstr "ユーザープロファイル" 
    667  
    668 #: xpress_default/blocks/meta_block_theme.php:61 
    669 #: xpress_default/blocks/meta_block_theme.php:66 
    670 msgid "Subscription management" 
    671 msgstr "メール購読の設定" 
    672  
    673 #: xpress_default/blocks/meta_block_theme.php:74 
    674 msgid "ReadMe" 
    675 msgstr "ReadMe表示" 
    676  
    677 #: xpress_default/blocks/meta_block_theme.php:79 
    678 msgid "Themes" 
    679 msgstr "テーマ選択" 
    680  
    681 #: xpress_default/blocks/popular_posts_block_theme.php:135 
    682 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 
    683 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 
     639#: blocks/popular_posts_block_theme.php:140 
     640#: blocks/recent_posts_content_block_theme.php:97 
     641#: blocks/recent_posts_list_block_theme.php:86 
    684642msgid "Comments (0)" 
    685643msgstr "コメントはありません" 
    686644 
    687 #: xpress_default/blocks/popular_posts_block_theme.php:135 
    688 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 
    689 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 
     645#: blocks/popular_posts_block_theme.php:140 
     646#: blocks/recent_posts_content_block_theme.php:97 
     647#: blocks/recent_posts_list_block_theme.php:86 
    690648msgid "Comments (1)" 
    691649msgstr "1件のコメント" 
    692650 
    693 #: xpress_default/blocks/popular_posts_block_theme.php:135 
    694 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 
    695 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 
     651#: blocks/popular_posts_block_theme.php:140 
     652#: blocks/recent_posts_content_block_theme.php:97 
     653#: blocks/recent_posts_list_block_theme.php:86 
    696654msgid "Comments (%)" 
    697655msgstr "Comments (%)" 
    698656 
    699 #: xpress_default/blocks/recent_comments_block_theme.php:71 
     657#: blocks/recent_comments_block_theme.php:73 
    700658#, fuzzy, php-format 
    701659msgid "%1$s on %2$s" 
    702660msgstr "%1$s と %2$s" 
    703661 
    704 #: xpress_default/blocks/recent_posts_content_block_theme.php:66 
    705 #: xpress_default/blocks/recent_posts_content_block_theme.php:68 
     662#: blocks/recent_posts_content_block_theme.php:72 
    706663msgid "more" 
    707664msgstr "続きを読む" 
  • trunk/wp-content/themes/xpress_default/sidebar.php

    r64 r150  
    1         <div class="xpress_sidebar"> 
     1        <div id="xpress_sidebar"> 
    22                <ul> 
    33                        <?php   /* Widgetized sidebar, if you have the plugin installed. */ 
  • trunk/wp-content/themes/xpress_default/single.php

    r147 r150  
    11<?php get_header(); ?> 
    22 
     3<div id="xpress-header-bar"> 
     4        <div class="xpress-header-title"> 
     5                <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> 
     6        </div> 
     7        <div class="xpress-conditional-title"> 
     8                &nbsp;( <?php xpress_conditional_title();?> ) 
     9        </div> 
     10        <div class="xpress-description"> 
     11                <?php bloginfo('description'); ?> 
     12        </div> 
     13        <div class="xpress-operation-link"> 
     14                <a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a>  
     15                <?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?> 
     16        </div> 
     17</div> 
     18<hr class="xpress-border"></hr> 
     19                                 
    320<div id="xpress_wrap"> 
    421<?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         }        
     22if(xpress_is_theme_sidebar_disp()) { 
     23        echo '<div id="xpress_content" class="narrowcolumn">';   
     24} else { 
     25        echo '<div id="xpress_content" class="narrowcolumn_nonside">'; 
     26}        
    1027?> 
    11                 <div id="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"> 
    27  
    28         <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
    29  
     28<?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
    3029                <div class="xpress-navi-bar"> 
    3130                        <div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div> 
    3231                        <div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div> 
    3332                </div> 
    34  
     33         
    3534                <div class="xpress-post" id="post-<?php the_ID(); ?>"> 
    3635                        <div class ="xpress-post-header"> 
    3736                                <?php if (function_exists('hotDates')) { hotDates(); }?> 
    3837                                <div class ="xpress-post-title"> 
    39                                         <h3><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> 
     38                                        <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> 
    4039                                </div> 
    4140                        </div> 
     
    4443                                <?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'xpress') . '</p>'); ?> 
    4544                        </div> 
     45 
    4646                        <div class="xpress-link-pages"><?php wp_link_pages() ?></div> 
     47 
    4748                        <div class ="xpress-post-footer"> 
    4849                                <?php 
     
    5960                                ?> 
    6061                        </div> 
     62                                         
     63                        <div id ="xpress-pings-block"> 
     64                                <h3><?php xpress_pings_number(__('No Trackback/Pingback', 'xpress'),__('One Trackback/Pingback', 'xpress'),__('% TrackBack/Pingback', 'xpress')) ?></h3> 
    6165         
     66                                <?php xpress_pings_list(true) ?> 
     67                        </div> 
     68                                         
    6269                        <div id ="xpress-comments-block"> 
    6370                                <?php comments_template('', true); ?> 
    6471                        </div> 
     72 
     73 
    6574                </div> 
    6675 
    67          
    68  
    69         <?php endwhile; else: ?> 
    70  
    71                 <p><?php _e('Sorry, no posts matched your criteria.', 'xpress'); ?></p> 
    72  
    73 <?php endif; ?> 
    7476                <div class="xpress-navi-bar"> 
    7577                        <div class="alignleft"><?php xpress_left_arrow_post_link(true) ?></div> 
    7678                        <div class="alignright"><?php xpress_right_arrow_post_link(true) ?></div> 
    7779                </div> 
    78  
     80<?php endwhile; else: ?> 
     81                <p><?php _e('Sorry, no posts matched your criteria.', 'xpress'); ?></p> 
     82<?php endif; ?> 
     83         
    7984        </div> 
    80 </div> 
     85</div>           
    8186<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 
    82 <hr class="xpress-border"> 
     87<hr class="xpress-border"></hr> 
    8388<?php get_footer(); ?> 
  • trunk/wp-content/themes/xpress_default/style.css

    r148 r150  
    99 
    1010*/ 
     11 
    1112#xpress_page { 
    1213        padding: 0; 
     
    1617        } 
    1718         
     19#xpress_page .clear { 
     20        clear: both; 
     21} 
     22 
     23#xpress_page h1 { 
     24        padding-top: 20px; 
     25        margin: 0 0 5px; 
     26        font-size: 18px; 
     27        } 
     28         
     29#xpress_page h2 { 
     30        font-size: 16px; 
     31        } 
     32 
     33#xpress_page h3 { 
     34        padding: 0; 
     35        margin: 0; 
     36        } 
     37         
     38#xpress_page h3 { 
     39        font-size: 14px; 
     40        } 
     41         
     42#xpress_page small { 
     43        font-family: Arial, Helvetica, Sans-Serif; 
     44        color: #777; 
     45        font-size: 0.8em; 
     46        line-height: 1.5em; 
     47        } 
     48         
     49#xpress_page code { 
     50        font-size: 1.1em; 
     51        } 
     52 
     53#xpress_page select { 
     54        width: 130px; 
     55        } 
     56 
     57#xpress_page .hidden { 
     58        display: none; 
     59        } 
     60 
     61 
     62#xpress_page a img { 
     63        border: none; 
     64        } 
     65         
     66#xpress_page .center { 
     67        text-align: center; 
     68        } 
     69 
     70 
    1871#xpress_wrap { 
    1972        float: left; 
     
    2881         
    2982#xpress_content.narrowcolumn { 
    30         margin-right: 205px; 
    31         } 
    32          
     83        margin-right: 200px; 
     84        } 
     85 
     86 
     87/* Begin Header Menu */ 
     88 
    3389#xpress-header-bar { 
    3490        clear: both; 
     
    57113        text-align: right; 
    58114} 
    59  
     115/* End Header Menu */ 
     116 
     117 
     118/* Begin Border line */ 
    60119.xpress-border { 
    61120        clear: both; 
    62121        display: block; 
    63122        } 
    64  
     123/* End Border lin */ 
     124 
     125 
     126/* Begin Navi */ 
    65127.xpress-navi-bar { 
    66128        clear: both; 
     
    74136        text-align: right; 
    75137} 
    76  
     138/* End Navi */ 
     139 
     140 
     141/* Begin Post */ 
    77142.xpress-post { 
    78143        width: 100%; 
     
    81146        clear: both; 
    82147        } 
    83                  
     148.xpress-post h2 { 
     149        margin: 0; 
     150        } 
     151.xpress-post hr { 
     152        display: block; 
     153        } 
     154         
    84155.xpress-post .xpress-post-header{ 
    85156        text-align: left; 
     
    105176        margin-bottom: 10px; 
    106177} 
    107  
    108 #xpress-comments-block { 
    109         margin-top: 5px; 
    110         margin-bottom: 5px; 
     178/* End post */ 
     179 
     180 
     181/* Begin Pings */ 
     182#xpress-pings-block { 
     183        margin-top: 0px; 
     184        margin-bottom: 0px; 
    111185        margin-left: 5px; 
    112186        margin-right: 5px; 
    113         padding-top:10px; 
     187        padding-top:0px; 
    114188        padding-left:20px; 
    115189        padding-right:5px; 
    116         padding-bottom:10px; 
    117         clear: both; 
    118         } 
    119 #xpress_commentlist { 
    120         margin: 0px; 
    121         padding-left: 20px; 
    122         } 
    123  
    124 #xpress_commentlist ol{ 
     190        padding-bottom:0px; 
     191        clear: both; 
     192        } 
     193#xpress_pingslist ol{ 
    125194        font-size: 1em; 
    126195        list-style-image:none; 
     
    128197        list-style-type:none; 
    129198        } 
    130          
    131 #xpress_commentlist li{ 
     199#xpress_pingslist li{ 
    132200        margin: 0px; 
    133         padding-top: 5px; 
    134         padding-bottom: 100px; 
     201        padding-top: 0px; 
     202        padding-bottom: 0px; 
    135203        padding-left: 5px; 
    136204        padding-right: 1px; 
     
    140208        list-style-type:none; 
    141209        } 
     210/* End pings */ 
     211 
     212 
     213/* Begin Comment */ 
     214#xpress-comments-block { 
     215        margin-top: 0px; 
     216        margin-bottom: 5px; 
     217        margin-left: 5px; 
     218        margin-right: 5px; 
     219        padding-top:0px; 
     220        padding-left:20px; 
     221        padding-right:5px; 
     222        padding-bottom:10px; 
     223        clear: both; 
     224        } 
     225 
     226#xpress_commentlist { 
     227        margin: 0px; 
     228        padding-left: 20px; 
     229        } 
     230 
     231#xpress_commentlist ol{ 
     232        font-size: 1em; 
     233        list-style-image:none; 
     234        list-style-position:inside; 
     235        list-style-type:none; 
     236        } 
     237         
     238#xpress_commentlist li{ 
     239        margin: 0px; 
     240        padding-top: 5px; 
     241        padding-bottom: 0px; 
     242        padding-left: 5px; 
     243        padding-right: 1px; 
     244        font-size: 1em; 
     245        list-style-image:none; 
     246        list-style-position:inside; 
     247        list-style-type:none; 
     248        } 
    142249         
    143250#xpress_commentlist .even { 
    144251        background:#F4F4F4 none repeat scroll 0 0; 
     252        margin-top: 4px; 
     253        padding-top: 0px; 
     254        padding-bottom: 4px; 
     255        padding-left: 10px; 
     256        padding-right:0px 
    145257        } 
    146258 
    147259#xpress_commentlist .odd { 
    148260        background:#EFEFEF none repeat scroll 0 0; 
     261        margin-top: 4px; 
     262        padding-top: 0px; 
     263        padding-bottom: 4px; 
     264        padding-left: 10px; 
     265        padding-right:0px 
    149266        } 
    150267         
     
    161278        font-size: 1.1em; 
    162279        } 
    163  
    164  
    165 #xpress_footer { 
    166         padding-top: 0px; 
    167         margin: 0 auto; 
    168         width: 100%; 
    169         clear: both; 
    170         text-align: center; 
    171         } 
    172 #xpress_footer .xpress_rss { 
    173         margin: 0; 
    174         padding: 0; 
    175         text-align: right; 
    176         } 
    177  
    178 #xpress_footer .xpress_credit { 
    179         margin: 0; 
    180         padding: 0; 
    181         text-align: center; 
    182         font-size: 0.9em; 
    183         color: #BDBDBD; 
    184         } 
    185          
    186 #xpress_footer .xpress_credit a { 
    187         font-size: 0.9em; 
    188         color: #BDBDBD; 
    189         } 
    190          
    191 /* Begin Typography & Colors */ 
    192  
    193  
    194 .widecolumn .entry { 
    195         font-size: 1.05em; 
    196         } 
    197  
    198 .narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry { 
    199         line-height: 1.4em; 
    200         } 
    201          
    202 p.postmeta{ 
    203         line-height: 1.2em; 
    204         font-size: 0.9em; 
    205         } 
    206  
    207 #xpress_page small { 
    208         font-family: Arial, Helvetica, Sans-Serif; 
    209         font-size: 0.8em; 
    210         line-height: 1.5em; 
    211         } 
    212  
    213 #xpress_headerimg .description { 
    214         font-size: 1.2em; 
    215         } 
    216  
    217 #xpress_page h1, 
    218 #xpress_page h2 { 
    219         font-size: 1.4em; 
    220         } 
    221  
    222 .xpress_pagetitle { 
    223         font-size: 1.5em; 
    224         font-weight: bold; 
    225         } 
    226  
    227 .xpress_sidebar h2 { 
    228         font-size: 1.1em; 
    229         } 
    230  
    231 #xpress_page h3 { 
    232         font-size: 1.6em; 
    233         } 
    234 .xpress_commentmetadata { 
    235         font-size: 11px; 
    236         font-weight: normal; 
    237         } 
    238  
    239 .postmetadata { 
    240         font-size: 0.9em; 
    241         } 
    242  
    243 .xpress_sidebar { 
    244         font-size: 0.8em; 
    245         } 
    246  
    247 #xpress_page small, .xpress_sidebar ul ul li, .xpress_sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike { 
    248         color: #777; 
    249         } 
    250  
    251 #xpress_page code { 
    252         font-size: 1.1em; 
    253         } 
    254  
    255 acronym, abbr, span.caps 
    256 { 
    257         font-size: 0.9em; 
    258         letter-spacing: .07em; 
    259         } 
    260  
    261 #wp-calendar #prev a, #wp-calendar #next a { 
    262         font-size: 9pt; 
    263         } 
    264  
    265 #wp-calendar a { 
    266         text-decoration: none; 
    267         } 
    268  
    269 #wp-calendar caption { 
    270         font: bold 1.3em; 
    271         text-align: center; 
    272         } 
    273  
    274 #wp-calendar th { 
    275         font-style: normal; 
    276         text-transform: capitalize; 
    277         } 
    278          
    279 #xpress_footer p { 
    280         font-size: 0.9em; 
    281 }        
    282  
    283 /* End Typography & Colors */ 
    284  
    285  
    286  
    287 /* Begin Structure */ 
    288 p{ 
    289         margin:0; 
    290         padding:0; 
    291 } 
    292          
    293 .widecolumn {  
    294         width: 500px; /*width of single page*/ 
    295         margin: 0 auto; 
    296         }        
    297  
    298          
    299          
    300 .xpress-post h2 { 
    301         margin: 0; 
    302         } 
    303 .xpress-post hr { 
    304         display: block; 
    305         } 
    306  
    307 .entry { 
    308         clear:both; 
    309         padding:10px 0 0; 
    310         } 
    311          
    312 .entry p{ 
    313         padding: 5px 0; 
    314         } 
    315  
    316 p.postmeta{ 
    317         padding-top: 20px; 
    318         } 
    319          
    320 .narrowcolumn_nonside .postmetadata, 
    321 .narrowcolumn .postmetadata { 
    322         padding-top: 10px; 
    323         /*text-align:center;*//*postmeta of index page*/ 
    324         } 
    325  
    326 .widecolumn .postmetadata { 
    327         margin: 30px 0; 
    328         padding:5px 10px; 
    329         } 
    330  
    331 .widecolumn .smallattachment { 
    332         text-align: center; 
    333         float: left; 
    334         width: 128px; 
    335         margin: 5px 5px 5px 0px; 
    336 } 
    337  
    338 .widecolumn .attachment { 
    339         text-align: center; 
    340         margin: 5px 0px; 
    341 } 
    342  
    343 #xpress_page .clear { 
    344         clear: both; 
    345 } 
    346  
    347 .dateblock{ 
    348         margin:-12px 0 0 -5px!important; 
    349         } 
    350  
    351 /* End Structure */ 
    352  
    353  
    354 /*      Begin Headers */ 
    355 #xpress_page h1 { 
    356         padding-top: 20px; 
    357         margin: 0 0 5px; 
    358         } 
    359  
    360 .xpress_sidebar h2 { 
    361         margin: 5px 0 0; 
    362         padding: 0; 
    363         } 
    364  
    365 #xpress_page h3 { 
    366         padding: 0; 
    367         margin: 0; 
    368         } 
    369  
    370 /* End Headers */ 
    371  
    372 /* Begin Images */ 
    373  
    374 /*      Using 'class="alignright"' on an image will (who would've 
    375         thought?!) align the image to the right. And using 'class="centered', 
    376         will of course center the image. This is much better than using 
    377         align="center", being much more futureproof (and valid) */ 
    378  
    379 img.centered { 
    380         display: block; 
    381         margin-left: auto; 
    382         margin-right: auto; 
    383         } 
    384  
    385 img.alignright { 
    386         padding: 4px; 
    387         margin: 0 0 2px 7px; 
    388         display: inline; 
    389         } 
    390  
    391 img.alignleft { 
    392         padding: 4px; 
    393         margin: 0 7px 2px 0; 
    394         display: inline; 
    395         } 
    396  
    397 .alignright { 
    398         float: right; 
    399         } 
    400  
    401 .alignleft { 
    402         float: left 
    403         } 
    404 /* End Images */ 
    405  
    406  
    407  
    408 /* Begin Lists 
    409  
    410         Special stylized non-IE bullets 
    411         Do not work in Internet Explorer, which merely default to normal bullets. */ 
    412  
    413 html>body .entry ul { 
    414         margin-left: 0px; 
    415         padding: 0 0 0 30px; 
    416         list-style: none; 
    417         padding-left: 10px; 
    418         text-indent: -10px; 
    419         } 
    420  
    421 html>body .entry li { 
    422         margin: 7px 0 8px 10px; 
    423         } 
    424  
    425 .entry ul li:before, .xpress_sidebar ul ul li:before { 
    426         content: "\00BB \0020"; 
    427         } 
    428          
    429 .entry ol { 
    430         padding: 0 0 0 35px; 
    431         margin: 0; 
    432         } 
    433  
    434 .entry ol li { 
    435         margin: 0; 
    436         padding: 0; 
    437         } 
    438  
    439 .postmetadata ul, .postmetadata li { 
    440         display: inline; 
    441         list-style-type: none; 
    442         list-style-image: none; 
    443         } 
    444  
    445 .xpress_sidebar ul, .xpress_sidebar ul ol { 
    446         margin: 0; 
    447         padding: 0; 
    448         } 
    449  
    450 .xpress_sidebar ul li { 
    451         list-style-type: none; 
    452         list-style-image: none; 
    453         margin-bottom: 15px; 
    454         } 
    455  
    456 .xpress_sidebar ul p, .xpress_sidebar ul select { 
    457         margin: 5px 0 8px; 
    458         } 
    459  
    460 .xpress_sidebar ul ul, .xpress_sidebar ul ol { 
    461         margin: 5px 0 0 10px; 
    462         } 
    463  
    464 .xpress_sidebar ul ul ul, .xpress_sidebar ul ol { 
    465         margin: 0 0 0 10px; 
    466         } 
    467  
    468  
    469 .xpress_sidebar ul ul li, .xpress_sidebar ul ol li { 
    470         margin: 3px 0 0; 
    471         padding: 0; 
    472         } 
    473 /* End Entry Lists */ 
    474  
    475  
    476  
    477 /* Begin Form Elements */ 
    478 .xpress_sidebar #searchform { 
    479         margin: 10px auto; 
    480         padding: 5px 3px; 
    481         text-align: center; 
    482         } 
    483  
    484 .xpress_sidebar #searchform #s { 
    485         width: 108px; 
    486         padding: 2px; 
    487         } 
    488  
    489 .xpress_sidebar #searchsubmit { 
    490         padding: 1px; 
    491         } 
    492  
    493 .entry form { /* This is mainly for password protected posts, makes them look better. */ 
    494         text-align:center; 
    495         } 
    496  
    497 #xpress_page select { 
    498         width: 130px; 
    499         } 
    500          
    501  
    502 #xpress-respond { 
    503         margin: 0px; 
    504         padding-top: 10px; 
    505         padding-bottom: 5px; 
    506         padding-left: 0px; 
    507         padding-right: 0px; 
    508 } 
    509  
    510 #xpress-comment-user { 
    511         margin: 0px; 
    512         padding-top: 0px; 
    513         padding-bottom: 0px; 
    514         padding-left: 20px; 
    515         padding-right: 0px; 
    516 } 
    517280 
    518281#xpress-comment-form { 
     
    526289} 
    527290 
     291#xpress-respond { 
     292        margin: 0px; 
     293        padding-top: 10px; 
     294        padding-bottom: 5px; 
     295        padding-left: 0px; 
     296        padding-right: 0px; 
     297} 
     298 
     299#xpress-comment-user { 
     300        margin: 0px; 
     301        padding-top: 0px; 
     302        padding-bottom: 0px; 
     303        padding-left: 20px; 
     304        padding-right: 0px; 
     305} 
     306 
    528307#xpress-comment-form .xpress-comment-submit{ 
    529308        margin: 0px; 
     
    536315} 
    537316 
    538          
    539317.nocomments { 
    540318        text-align: center; 
     
    542320        padding: 0; 
    543321        } 
    544  
    545322/* End Comments */ 
    546323 
    547324 
     325/* Begin Footer Title */ 
     326#xpress_footer { 
     327        padding-top: 0px; 
     328        margin: 0 auto; 
     329        width: 100%; 
     330        clear: both; 
     331        text-align: center; 
     332        } 
     333#xpress_footer p { 
     334        font-size: 0.9em; 
     335}        
     336 
     337#xpress_footer .xpress_rss { 
     338        margin: 0; 
     339        padding: 0; 
     340        text-align: right; 
     341        } 
     342 
     343#xpress_footer .xpress_credit { 
     344        margin: 0; 
     345        padding: 0; 
     346        text-align: center; 
     347        font-size: 10px; 
     348        color: #BDBDBD; 
     349        } 
     350         
     351#xpress_footer .xpress_credit a { 
     352        font-size: 10px; 
     353        color: #BDBDBD; 
     354        } 
     355/* End Footer Title */ 
     356 
    548357 
    549358/* Begin Sidebar */ 
    550 #xpress_page .xpress_sidebar { 
     359#xpress_sidebar { 
    551360        float: right; 
    552361        display:inline; 
    553         margin:0 15px 0 0; 
    554         padding: 20px 0 10px; 
    555         width: 190px; 
    556         } 
    557  
    558 .xpress_sidebar form { 
    559         margin: 0; 
     362        margin-top: 0px; 
     363        margin-bottom: 0px; 
     364        margin-left: 10px; 
     365        margin-right: 0px; 
     366        padding-top: 0px; 
     367        padding-bottom: 0px; 
     368        padding-left: 100px 
     369        padding-right: 0px 
     370        font-size: 0.8em; 
     371        width: 180px; 
     372        } 
     373         
     374#xpress_sidebar h2 { 
     375        margin: 5px 0 0; 
     376        padding: 0; 
     377        font-size: 14px; 
     378        } 
     379 
     380#xpress_sidebar form { 
     381        margin: 0; 
     382        } 
     383 
     384#xpress_sidebar ul ul li:before { 
     385        content: "\00BB \0020"; 
     386        } 
     387 
     388#xpress_sidebar ul, #xpress_sidebar ul ol { 
     389        margin: 0; 
     390        padding: 0; 
     391        list-style-type: none; 
     392        list-style-image: none; 
     393        list-style: none; 
     394        list-style-position:inside; 
     395        } 
     396 
     397#xpress_sidebar ul li { 
     398        list-style-type: none; 
     399        list-style-image: none; 
     400        margin-bottom: 15px; 
     401        } 
     402 
     403#xpress_sidebar ul p, #xpress_sidebar ul select { 
     404        margin: 5px 0 8px; 
     405        } 
     406 
     407#xpress_sidebar ul ul, #xpress_sidebar ul ol { 
     408        margin: 5px 0 0 10px; 
     409        } 
     410 
     411#xpress_sidebar ul ul ul, #xpress_sidebar ul ol { 
     412        margin: 0 0 0 10px; 
     413        } 
     414 
     415 
     416#xpress_sidebar ul ul li, #xpress_sidebar ul ol li { 
     417        margin: 3px 0 0; 
     418        padding: 0; 
     419        } 
     420 
     421#xpress_sidebar #searchform { 
     422        margin: 0px ; 
     423        padding: 0px; 
     424        text-align: left; 
     425        } 
     426 
     427#xpress_sidebar #searchform #s { 
     428        width: 108px; 
     429        padding: 2px; 
     430        } 
     431 
     432#xpress_sidebar #searchsubmit { 
     433        padding: 1px; 
    560434        } 
    561435/* End Sidebar */ 
    562  
    563436 
    564437 
     
    573446        padding-right: 10px; 
    574447        text-align: right; 
     448        font-size: 9pt; 
    575449        } 
    576450 
     
    578452        padding-left: 10px; 
    579453        text-align: left; 
     454        font-size: 9pt; 
    580455        } 
    581456 
    582457#wp-calendar a { 
    583458        display: block; 
     459        text-decoration: none; 
    584460        } 
    585461 
     
    587463        text-align: center; 
    588464        width: 100%; 
     465        font: bold 1.3em; 
    589466        } 
    590467 
     
    596473#wp-calendar td.pad:hover { /* Doesn't work in IE */ 
    597474        background-color: #fff; } 
     475 
     476#wp-calendar th { 
     477        font-style: normal; 
     478        text-transform: capitalize; 
     479        } 
    598480/* End Calendar */ 
     481         
     482 
     483 
     484/* Nocheck Under css */ 
     485 
     486 
     487.widecolumn .entry { 
     488        font-size: 1.05em; 
     489        } 
     490 
     491.narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry { 
     492        line-height: 1.4em; 
     493        } 
     494         
     495p.postmeta{ 
     496        line-height: 1.2em; 
     497        font-size: 0.9em; 
     498        } 
     499 
     500 
     501#xpress_headerimg .description { 
     502        font-size: 1.2em; 
     503        } 
     504 
     505 
     506.xpress_pagetitle { 
     507        font-size: 1.5em; 
     508        font-weight: bold; 
     509        } 
     510         
     511.xpress_commentmetadata { 
     512        font-size: 11px; 
     513        font-weight: normal; 
     514        } 
     515 
     516.postmetadata { 
     517        font-size: 0.9em; 
     518        } 
     519 
     520 
     521 
     522acronym, abbr, span.caps 
     523{ 
     524        font-size: 0.9em; 
     525        letter-spacing: .07em; 
     526        } 
     527 
     528p{ 
     529        margin:0; 
     530        padding:0; 
     531} 
     532         
     533.widecolumn {  
     534        width: 500px; /*width of single page*/ 
     535        margin: 0 auto; 
     536        }        
     537 
     538.entry { 
     539        clear:both; 
     540        padding:10px 0 0; 
     541        } 
     542         
     543.entry p{ 
     544        padding: 5px 0; 
     545        } 
     546 
     547p.postmeta{ 
     548        padding-top: 20px; 
     549        } 
     550         
     551.narrowcolumn_nonside .postmetadata, 
     552.narrowcolumn .postmetadata { 
     553        padding-top: 10px; 
     554        /*text-align:center;*//*postmeta of index page*/ 
     555        } 
     556 
     557.widecolumn .postmetadata { 
     558        margin: 30px 0; 
     559        padding:5px 10px; 
     560        } 
     561 
     562.widecolumn .smallattachment { 
     563        text-align: center; 
     564        float: left; 
     565        width: 128px; 
     566        margin: 5px 5px 5px 0px; 
     567} 
     568 
     569.widecolumn .attachment { 
     570        text-align: center; 
     571        margin: 5px 0px; 
     572} 
     573 
     574 
     575/* End Headers */ 
     576 
     577/* Begin Images */ 
     578 
     579/*      Using 'class="alignright"' on an image will (who would've 
     580        thought?!) align the image to the right. And using 'class="centered', 
     581        will of course center the image. This is much better than using 
     582        align="center", being much more futureproof (and valid) */ 
     583 
     584img.centered { 
     585        display: block; 
     586        margin-left: auto; 
     587        margin-right: auto; 
     588        } 
     589 
     590img.alignright { 
     591        padding: 4px; 
     592        margin: 0 0 2px 7px; 
     593        display: inline; 
     594        } 
     595 
     596img.alignleft { 
     597        padding: 4px; 
     598        margin: 0 7px 2px 0; 
     599        display: inline; 
     600        } 
     601 
     602.alignright { 
     603        float: right; 
     604        } 
     605 
     606.alignleft { 
     607        float: left 
     608        } 
     609/* End Images */ 
     610 
     611 
     612 
     613/* Begin Lists 
     614 
     615        Special stylized non-IE bullets 
     616        Do not work in Internet Explorer, which merely default to normal bullets. */ 
     617 
     618html>body .entry ul { 
     619        margin-left: 0px; 
     620        padding: 0 0 0 30px; 
     621        list-style: none; 
     622        padding-left: 10px; 
     623        text-indent: -10px; 
     624        } 
     625 
     626html>body .entry li { 
     627        margin: 7px 0 8px 10px; 
     628        } 
     629 
     630.entry ul li:before{ 
     631        content: "\00BB \0020"; 
     632        } 
     633         
     634.entry ol { 
     635        padding: 0 0 0 35px; 
     636        margin: 0; 
     637        } 
     638 
     639.entry ol li { 
     640        margin: 0; 
     641        padding: 0; 
     642        } 
     643 
     644.postmetadata ul, .postmetadata li { 
     645        display: inline; 
     646        list-style-type: none; 
     647        list-style-image: none; 
     648        } 
     649 
     650 
     651.entry form { /* This is mainly for password protected posts, makes them look better. */ 
     652        text-align:center; 
     653        } 
     654 
     655         
     656 
     657 
     658 
     659 
     660 
     661 
     662 
    599663 
    600664 
     
    620684        } 
    621685 
    622 #xpress_page .center { 
    623         text-align: center; 
    624         } 
    625  
    626 #xpress_page .hidden { 
    627         display: none; 
    628         } 
    629  
    630  
    631 #xpress_page a img { 
    632         border: none; 
    633         } 
    634          
    635686.xpress_single_navigation { 
    636687        display:block; 
     
    682733        margin: 0; 
    683734} 
    684 /* End captions */ 
     735.dateblock{ 
     736        margin:-12px 0 0 -5px!important; 
     737        } 
     738 
     739.nocomments, .postmetadata, blockquote, strike { 
     740        color: #777; 
     741        } 
  • trunk/xoops_version.php

    r148 r150  
    3131$modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 
    3232$modversion['description'] = constant( '_MI_XPRESS_DESC'); 
    33 $modversion['version'] = "0.21"; 
     33$modversion['version'] = "0.22"; 
    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'] = "r148"; 
     42$modversion['codename'] = "r150"; 
    4343 
    4444// onInstall, onUpdate, onUninstall 
Note: See TracChangeset for help on using the changeset viewer.