XPressME Integration Kit

Trac

Changeset 641


Ignore:
Timestamp:
Aug 24, 2010, 8:35:47 AM (14 years ago)
Author:
toemon
Message:

extras/my_themes をフッターサイドバー配置可能に修正

Location:
trunk/extras/my_themes
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/extras/my_themes/footer.php

    r618 r641  
    11<hr class="xpress-border"></hr> 
    2  
     2<?php 
     3        /* A sidebar in the footer? Yep. You can can customize 
     4         * your footer with four columns of widgets. 
     5         */ 
     6        get_sidebar( 'footer' ); 
     7?> 
    38<div id="xpress_footer"> 
    49        <div class="xpress_rss"> 
  • trunk/extras/my_themes/functions.php

    r627 r641  
    11<?php 
    2 load_theme_textdomain('xpress'); 
     2/** Tell WordPress to run xpress_setup() when the 'after_setup_theme' hook is run. */ 
     3add_action( 'after_setup_theme', 'xpress_setup' ); 
     4if ( ! function_exists( 'xpress_setup' ) ): 
     5function xpress_setup() { 
     6        // This theme uses post thumbnails 
     7        add_theme_support( 'post-thumbnails' ); 
     8        // Add default posts and comments RSS feed links to head 
     9        add_theme_support( 'automatic-feed-links' ); 
     10 
     11        // Make theme available for translation 
     12        // Translations can be filed in the /languages/ directory 
     13        load_theme_textdomain( 'xpress', TEMPLATEPATH . '/languages' ); 
     14 
     15        $locale = get_locale(); 
     16        $locale_file = TEMPLATEPATH . "/languages/$locale.php"; 
     17        if ( is_readable( $locale_file ) ) 
     18                require_once( $locale_file ); 
     19 
     20        // This theme uses wp_nav_menu() 
     21        if ( function_exists('add_theme_support') )add_theme_support( 'nav-menus' ); 
     22        // This theme uses wp_nav_menu() in one location. 
     23        if ( function_exists('register_nav_menus') ){ 
     24                        register_nav_menus( array( 
     25                        'primary' => __('Primary Navigation','xpress'), 
     26                ) ); 
     27        } 
     28         
     29}        
     30endif; 
    331         
    432if ( function_exists('register_sidebar') ) 
     
    1038    )); 
    1139 
    12 // This theme uses wp_nav_menu() 
    13 if ( function_exists('add_theme_support') )add_theme_support( 'nav-menus' ); 
    14 // This theme uses wp_nav_menu() in one location. 
    15 if ( function_exists('register_nav_menus') ){ 
    16                 register_nav_menus( array( 
    17                 'primary' => __('Primary Navigation','xpress'), 
    18         ) ); 
    19 } 
    2040 
    2141function xpress_head() { 
     
    150170                                } 
    151171                        } 
     172                         
     173 
    152174                        //print_r($_REQUEST); 
    153175                        wp_redirect("themes.php?page=functions.php&saved=true"); 
     
    155177                } 
    156178                add_action('admin_head', 'xpress_theme_page_head'); 
    157         } 
    158         add_theme_page(__('Customize Header', 'xpress'), __('Header Image and Color', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_page'); 
    159 } 
     179                 
     180                if ( isset( $_REQUEST['action'] ) && 'update_footer' == $_REQUEST['action'] ) { 
     181                        check_admin_referer('xpress-footer'); 
     182                        if ( isset($_REQUEST['xpress_footer_sidebars_count']) ) { 
     183                                check_admin_referer('xpress-footer'); 
     184                                if ( '' == $_REQUEST['xpress_footer_sidebars_count'] || '0' == $_REQUEST['xpress_footer_sidebars_count'] ){ 
     185                                        delete_option('xpress_footer_sidebars_count'); 
     186                                } else { 
     187                                        update_option('xpress_footer_sidebars_count',  $_REQUEST['xpress_footer_sidebars_count']); 
     188                                } 
     189                        } 
     190 
     191                        //print_r($_REQUEST); 
     192                        wp_redirect("themes.php?page=functions.php&footer_saved=true"); 
     193                        die; 
     194                } 
     195        } 
     196        add_theme_page(__('Header & Footer', 'xpress'), __('Header & Footer', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_header_page'); 
     197} 
     198 
    160199 
    161200function xpress_theme_page_head() { 
     
    361400                border-bottom: 0px; 
    362401        } 
     402        #footer_submit { 
     403                margin-top: 20px; 
     404                text-align: center; 
     405        } 
     406        #footer_form{ 
     407                padding-left: 40px; 
     408        } 
     409 
    363410</style> 
    364411<?php 
    365412} 
    366413 
    367 function xpress_theme_page() { 
    368         if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Options saved.', 'xpress').'</strong></p></div>'; 
     414function xpress_theme_header_page() { 
     415        if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Header Options saved.', 'xpress').'</strong></p></div>'; 
     416        if ( isset( $_REQUEST['footer_saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Footer Options saved.', 'xpress').'</strong></p></div>'; 
    369417?> 
    370418<div class='wrap'> 
     
    424472                </div> 
    425473        </div> 
     474        <div id="xpress-footer"> 
     475        <h2><?php _e('Footer', 'xpress'); ?></h2> 
     476                <form id="footer_setting" style="display:inline;" method="post" action=""> 
     477                        <div id="footer_form"> 
     478                                <?php wp_nonce_field('xpress-footer'); ?> 
     479                                <?php 
     480                                if ( function_exists('register_sidebar') ){ 
     481                                        echo __('Set number of the sidebar to display in the footer.','xpress'); 
     482                                        echo '<select name="xpress_footer_sidebars_count">'."\n"; 
     483                                                $side_bar_num = get_option('xpress_footer_sidebars_count'); 
     484                                                if (empty($side_bar_num)) $side_bar_num = 0; 
     485                                                for($i=0;$i<=5;$i++){ 
     486                                                        if ($i== 0) $sel_name = __('none','xpress'); else $sel_name = $i; 
     487                                                        if ($i == $side_bar_num) $selected = ' selected '; else $selected = ''; 
     488                                                        echo "\t\t\t\t<option value=\"{$i}\" label=\"{$i}\" {$selected}>{$sel_name}</option>\n"; 
     489                                                } 
     490                                        echo "</select>\n"; 
     491                                } 
     492                                ?> 
     493                                <input type="hidden" name="action" value="update_footer" /> 
     494                        </div> 
     495                        <div id="footer_submit"> 
     496                        <input type="submit" name="footer_submit" id="footer_submit" value="<?php echo attribute_escape(__('Update Footer &raquo;', 'xpress')); ?>" /> 
     497                        </div> 
     498                </form> 
     499        </div> 
     500 
    426501</div> 
    427 <?php } ?> 
     502<?php }  
     503 
     504function footer_widgets_init() { 
     505        if (!function_exists('register_sidebar') ) return; 
     506 
     507        $side_bar_num = get_option('xpress_footer_sidebars_count'); 
     508        if (empty($side_bar_num)) return; 
     509        for($i=1;$i <= $side_bar_num;$i++){ 
     510                switch($i){ 
     511                        case 1: 
     512                                $name = __( 'First Footer Widget Area', 'kubrick' ); 
     513                                $description = __( 'The first footer widget area', 'kubrick' ); 
     514                                break; 
     515                        case 2: 
     516                                $name = __( 'Second Footer Widget Area', 'kubrick' ); 
     517                                $description = __( 'The second footer widget area', 'kubrick' ); 
     518                                break; 
     519                        case 3: 
     520                                $name = __( 'Third Footer Widget Area', 'kubrick' ); 
     521                                $description = __( 'The third footer widget area', 'kubrick' ); 
     522                                break; 
     523                        case 4: 
     524                                $name = __( 'Fourth Footer Widget Area', 'kubrick' ); 
     525                                $description = __( 'The fourth footer widget area', 'kubrick' ); 
     526                                break; 
     527                        case 5: 
     528                                $name = __( 'Fifth Footer Widget Area', 'kubrick' ); 
     529                                $description = __( 'The fifth footer widget area', 'kubrick' ); 
     530                                break; 
     531                                 
     532                } 
     533 
     534                register_sidebar( array( 
     535                        'name' => $name, 
     536                        'id' => 'footer-widget-area-'.$i, 
     537                        'description' => $description, 
     538                        'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 
     539                        'after_widget' => '</li>', 
     540                        'before_title' => '<h3 class="widget-title">', 
     541                        'after_title' => '</h3>', 
     542                ) ); 
     543        } 
     544} 
     545 
     546add_action( 'widgets_init', 'footer_widgets_init' ); 
     547 
     548 
     549 
     550?> 
  • trunk/extras/my_themes/ja.po

    r619 r641  
    88"Project-Id-Version: XPress_Default_themes\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2010-06-12 12:35+0900\n" 
    11 "PO-Revision-Date: 2010-06-12 12:39+0900\n" 
     10"POT-Creation-Date: 2010-08-18 14:08+0900\n" 
     11"PO-Revision-Date: 2010-08-18 14:16+0900\n" 
    1212"Last-Translator: toemon <info@toemon.com>\n" 
    1313"Language-Team: toemon <info@toemon.com>\n" 
     
    8989 
    9090#: comments-popup.php:64 
    91 #: comments.php:92 
     91#: comments.php:91 
    9292msgid "Name" 
    9393msgstr "お名前" 
     
    179179msgstr "%s にコメントする" 
    180180 
    181 #: comments.php:80 
     181#: comments.php:79 
    182182#, php-format 
    183183msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
    184184msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 
    185185 
    186 #: comments.php:86 
    187 #: comments.php:88 
     186#: comments.php:85 
     187#: comments.php:87 
    188188#, php-format 
    189189msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
    190190msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 
    191191 
    192 #: comments.php:86 
    193 #: comments.php:88 
     192#: comments.php:85 
     193#: comments.php:87 
    194194msgid "Log out of this account" 
    195195msgstr "このアカウントからログアウト" 
    196196 
    197 #: comments.php:86 
    198 #: comments.php:88 
     197#: comments.php:85 
     198#: comments.php:87 
    199199msgid "Log out &raquo;" 
    200200msgstr "ログアウト &raquo;" 
    201201 
    202 #: comments.php:92 
    203 #: comments.php:95 
     202#: comments.php:91 
     203#: comments.php:94 
    204204msgid "(required)" 
    205205msgstr " (必須)" 
    206206 
    207 #: comments.php:95 
     207#: comments.php:94 
    208208msgid "Mail (will not be published)" 
    209209msgstr "メールアドレス (公開されません)" 
    210210 
    211 #: comments.php:98 
     211#: comments.php:97 
    212212msgid "Website" 
    213213msgstr "ウェブサイト" 
    214214 
    215 #: comments.php:103 
     215#: comments.php:102 
    216216#, php-format 
    217217msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
    218218msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 
    219219 
    220 #: comments.php:107 
     220#: comments.php:106 
    221221msgid "Submit Comment" 
    222222msgstr "コメント送信" 
    223223 
    224 #: footer.php:5 
     224#: footer.php:10 
    225225#, php-format 
    226226msgid "%1$s and %2$s." 
    227227msgstr "%1$s と %2$s" 
    228228 
    229 #: footer.php:5 
     229#: footer.php:10 
    230230msgid "Entries (RSS)" 
    231231msgstr "投稿 (RSS)" 
    232232 
    233 #: footer.php:5 
     233#: footer.php:10 
    234234msgid "Comments (RSS)" 
    235235msgstr "コメント (RSS)" 
    236236 
    237 #: footer.php:7 
     237#: footer.php:12 
    238238#, php-format 
    239239msgid "%.3f sec." 
    240240msgstr "%.3f 秒" 
    241241 
    242 #: functions.php:15 
     242#: functions.php:25 
    243243msgid "Primary Navigation" 
    244244msgstr "メインナビゲージョン" 
    245245 
    246 #: functions.php:157 
    247 msgid "Customize Header" 
    248 msgstr "ヘッダーのカスタマイズ" 
    249  
    250 #: functions.php:157 
    251 #: functions.php:371 
     246#: functions.php:196 
     247msgid "Header & Footer" 
     248msgstr "ヘッダー&フッター" 
     249 
     250#: functions.php:210 
     251msgid "Close Color Picker" 
     252msgstr "カラーピッカーを閉じる" 
     253 
     254#: functions.php:415 
     255msgid "Header Options saved." 
     256msgstr "ヘッダー設定を保存しました。" 
     257 
     258#: functions.php:416 
     259msgid "Footer Options saved." 
     260msgstr "フッター設定を保存しました。" 
     261 
     262#: functions.php:420 
    252263msgid "Header Image and Color" 
    253264msgstr "ヘッダーの背景と文字の色" 
    254265 
    255 #: functions.php:170 
    256 msgid "Close Color Picker" 
    257 msgstr "カラーピッカーを閉じる" 
    258  
    259 #: functions.php:367 
    260 msgid "Options saved." 
    261 msgstr "設定を保存しました。" 
    262  
    263 #: functions.php:384 
    264 #: functions.php:391 
     266#: functions.php:433 
     267#: functions.php:440 
    265268msgid "Save" 
    266269msgstr "保存" 
    267270 
    268 #: functions.php:385 
     271#: functions.php:434 
    269272msgid "Font Color:" 
    270273msgstr "フォントの色:" 
    271274 
    272 #: functions.php:385 
     275#: functions.php:434 
    273276#, php-format 
    274277msgid "Any CSS color (%s or %s or %s)" 
    275278msgstr "CSS 色指定 (%s 、%s もしくは %s)" 
    276279 
    277 #: functions.php:386 
     280#: functions.php:435 
    278281msgid "Upper Color:" 
    279282msgstr "グラデーション上側の色:" 
    280283 
    281 #: functions.php:386 
    282 #: functions.php:387 
     284#: functions.php:435 
     285#: functions.php:436 
    283286#, php-format 
    284287msgid "HEX only (%s or %s)" 
    285288msgstr "16 進数のみ (%s もしくは %s)" 
    286289 
    287 #: functions.php:387 
     290#: functions.php:436 
    288291msgid "Lower Color:" 
    289292msgstr "グラデーション下側の色:" 
    290293 
    291 #: functions.php:389 
     294#: functions.php:438 
    292295msgid "Toggle Text" 
    293296msgstr "テキスト表示の切替え" 
    294297 
    295 #: functions.php:390 
     298#: functions.php:439 
    296299msgid "Use Defaults" 
    297300msgstr "デフォルト設定に戻す" 
    298301 
    299 #: functions.php:399 
     302#: functions.php:448 
    300303msgid "Font Color" 
    301304msgstr "フォントの色" 
    302305 
    303 #: functions.php:400 
     306#: functions.php:449 
    304307msgid "Upper Color" 
    305308msgstr "グラデーション上側の色" 
    306309 
    307 #: functions.php:401 
     310#: functions.php:450 
    308311msgid "Lower Color" 
    309312msgstr "グラデーション下側の色" 
    310313 
    311 #: functions.php:402 
     314#: functions.php:451 
    312315msgid "Revert" 
    313316msgstr "取り消し" 
    314317 
    315 #: functions.php:403 
     318#: functions.php:452 
    316319msgid "Advanced" 
    317320msgstr "詳細" 
    318321 
    319 #: functions.php:410 
     322#: functions.php:459 
    320323msgid "Update Header &raquo;" 
    321324msgstr "ヘッダーを更新 &raquo;" 
    322325 
    323 #: functions.php:416 
     326#: functions.php:465 
    324327msgid "Font Color (CSS):" 
    325328msgstr "フォントの色 (CSS):" 
    326329 
    327 #: functions.php:417 
     330#: functions.php:466 
    328331msgid "Upper Color (HEX):" 
    329332msgstr "グラデーション上側の色 (16 進数):" 
    330333 
    331 #: functions.php:418 
     334#: functions.php:467 
    332335msgid "Lower Color (HEX):" 
    333336msgstr "グラデーション下側の色 (16 進数):" 
    334337 
    335 #: functions.php:419 
     338#: functions.php:468 
    336339msgid "Select Default Colors" 
    337340msgstr "デフォルト設定に戻す" 
    338341 
    339 #: functions.php:420 
     342#: functions.php:469 
    340343msgid "Toggle Text Display" 
    341344msgstr "テキスト表示の切替え" 
     345 
     346#: functions.php:475 
     347msgid "Footer" 
     348msgstr "フッター" 
     349 
     350#: functions.php:479 
     351msgid "Set number of the sidebar to display in the footer." 
     352msgstr "フッターに表示するサイドバーの数を設定" 
     353 
     354#: functions.php:485 
     355msgid "none" 
     356msgstr "なし" 
     357 
     358#: functions.php:494 
     359msgid "Update Footer &raquo;" 
     360msgstr "フッターを更新 &raquo;" 
     361 
     362#: functions.php:510 
     363msgid "First Footer Widget Area" 
     364msgstr "フッターウィジェットエリア1" 
     365 
     366#: functions.php:511 
     367msgid "The first footer widget area" 
     368msgstr "フッターウィジェットエリア1" 
     369 
     370#: functions.php:514 
     371msgid "Second Footer Widget Area" 
     372msgstr "フッターウィジェットエリア2" 
     373 
     374#: functions.php:515 
     375msgid "The second footer widget area" 
     376msgstr "フッターウィジェットエリア2" 
     377 
     378#: functions.php:518 
     379msgid "Third Footer Widget Area" 
     380msgstr "フッターウィジェットエリア3" 
     381 
     382#: functions.php:519 
     383msgid "The third footer widget area" 
     384msgstr "フッターウィジェットエリア3" 
     385 
     386#: functions.php:522 
     387msgid "Fourth Footer Widget Area" 
     388msgstr "フッターウィジェットエリア4" 
     389 
     390#: functions.php:523 
     391msgid "The fourth footer widget area" 
     392msgstr "フッターウィジェットエリア4" 
     393 
     394#: functions.php:526 
     395msgid "Fifth Footer Widget Area" 
     396msgstr "フッターウィジェットエリア5" 
     397 
     398#: functions.php:527 
     399msgid "The fifth footer widget area" 
     400msgstr "フッターウィジェットエリア5" 
    342401 
    343402#: header.php:9 
     
    368427 
    369428#: image.php:13 
    370 #: single.php:32 
    371429msgid "Read the rest of this entry &raquo;" 
    372430msgstr "この投稿の続きを読む &raquo;" 
     
    416474 
    417475#: image.php:58 
    418 #: single.php:94 
    419476msgid "Sorry, no posts matched your criteria." 
    420477msgstr "該当する投稿は見つかりませんでした。" 
     
    424481#: multi_blog_index.php:33 
    425482#: multi_blog_index.php:35 
    426 #: single.php:24 
    427 #: single.php:26 
    428483#, php-format 
    429484msgid "Permanent Link to %s" 
     
    432487#: index.php:44 
    433488#: multi_blog_index.php:48 
    434 #: single.php:42 
    435489#, php-format 
    436490msgid "Views :%d" 
     
    439493#: index.php:47 
    440494#: multi_blog_index.php:51 
    441 #: single.php:45 
    442495#, php-format 
    443496msgid "Posted in %s" 
     
    446499#: index.php:49 
    447500#: multi_blog_index.php:53 
    448 #: single.php:47 
    449501msgid "Edit" 
    450502msgstr "編集" 
     
    452504#: index.php:50 
    453505#: multi_blog_index.php:54 
    454 #: single.php:48 
    455506msgid "No Comments &#187;" 
    456507msgstr "コメントはまだありません &#187;" 
     
    458509#: index.php:50 
    459510#: multi_blog_index.php:54 
    460 #: single.php:48 
    461511msgid "1 Comment &#187;" 
    462512msgstr "1 件のコメント &#187;" 
     
    464514#: index.php:50 
    465515#: multi_blog_index.php:54 
    466 #: single.php:48 
    467516msgid "% Comments &#187;" 
    468517msgstr "% 件のコメント &#187;" 
     
    470519#: index.php:50 
    471520#: multi_blog_index.php:54 
    472 #: single.php:48 
    473521msgid "Comments Closed" 
    474522msgstr "コメントは受け付けていません。" 
     
    747795msgstr "テーマ選択" 
    748796 
     797#~ msgid "Customize Header" 
     798#~ msgstr "ヘッダーのカスタマイズ" 
    749799#~ msgid "%d queries. %s seconds." 
    750800#~ msgstr "%d 個のクエリと %s 秒を要しました。" 
  • trunk/extras/my_themes/ja_EUC.po

    r619 r641  
    99"Report-Msgid-Bugs-To: \n" 
    1010"POT-Creation-Date: 2010-06-12 12:47+0900\n" 
    11 "PO-Revision-Date: 2010-06-12 12:47+0900\n" 
     11"PO-Revision-Date: 2010-08-18 14:22+0900\n" 
    1212"Last-Translator: toemon <info@toemon.com>\n" 
    1313"Language-Team: toemon <info@toemon.com>\n" 
     
    8989 
    9090#: comments-popup.php:64 
    91 #: comments.php:92 
     91#: comments.php:91 
    9292msgid "Name" 
    9393msgstr "¤ªÌ¾Á°" 
     
    179179msgstr "%s ¤Ë¥³¥á¥ó¥È¤¹¤ë" 
    180180 
    181 #: comments.php:80 
     181#: comments.php:79 
    182182#, php-format 
    183183msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
    184184msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£" 
    185185 
    186 #: comments.php:86 
    187 #: comments.php:88 
     186#: comments.php:85 
     187#: comments.php:87 
    188188#, php-format 
    189189msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
    190190msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£" 
    191191 
    192 #: comments.php:86 
    193 #: comments.php:88 
     192#: comments.php:85 
     193#: comments.php:87 
    194194msgid "Log out of this account" 
    195195msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È" 
    196196 
    197 #: comments.php:86 
    198 #: comments.php:88 
     197#: comments.php:85 
     198#: comments.php:87 
    199199msgid "Log out &raquo;" 
    200200msgstr "¥í¥°¥¢¥¦¥È &raquo;" 
    201201 
    202 #: comments.php:92 
    203 #: comments.php:95 
     202#: comments.php:91 
     203#: comments.php:94 
    204204msgid "(required)" 
    205205msgstr " (ɬ¿Ü)" 
    206206 
    207 #: comments.php:95 
     207#: comments.php:94 
    208208msgid "Mail (will not be published)" 
    209209msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)" 
    210210 
    211 #: comments.php:98 
     211#: comments.php:97 
    212212msgid "Website" 
    213213msgstr "¥¦¥§¥Ö¥µ¥¤¥È" 
    214214 
    215 #: comments.php:103 
     215#: comments.php:102 
    216216#, php-format 
    217217msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
    218218msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍѤǤ­¤Þ¤¹: <code>%s</code>" 
    219219 
    220 #: comments.php:107 
     220#: comments.php:106 
    221221msgid "Submit Comment" 
    222222msgstr "¥³¥á¥ó¥ÈÁ÷¿®" 
    223223 
    224 #: footer.php:5 
     224#: footer.php:10 
    225225#, php-format 
    226226msgid "%1$s and %2$s." 
    227227msgstr "%1$s ¤È %2$s" 
    228228 
    229 #: footer.php:5 
     229#: footer.php:10 
    230230msgid "Entries (RSS)" 
    231231msgstr "Åê¹Æ (RSS)" 
    232232 
    233 #: footer.php:5 
     233#: footer.php:10 
    234234msgid "Comments (RSS)" 
    235235msgstr "¥³¥á¥ó¥È (RSS)" 
    236236 
    237 #: footer.php:7 
     237#: footer.php:12 
    238238#, php-format 
    239239msgid "%.3f sec." 
    240240msgstr "%.3f ÉÃ" 
    241241 
    242 #: functions.php:15 
     242#: functions.php:25 
    243243msgid "Primary Navigation" 
    244244msgstr "¥á¥¤¥ó¥Ê¥Ó¥²¡¼¥¸¥ç¥ó" 
    245245 
    246 #: functions.php:157 
    247 msgid "Customize Header" 
    248 msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º" 
    249  
    250 #: functions.php:157 
    251 #: functions.php:371 
     246#: functions.php:196 
     247msgid "Header & Footer" 
     248msgstr "¥Ø¥Ã¥À¡¼&¥Õ¥Ã¥¿¡¼" 
     249 
     250#: functions.php:210 
     251msgid "Close Color Picker" 
     252msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊĤ¸¤ë" 
     253 
     254#: functions.php:415 
     255msgid "Header Options saved." 
     256msgstr "¥Ø¥Ã¥À¡¼ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿¡£" 
     257 
     258#: functions.php:416 
     259msgid "Footer Options saved." 
     260msgstr "¥Õ¥Ã¥¿¡¼ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿¡£" 
     261 
     262#: functions.php:420 
    252263msgid "Header Image and Color" 
    253264msgstr "¥Ø¥Ã¥À¡¼¤ÎÇطʤÈʸ»ú¤Î¿§" 
    254265 
    255 #: functions.php:170 
    256 msgid "Close Color Picker" 
    257 msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊĤ¸¤ë" 
    258  
    259 #: functions.php:367 
    260 msgid "Options saved." 
    261 msgstr "ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿¡£" 
    262  
    263 #: functions.php:384 
    264 #: functions.php:391 
     266#: functions.php:433 
     267#: functions.php:440 
    265268msgid "Save" 
    266269msgstr "Êݸ" 
    267270 
    268 #: functions.php:385 
     271#: functions.php:434 
    269272msgid "Font Color:" 
    270273msgstr "¥Õ¥©¥ó¥È¤Î¿§:" 
    271274 
    272 #: functions.php:385 
     275#: functions.php:434 
    273276#, php-format 
    274277msgid "Any CSS color (%s or %s or %s)" 
    275278msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)" 
    276279 
    277 #: functions.php:386 
     280#: functions.php:435 
    278281msgid "Upper Color:" 
    279282msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§:" 
    280283 
    281 #: functions.php:386 
    282 #: functions.php:387 
     284#: functions.php:435 
     285#: functions.php:436 
    283286#, php-format 
    284287msgid "HEX only (%s or %s)" 
    285288msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)" 
    286289 
    287 #: functions.php:387 
     290#: functions.php:436 
    288291msgid "Lower Color:" 
    289292msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:" 
    290293 
    291 #: functions.php:389 
     294#: functions.php:438 
    292295msgid "Toggle Text" 
    293296msgstr "¥Æ¥­¥¹¥Èɽ¼¨¤ÎÀÚÂؤ¨" 
    294297 
    295 #: functions.php:390 
     298#: functions.php:439 
    296299msgid "Use Defaults" 
    297300msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌ᤹" 
    298301 
    299 #: functions.php:399 
     302#: functions.php:448 
    300303msgid "Font Color" 
    301304msgstr "¥Õ¥©¥ó¥È¤Î¿§" 
    302305 
    303 #: functions.php:400 
     306#: functions.php:449 
    304307msgid "Upper Color" 
    305308msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§" 
    306309 
    307 #: functions.php:401 
     310#: functions.php:450 
    308311msgid "Lower Color" 
    309312msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§" 
    310313 
    311 #: functions.php:402 
     314#: functions.php:451 
    312315msgid "Revert" 
    313316msgstr "¼è¤ê¾Ã¤·" 
    314317 
    315 #: functions.php:403 
     318#: functions.php:452 
    316319msgid "Advanced" 
    317320msgstr "¾ÜºÙ" 
    318321 
    319 #: functions.php:410 
     322#: functions.php:459 
    320323msgid "Update Header &raquo;" 
    321324msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· &raquo;" 
    322325 
    323 #: functions.php:416 
     326#: functions.php:465 
    324327msgid "Font Color (CSS):" 
    325328msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):" 
    326329 
    327 #: functions.php:417 
     330#: functions.php:466 
    328331msgid "Upper Color (HEX):" 
    329332msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§ (16 ¿Ê¿ô):" 
    330333 
    331 #: functions.php:418 
     334#: functions.php:467 
    332335msgid "Lower Color (HEX):" 
    333336msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):" 
    334337 
    335 #: functions.php:419 
     338#: functions.php:468 
    336339msgid "Select Default Colors" 
    337340msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌ᤹" 
    338341 
    339 #: functions.php:420 
     342#: functions.php:469 
    340343msgid "Toggle Text Display" 
    341344msgstr "¥Æ¥­¥¹¥Èɽ¼¨¤ÎÀÚÂؤ¨" 
     345 
     346#: functions.php:475 
     347msgid "Footer" 
     348msgstr "¥Õ¥Ã¥¿¡¼" 
     349 
     350#: functions.php:479 
     351msgid "Set number of the sidebar to display in the footer." 
     352msgstr "¥Õ¥Ã¥¿¡¼¤Ëɽ¼¨¤¹¤ë¥µ¥¤¥É¥Ð¡¼¤Î¿ô¤òÀßÄê" 
     353 
     354#: functions.php:485 
     355msgid "none" 
     356msgstr "¤Ê¤·" 
     357 
     358#: functions.php:494 
     359msgid "Update Footer &raquo;" 
     360msgstr "¥Õ¥Ã¥¿¡¼¤ò¹¹¿· &raquo;" 
     361 
     362#: functions.php:510 
     363msgid "First Footer Widget Area" 
     364msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±" 
     365 
     366#: functions.php:511 
     367msgid "The first footer widget area" 
     368msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±" 
     369 
     370#: functions.php:514 
     371msgid "Second Footer Widget Area" 
     372msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²" 
     373 
     374#: functions.php:515 
     375msgid "The second footer widget area" 
     376msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²" 
     377 
     378#: functions.php:518 
     379msgid "Third Footer Widget Area" 
     380msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³" 
     381 
     382#: functions.php:519 
     383msgid "The third footer widget area" 
     384msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³" 
     385 
     386#: functions.php:522 
     387msgid "Fourth Footer Widget Area" 
     388msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´" 
     389 
     390#: functions.php:523 
     391msgid "The fourth footer widget area" 
     392msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´" 
     393 
     394#: functions.php:526 
     395msgid "Fifth Footer Widget Area" 
     396msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ" 
     397 
     398#: functions.php:527 
     399msgid "The fifth footer widget area" 
     400msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ" 
    342401 
    343402#: header.php:9 
     
    368427 
    369428#: image.php:13 
    370 #: single.php:32 
    371429msgid "Read the rest of this entry &raquo;" 
    372430msgstr "¤³¤ÎÅê¹Æ¤Î³¤­¤òÆɤà &raquo;" 
     
    416474 
    417475#: image.php:58 
    418 #: single.php:94 
    419476msgid "Sorry, no posts matched your criteria." 
    420477msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£" 
     
    424481#: multi_blog_index.php:33 
    425482#: multi_blog_index.php:35 
    426 #: single.php:24 
    427 #: single.php:26 
    428483#, php-format 
    429484msgid "Permanent Link to %s" 
     
    432487#: index.php:44 
    433488#: multi_blog_index.php:48 
    434 #: single.php:42 
    435489#, php-format 
    436490msgid "Views :%d" 
     
    439493#: index.php:47 
    440494#: multi_blog_index.php:51 
    441 #: single.php:45 
    442495#, php-format 
    443496msgid "Posted in %s" 
     
    446499#: index.php:49 
    447500#: multi_blog_index.php:53 
    448 #: single.php:47 
    449501msgid "Edit" 
    450502msgstr "ÊÔ½¸" 
     
    452504#: index.php:50 
    453505#: multi_blog_index.php:54 
    454 #: single.php:48 
    455506msgid "No Comments &#187;" 
    456507msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó &#187;" 
     
    458509#: index.php:50 
    459510#: multi_blog_index.php:54 
    460 #: single.php:48 
    461511msgid "1 Comment &#187;" 
    462512msgstr "1 ·ï¤Î¥³¥á¥ó¥È &#187;" 
     
    464514#: index.php:50 
    465515#: multi_blog_index.php:54 
    466 #: single.php:48 
    467516msgid "% Comments &#187;" 
    468517msgstr "% ·ï¤Î¥³¥á¥ó¥È &#187;" 
     
    470519#: index.php:50 
    471520#: multi_blog_index.php:54 
    472 #: single.php:48 
    473521msgid "Comments Closed" 
    474522msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£" 
     
    747795msgstr "¥Æ¡¼¥ÞÁªÂò" 
    748796 
     797#~ msgid "Customize Header" 
     798#~ msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º" 
    749799#~ msgid "%d queries. %s seconds." 
    750800#~ msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %s ÉäòÍפ·¤Þ¤·¤¿¡£" 
  • trunk/extras/my_themes/ja_UTF.po

    r619 r641  
    99"Report-Msgid-Bugs-To: \n" 
    1010"POT-Creation-Date: 2010-06-12 12:41+0900\n" 
    11 "PO-Revision-Date: 2010-06-12 12:41+0900\n" 
     11"PO-Revision-Date: 2010-08-18 14:22+0900\n" 
    1212"Last-Translator: toemon <info@toemon.com>\n" 
    1313"Language-Team: toemon <info@toemon.com>\n" 
     
    8989 
    9090#: comments-popup.php:64 
    91 #: comments.php:92 
     91#: comments.php:91 
    9292msgid "Name" 
    9393msgstr "お名前" 
     
    179179msgstr "%s にコメントする" 
    180180 
    181 #: comments.php:80 
     181#: comments.php:79 
    182182#, php-format 
    183183msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 
    184184msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 
    185185 
    186 #: comments.php:86 
    187 #: comments.php:88 
     186#: comments.php:85 
     187#: comments.php:87 
    188188#, php-format 
    189189msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 
    190190msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 
    191191 
    192 #: comments.php:86 
    193 #: comments.php:88 
     192#: comments.php:85 
     193#: comments.php:87 
    194194msgid "Log out of this account" 
    195195msgstr "このアカウントからログアウト" 
    196196 
    197 #: comments.php:86 
    198 #: comments.php:88 
     197#: comments.php:85 
     198#: comments.php:87 
    199199msgid "Log out &raquo;" 
    200200msgstr "ログアウト &raquo;" 
    201201 
    202 #: comments.php:92 
    203 #: comments.php:95 
     202#: comments.php:91 
     203#: comments.php:94 
    204204msgid "(required)" 
    205205msgstr " (必須)" 
    206206 
    207 #: comments.php:95 
     207#: comments.php:94 
    208208msgid "Mail (will not be published)" 
    209209msgstr "メールアドレス (公開されません)" 
    210210 
    211 #: comments.php:98 
     211#: comments.php:97 
    212212msgid "Website" 
    213213msgstr "ウェブサイト" 
    214214 
    215 #: comments.php:103 
     215#: comments.php:102 
    216216#, php-format 
    217217msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 
    218218msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 
    219219 
    220 #: comments.php:107 
     220#: comments.php:106 
    221221msgid "Submit Comment" 
    222222msgstr "コメント送信" 
    223223 
    224 #: footer.php:5 
     224#: footer.php:10 
    225225#, php-format 
    226226msgid "%1$s and %2$s." 
    227227msgstr "%1$s と %2$s" 
    228228 
    229 #: footer.php:5 
     229#: footer.php:10 
    230230msgid "Entries (RSS)" 
    231231msgstr "投稿 (RSS)" 
    232232 
    233 #: footer.php:5 
     233#: footer.php:10 
    234234msgid "Comments (RSS)" 
    235235msgstr "コメント (RSS)" 
    236236 
    237 #: footer.php:7 
     237#: footer.php:12 
    238238#, php-format 
    239239msgid "%.3f sec." 
    240240msgstr "%.3f 秒" 
    241241 
    242 #: functions.php:15 
     242#: functions.php:25 
    243243msgid "Primary Navigation" 
    244244msgstr "メインナビゲージョン" 
    245245 
    246 #: functions.php:157 
    247 msgid "Customize Header" 
    248 msgstr "ヘッダーのカスタマイズ" 
    249  
    250 #: functions.php:157 
    251 #: functions.php:371 
     246#: functions.php:196 
     247msgid "Header & Footer" 
     248msgstr "ヘッダー&フッター" 
     249 
     250#: functions.php:210 
     251msgid "Close Color Picker" 
     252msgstr "カラーピッカーを閉じる" 
     253 
     254#: functions.php:415 
     255msgid "Header Options saved." 
     256msgstr "ヘッダー設定を保存しました。" 
     257 
     258#: functions.php:416 
     259msgid "Footer Options saved." 
     260msgstr "フッター設定を保存しました。" 
     261 
     262#: functions.php:420 
    252263msgid "Header Image and Color" 
    253264msgstr "ヘッダーの背景と文字の色" 
    254265 
    255 #: functions.php:170 
    256 msgid "Close Color Picker" 
    257 msgstr "カラーピッカーを閉じる" 
    258  
    259 #: functions.php:367 
    260 msgid "Options saved." 
    261 msgstr "設定を保存しました。" 
    262  
    263 #: functions.php:384 
    264 #: functions.php:391 
     266#: functions.php:433 
     267#: functions.php:440 
    265268msgid "Save" 
    266269msgstr "保存" 
    267270 
    268 #: functions.php:385 
     271#: functions.php:434 
    269272msgid "Font Color:" 
    270273msgstr "フォントの色:" 
    271274 
    272 #: functions.php:385 
     275#: functions.php:434 
    273276#, php-format 
    274277msgid "Any CSS color (%s or %s or %s)" 
    275278msgstr "CSS 色指定 (%s 、%s もしくは %s)" 
    276279 
    277 #: functions.php:386 
     280#: functions.php:435 
    278281msgid "Upper Color:" 
    279282msgstr "グラデーション上側の色:" 
    280283 
    281 #: functions.php:386 
    282 #: functions.php:387 
     284#: functions.php:435 
     285#: functions.php:436 
    283286#, php-format 
    284287msgid "HEX only (%s or %s)" 
    285288msgstr "16 進数のみ (%s もしくは %s)" 
    286289 
    287 #: functions.php:387 
     290#: functions.php:436 
    288291msgid "Lower Color:" 
    289292msgstr "グラデーション下側の色:" 
    290293 
    291 #: functions.php:389 
     294#: functions.php:438 
    292295msgid "Toggle Text" 
    293296msgstr "テキスト表示の切替え" 
    294297 
    295 #: functions.php:390 
     298#: functions.php:439 
    296299msgid "Use Defaults" 
    297300msgstr "デフォルト設定に戻す" 
    298301 
    299 #: functions.php:399 
     302#: functions.php:448 
    300303msgid "Font Color" 
    301304msgstr "フォントの色" 
    302305 
    303 #: functions.php:400 
     306#: functions.php:449 
    304307msgid "Upper Color" 
    305308msgstr "グラデーション上側の色" 
    306309 
    307 #: functions.php:401 
     310#: functions.php:450 
    308311msgid "Lower Color" 
    309312msgstr "グラデーション下側の色" 
    310313 
    311 #: functions.php:402 
     314#: functions.php:451 
    312315msgid "Revert" 
    313316msgstr "取り消し" 
    314317 
    315 #: functions.php:403 
     318#: functions.php:452 
    316319msgid "Advanced" 
    317320msgstr "詳細" 
    318321 
    319 #: functions.php:410 
     322#: functions.php:459 
    320323msgid "Update Header &raquo;" 
    321324msgstr "ヘッダーを更新 &raquo;" 
    322325 
    323 #: functions.php:416 
     326#: functions.php:465 
    324327msgid "Font Color (CSS):" 
    325328msgstr "フォントの色 (CSS):" 
    326329 
    327 #: functions.php:417 
     330#: functions.php:466 
    328331msgid "Upper Color (HEX):" 
    329332msgstr "グラデーション上側の色 (16 進数):" 
    330333 
    331 #: functions.php:418 
     334#: functions.php:467 
    332335msgid "Lower Color (HEX):" 
    333336msgstr "グラデーション下側の色 (16 進数):" 
    334337 
    335 #: functions.php:419 
     338#: functions.php:468 
    336339msgid "Select Default Colors" 
    337340msgstr "デフォルト設定に戻す" 
    338341 
    339 #: functions.php:420 
     342#: functions.php:469 
    340343msgid "Toggle Text Display" 
    341344msgstr "テキスト表示の切替え" 
     345 
     346#: functions.php:475 
     347msgid "Footer" 
     348msgstr "フッター" 
     349 
     350#: functions.php:479 
     351msgid "Set number of the sidebar to display in the footer." 
     352msgstr "フッターに表示するサイドバーの数を設定" 
     353 
     354#: functions.php:485 
     355msgid "none" 
     356msgstr "なし" 
     357 
     358#: functions.php:494 
     359msgid "Update Footer &raquo;" 
     360msgstr "フッターを更新 &raquo;" 
     361 
     362#: functions.php:510 
     363msgid "First Footer Widget Area" 
     364msgstr "フッターウィジェットエリア1" 
     365 
     366#: functions.php:511 
     367msgid "The first footer widget area" 
     368msgstr "フッターウィジェットエリア1" 
     369 
     370#: functions.php:514 
     371msgid "Second Footer Widget Area" 
     372msgstr "フッターウィジェットエリア2" 
     373 
     374#: functions.php:515 
     375msgid "The second footer widget area" 
     376msgstr "フッターウィジェットエリア2" 
     377 
     378#: functions.php:518 
     379msgid "Third Footer Widget Area" 
     380msgstr "フッターウィジェットエリア3" 
     381 
     382#: functions.php:519 
     383msgid "The third footer widget area" 
     384msgstr "フッターウィジェットエリア3" 
     385 
     386#: functions.php:522 
     387msgid "Fourth Footer Widget Area" 
     388msgstr "フッターウィジェットエリア4" 
     389 
     390#: functions.php:523 
     391msgid "The fourth footer widget area" 
     392msgstr "フッターウィジェットエリア4" 
     393 
     394#: functions.php:526 
     395msgid "Fifth Footer Widget Area" 
     396msgstr "フッターウィジェットエリア5" 
     397 
     398#: functions.php:527 
     399msgid "The fifth footer widget area" 
     400msgstr "フッターウィジェットエリア5" 
    342401 
    343402#: header.php:9 
     
    368427 
    369428#: image.php:13 
    370 #: single.php:32 
    371429msgid "Read the rest of this entry &raquo;" 
    372430msgstr "この投稿の続きを読む &raquo;" 
     
    416474 
    417475#: image.php:58 
    418 #: single.php:94 
    419476msgid "Sorry, no posts matched your criteria." 
    420477msgstr "該当する投稿は見つかりませんでした。" 
     
    424481#: multi_blog_index.php:33 
    425482#: multi_blog_index.php:35 
    426 #: single.php:24 
    427 #: single.php:26 
    428483#, php-format 
    429484msgid "Permanent Link to %s" 
     
    432487#: index.php:44 
    433488#: multi_blog_index.php:48 
    434 #: single.php:42 
    435489#, php-format 
    436490msgid "Views :%d" 
     
    439493#: index.php:47 
    440494#: multi_blog_index.php:51 
    441 #: single.php:45 
    442495#, php-format 
    443496msgid "Posted in %s" 
     
    446499#: index.php:49 
    447500#: multi_blog_index.php:53 
    448 #: single.php:47 
    449501msgid "Edit" 
    450502msgstr "編集" 
     
    452504#: index.php:50 
    453505#: multi_blog_index.php:54 
    454 #: single.php:48 
    455506msgid "No Comments &#187;" 
    456507msgstr "コメントはまだありません &#187;" 
     
    458509#: index.php:50 
    459510#: multi_blog_index.php:54 
    460 #: single.php:48 
    461511msgid "1 Comment &#187;" 
    462512msgstr "1 件のコメント &#187;" 
     
    464514#: index.php:50 
    465515#: multi_blog_index.php:54 
    466 #: single.php:48 
    467516msgid "% Comments &#187;" 
    468517msgstr "% 件のコメント &#187;" 
     
    470519#: index.php:50 
    471520#: multi_blog_index.php:54 
    472 #: single.php:48 
    473521msgid "Comments Closed" 
    474522msgstr "コメントは受け付けていません。" 
     
    747795msgstr "テーマ選択" 
    748796 
     797#~ msgid "Customize Header" 
     798#~ msgstr "ヘッダーのカスタマイズ" 
    749799#~ msgid "%d queries. %s seconds." 
    750800#~ msgstr "%d 個のクエリと %s 秒を要しました。" 
  • trunk/extras/my_themes/style.css

    r627 r641  
    892892} 
    893893 
     894#ed_toolbar input 
     895{ 
     896        background: #14181B; 
     897        color: white; 
     898        border:2px dashed #323136;  
     899        padding: 0px; 
     900        width: 65px; 
     901} 
     902#ed_toolbar input:hover  
     903{ 
     904        background: #323136; 
     905        color: white; 
     906        border:2px dashed #14181B;  
     907        padding: 0px; 
     908        width: 65px; 
     909} 
     910 
     911#footer-widget-area { 
     912        overflow: hidden; 
     913        margin-top: 5px; 
     914        text-align: left; 
     915} 
     916#footer-widget-area .widget-area-type1 { 
     917        float: left; 
     918        padding-top: 0; 
     919        width:100%; 
     920} 
     921#footer-widget-area .widget-area-type2 { 
     922        float: left; 
     923        padding-top: 0; 
     924        width:49%; 
     925} 
     926#footer-widget-area .widget-area-type3 { 
     927        float: left; 
     928        padding-top: 0; 
     929        width:33%; 
     930} 
     931#footer-widget-area .widget-area-type4 { 
     932        float: left; 
     933        padding-top: 0; 
     934        width:24%; 
     935} 
     936#footer-widget-area .widget-area-type5 { 
     937        float: left; 
     938        padding-top: 0; 
     939        width:19%; 
     940} 
     941 
     942#footer-widget-area ul { 
     943        margin-top: 0; 
     944        list-style-type:none; 
     945        padding-left: 20px; 
     946 
     947} 
     948#footer-widget-area .widget-title { 
     949        margin-top: 0; 
     950        margin-bottom: 2px; 
     951} 
Note: See TracChangeset for help on using the changeset viewer.