XPressME Integration Kit

Trac

Changeset 140


Ignore:
Timestamp:
Mar 29, 2009, 1:21:24 AM (15 years ago)
Author:
toemon
Message:

インデックスページのデザイン (XPressMEVer1.X)のデフォルトに近いテーマ)

Location:
trunk/wp-content
Files:
1 deleted
9 edited

Legend:

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

    r113 r140  
    243243} 
    244244 
     245function is_xpress_contributor() 
     246{ 
     247        global $current_user; 
     248        get_currentuserinfo(); 
     249        if ($current_user->user_level > 3) 
     250                return true; 
     251        else 
     252                return false; 
     253} 
     254 
     255function xpress_post_new_link($link_title,$display = true) 
     256{ 
     257        $output = '<a href="'. get_xpress_url() . '/wp-admin/post-new.php' . '">' . $link_title . '</a>'; 
     258        if ($display)  
     259                echo $output; 
     260        else 
     261                return $output; 
     262} 
     263 
     264function xpress_conditional_title($display = true) 
     265{ 
     266        $output = __('Main', 'xpress'); 
     267        if (is_category()) 
     268                $output = sprintf(__('Archive for the &#8216;%s&#8217; Category', 'xpress'), single_cat_title('', false)); 
     269        if (is_tag()) 
     270                $output = sprintf(__('Posts Tagged &#8216;%s&#8217;', 'xpress'), single_tag_title('', false) ); 
     271        if (is_day()) 
     272                $output = sprintf(_c('Archive for %s|Daily archive page', 'xpress'), get_the_time(__('F jS, Y', 'xpress'))); 
     273        if (is_month()) 
     274                $output = sprintf(_c('Archive for %s|Monthly archive page', 'xpress'), get_the_time(__('F, Y', 'xpress'))); 
     275        if (is_year()) 
     276                $output = sprintf(_c('Archive for %s|Yearly archive page', 'xpress'), get_the_time(__('Y', 'xpress'))); 
     277        if (is_author()) 
     278                $output = get_author_name( get_query_var('author')); __('Author Archive', 'xpress'); 
     279        if (is_search()) 
     280                $output = __('Search Results', 'xpress'); 
     281                 
     282        if ($display)  
     283                echo $output; 
     284        else 
     285                return $output; 
     286} 
     287 
    245288?> 
  • trunk/wp-content/plugins/xpressme/include/xpress_common_functions.php

    r135 r140  
    6666        return $prefix; 
    6767} 
     68function get_xoops_url() 
     69{ 
     70        global $xoops_config; 
     71        $ret =$xoops_config->xoops_url ; 
     72        return $ret; 
     73} 
     74 
     75function get_xpress_url() 
     76{ 
     77        global $xoops_config; 
     78        $ret =$xoops_config->module_url ; 
     79        return $ret; 
     80} 
    6881 
    6982function get_xpress_modid() 
  • trunk/wp-content/plugins/xpressme/language/xpressme-ja.po

    r110 r140  
    33"Project-Id-Version: XPressME Plugin\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2009-03-17 10:45+0900\n" 
     5"PO-Revision-Date: 2009-03-25 00:47+0900\n" 
    66"Last-Translator: toemon <toychee@toemon.com>\n" 
    77"Language-Team: \n" 
  • trunk/wp-content/themes/xpress_default/footer.php

    r64 r140  
    1 <hr /> 
    21<div id="xpress_footer"> 
    3         <p> 
     2        <div class="xpress_rss"> 
    43                <?php printf(__('%1$s and %2$s.', 'xpress'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'xpress') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'xpress') . '</a>'); ?> 
     4        </div> 
    55                <!-- <?php printf(__('%d queries. %s seconds.', 'xpress'), get_num_queries(), timer_stop(0, 3)); ?> --> 
    6         </p> 
    76        <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. --> 
    8                 <div id="xpress_credit"><?php echo xpress_credit(). ' (' . xpress_convert_time() . ')'; ?></div> 
     7                <div class="xpress_credit"><?php echo xpress_credit(). ' (' . xpress_convert_time() . ')'; ?></div> 
    98</div> 
    109</div> 
  • trunk/wp-content/themes/xpress_default/index.php

    r96 r140  
    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?> 
     10                <div class="xpress-header-bar"> 
     11                        <div class="xpress-header-title"> 
     12                                <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> 
     13                        </div> 
     14                        <div class="xpress-conditional-title"> 
     15                                &nbsp;( <?php xpress_conditional_title();?> ) 
     16                        </div> 
     17                        <div class="xpress-description"> 
     18                                <?php bloginfo('description'); ?> 
     19                        </div> 
     20                        <div class="xpress-operation-link"> 
     21                                <a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a>  
     22                                <?php if(is_xpress_contributor()) { echo ' | ' ; xpress_post_new_link(__('Post New','xpress')); }?> 
     23                        </div> 
     24                </div> 
     25                <hr class="xpress-border"> 
     26                <?php if (have_posts()) : ?> 
     27                        <div class="xpress-navi-bar"> 
     28                                <?php if(function_exists('wp_pagenavi')) : ?>                    
     29                                        <div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div> 
     30                                <?php else : ?> 
     31                                        <div class="xpress-next-posts-link"><?php next_posts_link(__('&laquo; Older Entries', 'xpress')) ?></div> 
     32                                        <div class="xpress-previous-posts-link">&nbsp;<?php previous_posts_link(__('Newer Entries &raquo;', 'xpress')) ?></div> 
     33                                <?php endif; ?> 
     34                        </div> 
     35                                 
     36                        <?php while (have_posts()) : the_post(); ?> 
    237 
    3        <div id="xpress_wrap"> 
    4             
    5         <?php if(xpress_is_theme_sidebar_disp()) : ?> 
    6             
    7                 <div id="xpress_content" class="narrowcolumn"> 
    8                  
    9         <?php else : ?> 
    10          
    11                 <div id="xpress_content" class="narrowcolumn_nonside"> 
    12                  
    13         <?php endif; ?> 
    14  
    15     <div id="xpress_header"> 
    16         <div id="xpress_headerimg"> 
    17                 <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 
    18                 <div class="description"><?php bloginfo('description'); ?></div> 
    19         </div> 
    20     </div> 
    21  
    22         <?php if (have_posts()) : ?> 
    23  
    24                 <?php while (have_posts()) : the_post(); ?> 
    25  
    26                         <div class="post" id="post-<?php the_ID(); ?>"> 
    27                                 <?php if (function_exists('hotDates')) { hotDates(); }?> 
    28                                 <h2><a href="<?php the_permalink() ?>" rel="bookmark" <?php if(function_exists('the_title_attribute')) : ?> title=' <?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>'<?php endif; ?>><?php the_title(); ?></a></h2> 
    29                                 <small><?php the_time(__('F jS, Y', 'xpress')) ?> <!-- by <?php the_author() ?> --></small> 
    30  
    31                                 <div class="entry"> 
    32                                         <?php xpress_the_content(__('Read the rest of this entry &raquo;') ); ?> 
     38                                <div class="xpress-post" id="post-<?php the_ID(); ?>"> 
     39                                        <div class ="xpress-post-header"> 
     40                                                <?php if (function_exists('hotDates')) { hotDates(); }?> 
     41                                                <div class ="xpress-post-title"> 
     42                                                        <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> 
     43                                                </div> 
     44                                        </div> 
     45                                        <div class="xpress-post-entry"> 
     46                                                <?php xpress_the_content(__('Read the rest of this entry &raquo;') ); ?> 
     47                                        </div> 
     48                                        <div class ="xpress-post-footer"> 
     49                                        <?php 
     50                                                the_time('Y/m/d l'); 
     51                                                echo ' - '; 
     52                                                the_author_posts_link(); 
     53                                                echo ' (' . xpress_post_views_count($post->ID,__('Views :%d', 'xpress'),false) . ')';  
     54                                                echo ' | '; 
     55                                                // echo the_tags(__('Tags:', 'xpress') . ' ', ', ', ' | '); 
     56                                                printf(__('Posted in %s', 'xpress'), get_the_category_list(', ')); 
     57                                                echo ' | '; 
     58                                                edit_post_link(__('Edit', 'xpress'), '', ' | '); 
     59                                                comments_popup_link(__('No Comments &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') ); 
     60                                        ?> 
     61                                        </div> 
    3362                                </div> 
    3463 
    35                                 <p class="postmetadata"><!-- Post author start --> 
    36                                 <!-- Post author end --> 
    37                                 <?php 
    38                                         if(function_exists('the_tags')) 
    39                                                 echo the_tags(__('Tags:', 'xpress') . ' ', ', ', '<br />'); 
    40                                         printf(__('Posted in %s', 'xpress'), get_the_category_list(', ')); 
    41                                         echo ' | '; 
    42                                         edit_post_link(__('Edit', 'xpress'), '', ' | '); 
    43                                         comments_popup_link(__('No Comments &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') ); 
    44                                 ?> 
    45                                 </p> 
    46                                 <?php xpress_post_views_count($post->ID,__('Views :%d', 'xpress'),true) ?> 
     64                        <?php endwhile; ?> 
     65                                 
     66                        <div class="xpress-navi-bar"> 
     67                                <?php if(function_exists('wp_pagenavi')) : ?>                    
     68                                        <div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div> 
     69                                <?php else : ?> 
     70                                        <div class="xpress-next-posts-link"><?php next_posts_link(__('&laquo; Older Entries', 'xpress')) ?></div> 
     71                                        <div class="xpress-previous-posts-link">&nbsp;<?php previous_posts_link(__('Newer Entries &raquo;', 'xpress')) ?></div> 
     72                                <?php endif; ?> 
     73                        </div> 
     74                                 
     75                <?php else : ?> 
    4776 
    48                                 </div> 
     77                        <h2 class="center"><?php _e('Not Found', 'xpress'); ?></h2> 
     78                        <p class="center"><?php _e('Sorry, but you are looking for something that isn&#8217;t here.', 'xpress'); ?></p> 
     79                        <?php include (get_template_directory() . "/searchform.php"); ?> 
    4980 
    50                 <?php endwhile; ?> 
    51                 <?php if(function_exists('wp_pagenavi')) : ?> 
    52                         <div class="xpress_pagenavi"> 
    53                                 <?php wp_pagenavi(); ?> 
    54                         </div> 
    55                 <?php else : ?> 
    56                         <div class="xpress_index_navigation"> 
    57                                 <div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'xpress')) ?></div> 
    58                                 <div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'xpress')) ?></div> 
    59                         </div> 
    6081                <?php endif; ?> 
    61         <?php else : ?> 
    62  
    63                 <h2 class="center"><?php _e('Not Found', 'xpress'); ?></h2> 
    64                 <p class="center"><?php _e('Sorry, but you are looking for something that isn&#8217;t here.', 'xpress'); ?></p> 
    65                 <?php include (get_template_directory() . "/searchform.php"); ?> 
    66  
    67         <?php endif; ?> 
    68  
    6982        </div> 
    70        </div> 
    71  
    72 <?php get_sidebar(); ?> 
    73  
     83</div> 
     84<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?> 
     85<hr class="xpress-border"> 
    7486<?php get_footer(); ?> 
  • trunk/wp-content/themes/xpress_default/ja.po

    r138 r140  
    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-25 00:23+0900\n" 
     20"PO-Revision-Date: 2009-03-29 01:21+0900\n" 
    2121"Last-Translator: toemon <toychee@toemon.com>\n" 
    2222"Language-Team: toemon <info@toemon.com>\n" 
     
    3636msgstr "エラー 404 - 見つかりませんでした" 
    3737 
    38 #: xpress_default/archive.php:27 
    39 #, php-format 
    40 msgid "Archive for the &#8216;%s&#8217; Category" 
    41 msgstr "&#8216;%s&#8217; カテゴリーのアーカイブ" 
    42  
    43 #: xpress_default/archive.php:29 
    44 #, php-format 
    45 msgid "Posts Tagged &#8216;%s&#8217;" 
    46 msgstr "&#8216;%s&#8217; タグのついている投稿" 
    47  
    48 #: xpress_default/archive.php:31 
    49 #, php-format 
    50 msgid "Archive for %s|Daily archive page" 
    51 msgstr "%s のアーカイブ|日別アーカイブのページ" 
    52  
    53 #: xpress_default/archive.php:31 
     38#: xpress_default/archives.php:20 
     39msgid "Archives by Month:" 
     40msgstr "月別のアーカイブ:" 
     41 
     42#: xpress_default/archives.php:25 
     43msgid "Archives by Subject:" 
     44msgstr "カテゴリー別アーカイブ:" 
     45 
     46#: xpress_default/comments-popup.php:9 
     47#, php-format 
     48msgid "%1$s - Comments on %2$s" 
     49msgstr "%1$s - %2$s へのコメント" 
     50 
     51#: xpress_default/comments-popup.php:22 
     52msgid "Comments" 
     53msgstr "コメント" 
     54 
     55#: xpress_default/comments-popup.php:24 
     56msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post." 
     57msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード" 
     58 
     59#: xpress_default/comments-popup.php:27 
     60#, php-format 
     61msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>" 
     62msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>" 
     63 
     64#: xpress_default/comments-popup.php:45 
     65msgid "Comment" 
     66msgstr "コメント" 
     67 
     68#: xpress_default/comments-popup.php:45 
     69msgid "Trackback" 
     70msgstr "トラックバック" 
     71 
     72#: xpress_default/comments-popup.php:45 
     73msgid "Pingback" 
     74msgstr "ピンバック" 
     75 
     76#: xpress_default/comments-popup.php:45 
     77#, php-format 
     78msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>" 
     79msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より" 
     80 
     81#: xpress_default/comments-popup.php:51 
     82msgid "No comments yet." 
     83msgstr "コメントはまだありません。" 
     84 
     85#: xpress_default/comments-popup.php:55 
     86msgid "Leave a comment" 
     87msgstr "コメントをどうぞ" 
     88 
     89#: xpress_default/comments-popup.php:56 
     90#, php-format 
     91msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>" 
     92msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>" 
     93 
     94#: xpress_default/comments-popup.php:60 
     95#, php-format 
     96msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>" 
     97msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>" 
     98 
     99#: xpress_default/comments-popup.php:64 
     100#: xpress_default/comments.php:95 
     101msgid "Name" 
     102msgstr "お名前" 
     103 
     104#: xpress_default/comments-popup.php:71 
     105msgid "E-mail" 
     106msgstr "メールアドレス" 
     107 
     108#: xpress_default/comments-popup.php:76 
     109msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
     110msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
     111 
     112#: xpress_default/comments-popup.php:81 
     113msgid "Your Comment" 
     114msgstr "コメント" 
     115 
     116#: xpress_default/comments-popup.php:87 
     117msgid "Say It!" 
     118msgstr "送信する !" 
     119 
     120#: xpress_default/comments-popup.php:92 
     121msgid "Sorry, the comment form is closed at this time." 
     122msgstr "コメントフォームは現在閉鎖中です。" 
     123 
     124#: xpress_default/comments-popup.php:97 
     125msgid "Close this window." 
     126msgstr "このウインドウを閉じる。" 
     127 
     128#: xpress_default/comments-popup.php:105 
     129#, php-format 
     130msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
     131msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
     132 
     133#: xpress_default/comments.php:9 
     134msgid "This post is password protected. Enter the password to view comments." 
     135msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。" 
     136 
     137#: xpress_default/comments.php:23 
     138msgid "No Responses" 
     139msgstr "コメント / トラックバックはありません" 
     140 
     141#: xpress_default/comments.php:23 
     142msgid "One Response" 
     143msgstr "コメント / トラックバック 1 件" 
     144 
     145#: xpress_default/comments.php:23 
     146msgid "% Responses" 
     147msgstr "コメント / トラックバック % 件" 
     148 
     149#: xpress_default/comments.php:23 
     150#, php-format 
     151msgid "to &#8220;%s&#8221;" 
     152msgstr "<!-- to &#8220;%s&#8221; -->" 
     153 
     154#: xpress_default/comments.php:39 
     155#, php-format 
     156msgid "<cite>%s</cite> Says:" 
     157msgstr "<cite>%s</cite> より: " 
     158 
     159#: xpress_default/comments.php:41 
     160msgid "Your comment is awaiting moderation." 
     161msgstr "コメントは管理者の承認待ちです。" 
     162 
    54163#: xpress_default/comments.php:45 
    55 #: xpress_default/index.php:29 
     164#, php-format 
     165msgid "%1$s at %2$s" 
     166msgstr "%1$s %2$s" 
     167 
     168#: xpress_default/comments.php:45 
    56169#: xpress_default/single.php:22 
    57170msgid "F jS, Y" 
    58171msgstr "Y 年 n 月 j 日" 
    59172 
    60 #: xpress_default/archive.php:33 
    61 #, php-format 
    62 msgid "Archive for %s|Monthly archive page" 
    63 msgstr "%s のアーカイブ|月別アーカイブのページ" 
    64  
    65 #: xpress_default/archive.php:33 
    66 #: xpress_default/sidebar.php:27 
    67 msgid "F, Y" 
    68 msgstr "Y 年 n 月" 
    69  
    70 #: xpress_default/archive.php:35 
    71 #, php-format 
    72 msgid "Archive for %s|Yearly archive page" 
    73 msgstr "%s のアーカイブ|年別アーカイブのページ" 
    74  
    75 #: xpress_default/archive.php:35 
    76 msgid "Y" 
    77 msgstr "Y 年" 
    78  
    79 #: xpress_default/archive.php:37 
    80 msgid "Author Archive" 
    81 msgstr "投稿者のアーカイブ" 
    82  
    83 #: xpress_default/archive.php:39 
    84 msgid "Blog Archives" 
    85 msgstr "ブログアーカイブ" 
    86  
    87 #: xpress_default/archive.php:71 
    88 #: xpress_default/index.php:28 
    89 #: xpress_default/search.php:36 
    90 #, php-format 
    91 msgid "Permanent Link to %s" 
    92 msgstr "%s のパーマリンク" 
    93  
    94 #: xpress_default/archive.php:72 
     173#: xpress_default/comments.php:45 
     174msgid "edit" 
     175msgstr "編集" 
     176 
     177#: xpress_default/comments.php:67 
     178msgid "Comments are closed." 
     179msgstr "コメントは受け付けていません。" 
     180 
     181#: xpress_default/comments.php:75 
     182msgid "Leave a Reply" 
     183msgstr "コメントをどうぞ" 
     184 
     185#: xpress_default/comments.php:83 
     186#, php-format 
     187msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
     188msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 
     189 
     190#: xpress_default/comments.php:90 
     191#, php-format 
     192msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
     193msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 
     194 
     195#: xpress_default/comments.php:90 
     196msgid "Log out of this account" 
     197msgstr "このアカウントからログアウト" 
     198 
     199#: xpress_default/comments.php:90 
     200msgid "Log out &raquo;" 
     201msgstr "ログアウト &raquo;" 
     202 
     203#: xpress_default/comments.php:95 
     204#: xpress_default/comments.php:98 
     205msgid "(required)" 
     206msgstr " (必須)" 
     207 
     208#: xpress_default/comments.php:98 
     209msgid "Mail (will not be published)" 
     210msgstr "メールアドレス (公開されません)" 
     211 
     212#: xpress_default/comments.php:101 
     213msgid "Website" 
     214msgstr "ウェブサイト" 
     215 
     216#: xpress_default/comments.php:105 
     217#, php-format 
     218msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
     219msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 
     220 
     221#: xpress_default/comments.php:109 
     222msgid "Submit Comment" 
     223msgstr "コメント送信" 
     224 
     225#: xpress_default/footer.php:3 
     226#, php-format 
     227msgid "%1$s and %2$s." 
     228msgstr "%1$s と %2$s" 
     229 
     230#: xpress_default/footer.php:3 
     231msgid "Entries (RSS)" 
     232msgstr "投稿 (RSS)" 
     233 
     234#: xpress_default/footer.php:3 
     235msgid "Comments (RSS)" 
     236msgstr "コメント (RSS)" 
     237 
     238#: xpress_default/footer.php:5 
     239#, php-format 
     240msgid "%d queries. %s seconds." 
     241msgstr "%d 個のクエリと %s 秒を要しました。" 
     242 
     243#: xpress_default/functions.php:149 
     244msgid "Customize Header" 
     245msgstr "ヘッダーのカスタマイズ" 
     246 
     247#: xpress_default/functions.php:149 
     248#: xpress_default/functions.php:363 
     249msgid "Header Image and Color" 
     250msgstr "ヘッダーの背景と文字の色" 
     251 
     252#: xpress_default/functions.php:162 
     253msgid "Close Color Picker" 
     254msgstr "カラーピッカーを閉じる" 
     255 
     256#: xpress_default/functions.php:359 
     257msgid "Options saved." 
     258msgstr "設定を保存しました。" 
     259 
     260#: xpress_default/functions.php:376 
     261#: xpress_default/functions.php:383 
     262msgid "Save" 
     263msgstr "保存" 
     264 
     265#: xpress_default/functions.php:377 
     266msgid "Font Color:" 
     267msgstr "フォントの色:" 
     268 
     269#: xpress_default/functions.php:377 
     270#, php-format 
     271msgid "Any CSS color (%s or %s or %s)" 
     272msgstr "CSS 色指定 (%s 、%s もしくは %s)" 
     273 
     274#: xpress_default/functions.php:378 
     275msgid "Upper Color:" 
     276msgstr "グラデーション上側の色:" 
     277 
     278#: xpress_default/functions.php:378 
     279#: xpress_default/functions.php:379 
     280#, php-format 
     281msgid "HEX only (%s or %s)" 
     282msgstr "16 進数のみ (%s もしくは %s)" 
     283 
     284#: xpress_default/functions.php:379 
     285msgid "Lower Color:" 
     286msgstr "グラデーション下側の色:" 
     287 
     288#: xpress_default/functions.php:381 
     289msgid "Toggle Text" 
     290msgstr "テキスト表示の切替え" 
     291 
     292#: xpress_default/functions.php:382 
     293msgid "Use Defaults" 
     294msgstr "デフォルト設定に戻す" 
     295 
     296#: xpress_default/functions.php:391 
     297msgid "Font Color" 
     298msgstr "フォントの色" 
     299 
     300#: xpress_default/functions.php:392 
     301msgid "Upper Color" 
     302msgstr "グラデーション上側の色" 
     303 
     304#: xpress_default/functions.php:393 
     305msgid "Lower Color" 
     306msgstr "グラデーション下側の色" 
     307 
     308#: xpress_default/functions.php:394 
     309msgid "Revert" 
     310msgstr "取り消し" 
     311 
     312#: xpress_default/functions.php:395 
     313msgid "Advanced" 
     314msgstr "詳細" 
     315 
     316#: xpress_default/functions.php:402 
     317msgid "Update Header &raquo;" 
     318msgstr "ヘッダーを更新 &raquo;" 
     319 
     320#: xpress_default/functions.php:408 
     321msgid "Font Color (CSS):" 
     322msgstr "フォントの色 (CSS):" 
     323 
     324#: xpress_default/functions.php:409 
     325msgid "Upper Color (HEX):" 
     326msgstr "グラデーション上側の色 (16 進数):" 
     327 
     328#: xpress_default/functions.php:410 
     329msgid "Lower Color (HEX):" 
     330msgstr "グラデーション下側の色 (16 進数):" 
     331 
     332#: xpress_default/functions.php:411 
     333msgid "Select Default Colors" 
     334msgstr "デフォルト設定に戻す" 
     335 
     336#: xpress_default/functions.php:412 
     337msgid "Toggle Text Display" 
     338msgstr "テキスト表示の切替え" 
     339 
     340#: xpress_default/header.php:9 
     341msgid "&raquo; Blog Archive" 
     342msgstr "&raquo; ブログアーカイブ" 
     343 
     344#: xpress_default/header.php:14 
     345#, php-format 
     346msgid "%s RSS Feed" 
     347msgstr "%s RSS フィード" 
     348 
     349#: xpress_default/header.php:15 
     350#, php-format 
     351msgid "%s Atom Feed" 
     352msgstr "%s Atom フィード" 
     353 
     354#: xpress_default/image.php:13 
     355#: xpress_default/index.php:46 
     356#: xpress_default/single.php:25 
     357msgid "Read the rest of this entry &raquo;" 
     358msgstr "この投稿の続きを読む &raquo;" 
     359 
     360#: xpress_default/image.php:15 
     361#: xpress_default/page.php:29 
     362#: xpress_default/single.php:27 
     363msgid "Pages:" 
     364msgstr "ページ:" 
     365 
     366#: xpress_default/image.php:25 
     367#, php-format 
     368msgid "This entry was posted on %1$s at %2$s and is filed under %3$s." 
     369msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。" 
     370 
    95371#: xpress_default/image.php:25 
    96372#: xpress_default/sidebar.php:24 
     
    99375msgstr "Y 年 n 月 j 日 l" 
    100376 
    101 #: xpress_default/archive.php:78 
    102 #: xpress_default/index.php:39 
     377#: xpress_default/image.php:27 
     378#: xpress_default/single.php:38 
     379#, php-format 
     380msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed." 
     381msgstr "この投稿へのコメントは <a href='%s'>RSS 2.0</a> フィードで購読することができます。" 
     382 
     383#: xpress_default/image.php:31 
     384#: xpress_default/single.php:45 
     385#, php-format 
     386msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
     387msgstr "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>することができます。" 
     388 
     389#: xpress_default/image.php:35 
     390#: xpress_default/single.php:49 
     391#, php-format 
     392msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
     393msgstr "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。" 
     394 
     395#: xpress_default/image.php:39 
     396#: xpress_default/single.php:53 
     397msgid "You can skip to the end and leave a response. Pinging is currently not allowed." 
     398msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。" 
     399 
     400#: xpress_default/image.php:43 
     401#: xpress_default/single.php:57 
     402msgid "Both comments and pings are currently closed." 
     403msgstr "現在コメント、トラックバックともに受け付けておりません。" 
     404 
     405#: xpress_default/image.php:45 
     406#: xpress_default/page.php:34 
     407msgid "Edit this entry." 
     408msgstr "この投稿を編集する。" 
     409 
     410#: xpress_default/image.php:58 
     411#: xpress_default/single.php:71 
     412msgid "Sorry, no posts matched your criteria." 
     413msgstr "該当する投稿は見つかりませんでした。" 
     414 
     415#: xpress_default/index.php:21 
     416msgid "Mein Page" 
     417msgstr "メインページ" 
     418 
     419#: xpress_default/index.php:22 
     420msgid "Post New" 
     421msgstr "新規投稿" 
     422 
     423#: xpress_default/index.php:31 
     424#: xpress_default/index.php:70 
     425#: xpress_default/search.php:27 
     426#: xpress_default/search.php:45 
     427msgid "&laquo; Older Entries" 
     428msgstr "&laquo; 前ページへ" 
     429 
     430#: xpress_default/index.php:32 
     431#: xpress_default/index.php:71 
     432#: xpress_default/search.php:28 
     433#: xpress_default/search.php:46 
     434msgid "Newer Entries &raquo;" 
     435msgstr "次ページへ &raquo;" 
     436 
     437#: xpress_default/index.php:42 
     438#: xpress_default/search.php:36 
     439#, php-format 
     440msgid "Permanent Link to %s" 
     441msgstr "%s のパーマリンク" 
     442 
     443#: xpress_default/index.php:53 
     444#, php-format 
     445msgid "Views :%d" 
     446msgstr "閲覧 :%d" 
     447 
     448#: xpress_default/index.php:56 
     449#: xpress_default/search.php:39 
     450#: xpress_default/single.php:28 
     451#, php-format 
     452msgid "Posted in %s" 
     453msgstr "カテゴリー: %s" 
     454 
     455#: xpress_default/index.php:58 
     456#: xpress_default/search.php:39 
     457msgid "Edit" 
     458msgstr "編集" 
     459 
     460#: xpress_default/index.php:59 
     461#: xpress_default/search.php:39 
     462msgid "No Comments &#187;" 
     463msgstr "コメントはまだありません &#187;" 
     464 
     465#: xpress_default/index.php:59 
     466#: xpress_default/search.php:39 
     467msgid "1 Comment &#187;" 
     468msgstr "1 件のコメント &#187;" 
     469 
     470#: xpress_default/index.php:59 
     471#: xpress_default/search.php:39 
     472msgid "% Comments &#187;" 
     473msgstr "% 件のコメント &#187;" 
     474 
     475#: xpress_default/index.php:59 
     476#: xpress_default/search.php:39 
     477msgid "Comments Closed" 
     478msgstr "コメントは受け付けていません。" 
     479 
     480#: xpress_default/index.php:77 
     481msgid "Not Found" 
     482msgstr "見つかりませんでした。" 
     483 
     484#: xpress_default/index.php:78 
     485msgid "Sorry, but you are looking for something that isn&#8217;t here." 
     486msgstr "お探しの物はここにはありません。" 
     487 
     488#: xpress_default/links.php:18 
     489msgid "Links:" 
     490msgstr "リンク:" 
     491 
     492#: xpress_default/page.php:27 
     493msgid "Read the rest of this page &raquo;" 
     494msgstr "このページの続きを読む &raquo;" 
     495 
     496#: xpress_default/search.php:24 
     497msgid "Search Results" 
     498msgstr "検索結果" 
     499 
    103500#: xpress_default/search.php:39 
    104501#: xpress_default/single.php:28 
     
    109506msgstr "タグ:" 
    110507 
    111 #: xpress_default/archive.php:78 
    112 #: xpress_default/index.php:40 
    113 #: xpress_default/search.php:39 
    114 #: xpress_default/single.php:28 
    115 #, php-format 
    116 msgid "Posted in %s" 
    117 msgstr "カテゴリー: %s" 
    118  
    119 #: xpress_default/archive.php:78 
    120 #: xpress_default/index.php:42 
    121 #: xpress_default/search.php:39 
    122 msgid "Edit" 
    123 msgstr "編集" 
    124  
    125 #: xpress_default/archive.php:78 
    126 #: xpress_default/index.php:43 
    127 #: xpress_default/search.php:39 
    128 msgid "No Comments &#187;" 
    129 msgstr "コメントはまだありません &#187;" 
    130  
    131 #: xpress_default/archive.php:78 
    132 #: xpress_default/index.php:43 
    133 #: xpress_default/search.php:39 
    134 msgid "1 Comment &#187;" 
    135 msgstr "1 件のコメント &#187;" 
    136  
    137 #: xpress_default/archive.php:78 
    138 #: xpress_default/index.php:43 
    139 #: xpress_default/search.php:39 
    140 msgid "% Comments &#187;" 
    141 msgstr "% 件のコメント &#187;" 
    142  
    143 #: xpress_default/archive.php:78 
    144 #: xpress_default/index.php:43 
    145 #: xpress_default/search.php:39 
    146 msgid "Comments Closed" 
    147 msgstr "コメントは受け付けていません。" 
    148  
    149 #: xpress_default/archive.php:89 
    150 #: xpress_default/index.php:57 
    151 #: xpress_default/search.php:27 
    152 #: xpress_default/search.php:45 
    153 msgid "&laquo; Older Entries" 
    154 msgstr "&laquo; 前ページへ" 
    155  
    156 #: xpress_default/archive.php:90 
    157 #: xpress_default/index.php:58 
    158 #: xpress_default/search.php:28 
    159 #: xpress_default/search.php:46 
    160 msgid "Newer Entries &raquo;" 
    161 msgstr "次ページへ &raquo;" 
    162  
    163 #: xpress_default/archive.php:95 
    164 #: xpress_default/index.php:63 
    165 msgid "Not Found" 
    166 msgstr "見つかりませんでした。" 
    167  
    168 #: xpress_default/archives.php:20 
    169 msgid "Archives by Month:" 
    170 msgstr "月別のアーカイブ:" 
    171  
    172 #: xpress_default/archives.php:25 
    173 msgid "Archives by Subject:" 
    174 msgstr "カテゴリー別アーカイブ:" 
    175  
    176 #: xpress_default/comments-popup.php:9 
    177 #, php-format 
    178 msgid "%1$s - Comments on %2$s" 
    179 msgstr "%1$s - %2$s へのコメント" 
    180  
    181 #: xpress_default/comments-popup.php:22 
    182 msgid "Comments" 
    183 msgstr "コメント" 
    184  
    185 #: xpress_default/comments-popup.php:24 
    186 msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post." 
    187 msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード" 
    188  
    189 #: xpress_default/comments-popup.php:27 
    190 #, php-format 
    191 msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>" 
    192 msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>" 
    193  
    194 #: xpress_default/comments-popup.php:45 
    195 msgid "Comment" 
    196 msgstr "コメント" 
    197  
    198 #: xpress_default/comments-popup.php:45 
    199 msgid "Trackback" 
    200 msgstr "トラックバック" 
    201  
    202 #: xpress_default/comments-popup.php:45 
    203 msgid "Pingback" 
    204 msgstr "ピンバック" 
    205  
    206 #: xpress_default/comments-popup.php:45 
    207 #, php-format 
    208 msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>" 
    209 msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より" 
    210  
    211 #: xpress_default/comments-popup.php:51 
    212 msgid "No comments yet." 
    213 msgstr "コメントはまだありません。" 
    214  
    215 #: xpress_default/comments-popup.php:55 
    216 msgid "Leave a comment" 
    217 msgstr "コメントをどうぞ" 
    218  
    219 #: xpress_default/comments-popup.php:56 
    220 #, php-format 
    221 msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>" 
    222 msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>" 
    223  
    224 #: xpress_default/comments-popup.php:60 
    225 #, php-format 
    226 msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>" 
    227 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>" 
    228  
    229 #: xpress_default/comments-popup.php:64 
    230 #: xpress_default/comments.php:95 
    231 msgid "Name" 
    232 msgstr "お名前" 
    233  
    234 #: xpress_default/comments-popup.php:71 
    235 msgid "E-mail" 
    236 msgstr "メールアドレス" 
    237  
    238 #: xpress_default/comments-popup.php:76 
    239 msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
    240 msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>" 
    241  
    242 #: xpress_default/comments-popup.php:81 
    243 msgid "Your Comment" 
    244 msgstr "コメント" 
    245  
    246 #: xpress_default/comments-popup.php:87 
    247 msgid "Say It!" 
    248 msgstr "送信する !" 
    249  
    250 #: xpress_default/comments-popup.php:92 
    251 msgid "Sorry, the comment form is closed at this time." 
    252 msgstr "コメントフォームは現在閉鎖中です。" 
    253  
    254 #: xpress_default/comments-popup.php:97 
    255 msgid "Close this window." 
    256 msgstr "このウインドウを閉じる。" 
    257  
    258 #: xpress_default/comments-popup.php:105 
    259 #, php-format 
    260 msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
    261 msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>" 
    262  
    263 #: xpress_default/comments.php:9 
    264 msgid "This post is password protected. Enter the password to view comments." 
    265 msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。" 
    266  
    267 #: xpress_default/comments.php:23 
    268 msgid "No Responses" 
    269 msgstr "コメント / トラックバックはありません" 
    270  
    271 #: xpress_default/comments.php:23 
    272 msgid "One Response" 
    273 msgstr "コメント / トラックバック 1 件" 
    274  
    275 #: xpress_default/comments.php:23 
    276 msgid "% Responses" 
    277 msgstr "コメント / トラックバック % 件" 
    278  
    279 #: xpress_default/comments.php:23 
    280 #, php-format 
    281 msgid "to &#8220;%s&#8221;" 
    282 msgstr "<!-- to &#8220;%s&#8221; -->" 
    283  
    284 #: xpress_default/comments.php:39 
    285 #, php-format 
    286 msgid "<cite>%s</cite> Says:" 
    287 msgstr "<cite>%s</cite> より: " 
    288  
    289 #: xpress_default/comments.php:41 
    290 msgid "Your comment is awaiting moderation." 
    291 msgstr "コメントは管理者の承認待ちです。" 
    292  
    293 #: xpress_default/comments.php:45 
    294 #, php-format 
    295 msgid "%1$s at %2$s" 
    296 msgstr "%1$s %2$s" 
    297  
    298 #: xpress_default/comments.php:45 
    299 msgid "edit" 
    300 msgstr "編集" 
    301  
    302 #: xpress_default/comments.php:67 
    303 msgid "Comments are closed." 
    304 msgstr "コメントは受け付けていません。" 
    305  
    306 #: xpress_default/comments.php:75 
    307 msgid "Leave a Reply" 
    308 msgstr "コメントをどうぞ" 
    309  
    310 #: xpress_default/comments.php:83 
    311 #, php-format 
    312 msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
    313 msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 
    314  
    315 #: xpress_default/comments.php:90 
    316 #, php-format 
    317 msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
    318 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 
    319  
    320 #: xpress_default/comments.php:90 
    321 msgid "Log out of this account" 
    322 msgstr "このアカウントからログアウト" 
    323  
    324 #: xpress_default/comments.php:90 
    325 msgid "Log out &raquo;" 
    326 msgstr "ログアウト &raquo;" 
    327  
    328 #: xpress_default/comments.php:95 
    329 #: xpress_default/comments.php:98 
    330 msgid "(required)" 
    331 msgstr " (必須)" 
    332  
    333 #: xpress_default/comments.php:98 
    334 msgid "Mail (will not be published)" 
    335 msgstr "メールアドレス (公開されません)" 
    336  
    337 #: xpress_default/comments.php:101 
    338 msgid "Website" 
    339 msgstr "ウェブサイト" 
    340  
    341 #: xpress_default/comments.php:105 
    342 #, php-format 
    343 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
    344 msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 
    345  
    346 #: xpress_default/comments.php:109 
    347 msgid "Submit Comment" 
    348 msgstr "コメント送信" 
    349  
    350 #: xpress_default/footer.php:4 
    351 #, php-format 
    352 msgid "%1$s and %2$s." 
    353 msgstr "%1$s と %2$s" 
    354  
    355 #: xpress_default/footer.php:4 
    356 msgid "Entries (RSS)" 
    357 msgstr "投稿 (RSS)" 
    358  
    359 #: xpress_default/footer.php:4 
    360 msgid "Comments (RSS)" 
    361 msgstr "コメント (RSS)" 
    362  
    363 #: xpress_default/footer.php:5 
    364 #, php-format 
    365 msgid "%d queries. %s seconds." 
    366 msgstr "%d 個のクエリと %s 秒を要しました。" 
    367  
    368 #: xpress_default/functions.php:149 
    369 msgid "Customize Header" 
    370 msgstr "ヘッダーのカスタマイズ" 
    371  
    372 #: xpress_default/functions.php:149 
    373 #: xpress_default/functions.php:363 
    374 msgid "Header Image and Color" 
    375 msgstr "ヘッダーの背景と文字の色" 
    376  
    377 #: xpress_default/functions.php:162 
    378 msgid "Close Color Picker" 
    379 msgstr "カラーピッカーを閉じる" 
    380  
    381 #: xpress_default/functions.php:359 
    382 msgid "Options saved." 
    383 msgstr "設定を保存しました。" 
    384  
    385 #: xpress_default/functions.php:376 
    386 #: xpress_default/functions.php:383 
    387 msgid "Save" 
    388 msgstr "保存" 
    389  
    390 #: xpress_default/functions.php:377 
    391 msgid "Font Color:" 
    392 msgstr "フォントの色:" 
    393  
    394 #: xpress_default/functions.php:377 
    395 #, php-format 
    396 msgid "Any CSS color (%s or %s or %s)" 
    397 msgstr "CSS 色指定 (%s 、%s もしくは %s)" 
    398  
    399 #: xpress_default/functions.php:378 
    400 msgid "Upper Color:" 
    401 msgstr "グラデーション上側の色:" 
    402  
    403 #: xpress_default/functions.php:378 
    404 #: xpress_default/functions.php:379 
    405 #, php-format 
    406 msgid "HEX only (%s or %s)" 
    407 msgstr "16 進数のみ (%s もしくは %s)" 
    408  
    409 #: xpress_default/functions.php:379 
    410 msgid "Lower Color:" 
    411 msgstr "グラデーション下側の色:" 
    412  
    413 #: xpress_default/functions.php:381 
    414 msgid "Toggle Text" 
    415 msgstr "テキスト表示の切替え" 
    416  
    417 #: xpress_default/functions.php:382 
    418 msgid "Use Defaults" 
    419 msgstr "デフォルト設定に戻す" 
    420  
    421 #: xpress_default/functions.php:391 
    422 msgid "Font Color" 
    423 msgstr "フォントの色" 
    424  
    425 #: xpress_default/functions.php:392 
    426 msgid "Upper Color" 
    427 msgstr "グラデーション上側の色" 
    428  
    429 #: xpress_default/functions.php:393 
    430 msgid "Lower Color" 
    431 msgstr "グラデーション下側の色" 
    432  
    433 #: xpress_default/functions.php:394 
    434 msgid "Revert" 
    435 msgstr "取り消し" 
    436  
    437 #: xpress_default/functions.php:395 
    438 msgid "Advanced" 
    439 msgstr "詳細" 
    440  
    441 #: xpress_default/functions.php:402 
    442 msgid "Update Header &raquo;" 
    443 msgstr "ヘッダーを更新 &raquo;" 
    444  
    445 #: xpress_default/functions.php:408 
    446 msgid "Font Color (CSS):" 
    447 msgstr "フォントの色 (CSS):" 
    448  
    449 #: xpress_default/functions.php:409 
    450 msgid "Upper Color (HEX):" 
    451 msgstr "グラデーション上側の色 (16 進数):" 
    452  
    453 #: xpress_default/functions.php:410 
    454 msgid "Lower Color (HEX):" 
    455 msgstr "グラデーション下側の色 (16 進数):" 
    456  
    457 #: xpress_default/functions.php:411 
    458 msgid "Select Default Colors" 
    459 msgstr "デフォルト設定に戻す" 
    460  
    461 #: xpress_default/functions.php:412 
    462 msgid "Toggle Text Display" 
    463 msgstr "テキスト表示の切替え" 
    464  
    465 #: xpress_default/header.php:9 
    466 msgid "&raquo; Blog Archive" 
    467 msgstr "&raquo; ブログアーカイブ" 
    468  
    469 #: xpress_default/header.php:14 
    470 #, php-format 
    471 msgid "%s RSS Feed" 
    472 msgstr "%s RSS フィード" 
    473  
    474 #: xpress_default/header.php:15 
    475 #, php-format 
    476 msgid "%s Atom Feed" 
    477 msgstr "%s Atom フィード" 
    478  
    479 #: xpress_default/image.php:13 
    480 #: xpress_default/index.php:32 
    481 #: xpress_default/single.php:25 
    482 msgid "Read the rest of this entry &raquo;" 
    483 msgstr "この投稿の続きを読む &raquo;" 
    484  
    485 #: xpress_default/image.php:15 
    486 #: xpress_default/page.php:29 
    487 #: xpress_default/single.php:27 
    488 msgid "Pages:" 
    489 msgstr "ページ:" 
    490  
    491 #: xpress_default/image.php:25 
    492 #, php-format 
    493 msgid "This entry was posted on %1$s at %2$s and is filed under %3$s." 
    494 msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。" 
    495  
    496 #: xpress_default/image.php:27 
    497 #: xpress_default/single.php:38 
    498 #, php-format 
    499 msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed." 
    500 msgstr "この投稿へのコメントは <a href='%s'>RSS 2.0</a> フィードで購読することができます。" 
    501  
    502 #: xpress_default/image.php:31 
    503 #: xpress_default/single.php:45 
    504 #, php-format 
    505 msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
    506 msgstr "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>することができます。" 
    507  
    508 #: xpress_default/image.php:35 
    509 #: xpress_default/single.php:49 
    510 #, php-format 
    511 msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site." 
    512 msgstr "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。" 
    513  
    514 #: xpress_default/image.php:39 
    515 #: xpress_default/single.php:53 
    516 msgid "You can skip to the end and leave a response. Pinging is currently not allowed." 
    517 msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。" 
    518  
    519 #: xpress_default/image.php:43 
    520 #: xpress_default/single.php:57 
    521 msgid "Both comments and pings are currently closed." 
    522 msgstr "現在コメント、トラックバックともに受け付けておりません。" 
    523  
    524 #: xpress_default/image.php:45 
    525 #: xpress_default/page.php:34 
    526 msgid "Edit this entry." 
    527 msgstr "この投稿を編集する。" 
    528  
    529 #: xpress_default/image.php:58 
    530 #: xpress_default/single.php:71 
    531 msgid "Sorry, no posts matched your criteria." 
    532 msgstr "該当する投稿は見つかりませんでした。" 
    533  
    534 #: xpress_default/index.php:46 
    535 #, php-format 
    536 msgid "Views :%d" 
    537 msgstr "閲覧 :%d" 
    538  
    539 #: xpress_default/index.php:64 
    540 msgid "Sorry, but you are looking for something that isn&#8217;t here." 
    541 msgstr "お探しの物はここにはありません。" 
    542  
    543 #: xpress_default/links.php:18 
    544 msgid "Links:" 
    545 msgstr "リンク:" 
    546  
    547 #: xpress_default/page.php:27 
    548 msgid "Read the rest of this page &raquo;" 
    549 msgstr "このページの続きを読む &raquo;" 
    550  
    551 #: xpress_default/search.php:24 
    552 msgid "Search Results" 
    553 msgstr "検索結果" 
    554  
    555508#: xpress_default/search.php:51 
    556509msgid "No posts found. Try a different search?" 
     
    584537msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s." 
    585538msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。" 
     539 
     540#: xpress_default/sidebar.php:27 
     541msgid "F, Y" 
     542msgstr "Y 年 n 月" 
    586543 
    587544#: xpress_default/sidebar.php:30 
  • trunk/wp-content/themes/xpress_default/style.css

    r32 r140  
    11/* 
    2 Theme Name: XPress Default Themes 
    3 Theme URI: http://xoops-fan.com/ 
    4 Description: The theme for XPress series 
    5 Version: 0.5 
    6 Author: KURO 
    7 Author URI: http://xoops-fan.com/ 
    8 Tags: XPressME,XPressEUC,KURO 
     2Theme Name: XPressME Default Themes 
     3Theme URI: http://trac.xpressme.info/XPressME 
     4Description: The theme for XPressME series 
     5Version: 2.0 
     6Author: toemon 
     7Author URI: http://www.toemon.com 
     8Tags: XPressME,toemon 
    99 
    1010*/ 
    1111 
    12  
    13  
     12.xpress-header-title { 
     13        float: left; 
     14        margin-bottom: 20px; 
     15 
     16        font-size: 16px; 
     17} 
     18.xpress-conditional-title { 
     19        font-size: 14px; 
     20        margin-bottom: 20px; 
     21 
     22} 
     23 
     24.xpress-description { 
     25        clear: both; 
     26        font-size: 12px; 
     27        float: left; 
     28} 
     29 
     30.xpress-operation-link { 
     31        font-size: 12px; 
     32        text-align: right; 
     33} 
     34 
     35.xpress-border { 
     36        clear: both; 
     37display: block; 
     38} 
     39 
     40.xpress-navi-bar { 
     41        clear: both; 
     42        display: block; 
     43        } 
     44         
     45.xpress_pagenavi { 
     46        display: block; 
     47        margin: 0 auto; 
     48        padding: 5px 0; 
     49        text-align: center; 
     50} 
     51.xpress-next-posts-link { 
     52        float: left; 
     53 
     54} 
     55.xpress-previous-posts-link{ 
     56        text-align: right; 
     57} 
     58 
     59.xpress-post-entry { 
     60        clear: both; 
     61        padding-left: 20px; 
     62 
     63} 
     64.xpress-post-footer{ 
     65        text-align: right; 
     66        font-size: 0.8em; 
     67 
     68} 
    1469/* Begin Typography & Colors */ 
    1570 
    16 #xpress_content { 
    17         font-size: 1.0em 
     71.xpress_content { 
     72        font-size: 1.0em; 
    1873        } 
    1974 
     
    3388#xpress_page .alt { 
    3489        background-color: #f8f8f8; 
    35         border-top: 1px solid #ddd; 
    36         border-bottom: 1px solid #ddd; 
     90        border-top: 1px solid #000; 
     91        border-bottom: 1px solid #000; 
    3792        } 
    3893 
     
    49104#xpress_page h1, 
    50105#xpress_page h2 { 
    51         font-size: 1.5em; 
     106        font-size: 1.4em; 
    52107        } 
    53108 
     
    142197}        
    143198 
    144 #xpress_credit { 
    145         font-size: 0.9em; 
    146         color: darkgray; 
    147 } 
    148 #xpress_credit a { 
    149         font-size: 0.9em; 
    150         color: darkgray; 
    151 }        
    152199/* End Typography & Colors */ 
    153200 
     
    192239        }        
    193240         
    194 .post hr { 
    195         display: block; 
    196         } 
    197          
    198 #xpress_content .post { 
     241         
     242.xpress-post { 
    199243        width: 100%; 
    200         margin: 0 0 20px; 
     244        margin: 5px 0 10px; 
    201245        padding-top:20px; 
    202246        clear: both; 
    203247        }        
    204248         
    205 .post h2 { 
    206         margin: 0; 
     249.xpress-post h2 { 
     250        margin: 0; 
     251        } 
     252.xpress-post hr { 
     253        display: block; 
    207254        } 
    208255 
     
    250297 
    251298#xpress_footer { 
    252         padding-top: 40px; 
     299        padding-top: 0px; 
    253300        margin: 0 auto; 
    254301        width: 100%; 
     
    258305#xpress_footer p { 
    259306        margin: 0; 
    260         padding: 20px 0; 
    261         text-align: center; 
    262         } 
    263          
    264 #xpress_credit { 
    265         margin: 0; 
    266         padding: 0; 
    267         text-align: center; 
    268         } 
    269          
     307        padding: 0px 0; 
     308        text-align: center; 
     309        } 
     310         
     311.xpress_rss { 
     312        margin: 0; 
     313        padding: 0; 
     314        text-align: right; 
     315        } 
     316 
     317 
     318.xpress_credit { 
     319        margin: 0; 
     320        padding: 0; 
     321        text-align: center; 
     322        font-size: 0.9em; 
     323        color: #BDBDBD; 
     324        } 
     325         
     326.xpress_credit a { 
     327        font-size: 0.9em; 
     328        color: #BDBDBD; 
     329}        
     330 
    270331.dateblock{ 
    271332        margin:-12px 0 0 -5px!important; 
     
    567628        } 
    568629 
    569 #xpress_page hr { 
    570         display: none; 
    571         } 
    572630 
    573631#xpress_page a img { 
     
    587645        } 
    588646         
    589 .xpress_pagenavi { 
    590         display: block; 
    591         margin: 0 auto; 
    592         padding: 5px 0; 
    593         text-align: center; 
    594         } 
     647 
    595648/* End Various Tags & Classes*/ 
    596649 
Note: See TracChangeset for help on using the changeset viewer.