Changeset 631 for trunk/xpressme_integration_kit/wp-content/themes
- Timestamp:
- Aug 18, 2010, 2:17:12 PM (14 years ago)
- Location:
- trunk/xpressme_integration_kit/wp-content/themes/xpress_default
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/footer.php
r618 r631 1 1 <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 ?> 3 8 <div id="xpress_footer"> 4 9 <div class="xpress_rss"> -
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/functions.php
r623 r631 1 1 <?php 2 load_theme_textdomain('xpress'); 2 /** Tell WordPress to run xpress_setup() when the 'after_setup_theme' hook is run. */ 3 add_action( 'after_setup_theme', 'xpress_setup' ); 4 if ( ! function_exists( 'xpress_setup' ) ): 5 function 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 } 30 endif; 3 31 4 32 if ( function_exists('register_sidebar') ) … … 10 38 )); 11 39 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 }20 40 21 41 function xpress_head() { … … 150 170 } 151 171 } 172 173 152 174 //print_r($_REQUEST); 153 175 wp_redirect("themes.php?page=functions.php&saved=true"); … … 155 177 } 156 178 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 160 199 161 200 function xpress_theme_page_head() { … … 361 400 border-bottom: 0px; 362 401 } 402 #footer_submit { 403 margin-top: 20px; 404 text-align: center; 405 } 406 #footer_form{ 407 padding-left: 40px; 408 } 409 363 410 </style> 364 411 <?php 365 412 } 366 413 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>'; 414 function 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>'; 369 417 ?> 370 418 <div class='wrap'> … … 424 472 </div> 425 473 </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 »', 'xpress')); ?>" /> 497 </div> 498 </form> 499 </div> 500 426 501 </div> 427 <?php } ?> 502 <?php } 503 504 function 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 546 add_action( 'widgets_init', 'footer_widgets_init' ); 547 548 549 550 ?> -
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/ja.po
r619 r631 8 8 "Project-Id-Version: XPress_Default_themes\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2010-0 6-12 12:35+0900\n"11 "PO-Revision-Date: 2010-0 6-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" 12 12 "Last-Translator: toemon <info@toemon.com>\n" 13 13 "Language-Team: toemon <info@toemon.com>\n" … … 89 89 90 90 #: comments-popup.php:64 91 #: comments.php:9 291 #: comments.php:91 92 92 msgid "Name" 93 93 msgstr "お名前" … … 179 179 msgstr "%s にコメントする" 180 180 181 #: comments.php: 80181 #: comments.php:79 182 182 #, php-format 183 183 msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 184 184 msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 185 185 186 #: comments.php:8 6187 #: comments.php:8 8186 #: comments.php:85 187 #: comments.php:87 188 188 #, php-format 189 189 msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 190 190 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 191 191 192 #: comments.php:8 6193 #: comments.php:8 8192 #: comments.php:85 193 #: comments.php:87 194 194 msgid "Log out of this account" 195 195 msgstr "このアカウントからログアウト" 196 196 197 #: comments.php:8 6198 #: comments.php:8 8197 #: comments.php:85 198 #: comments.php:87 199 199 msgid "Log out »" 200 200 msgstr "ログアウト »" 201 201 202 #: comments.php:9 2203 #: comments.php:9 5202 #: comments.php:91 203 #: comments.php:94 204 204 msgid "(required)" 205 205 msgstr " (必須)" 206 206 207 #: comments.php:9 5207 #: comments.php:94 208 208 msgid "Mail (will not be published)" 209 209 msgstr "メールアドレス (公開されません)" 210 210 211 #: comments.php:9 8211 #: comments.php:97 212 212 msgid "Website" 213 213 msgstr "ウェブサイト" 214 214 215 #: comments.php:10 3215 #: comments.php:102 216 216 #, php-format 217 217 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 218 218 msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 219 219 220 #: comments.php:10 7220 #: comments.php:106 221 221 msgid "Submit Comment" 222 222 msgstr "コメント送信" 223 223 224 #: footer.php: 5224 #: footer.php:10 225 225 #, php-format 226 226 msgid "%1$s and %2$s." 227 227 msgstr "%1$s と %2$s" 228 228 229 #: footer.php: 5229 #: footer.php:10 230 230 msgid "Entries (RSS)" 231 231 msgstr "投稿 (RSS)" 232 232 233 #: footer.php: 5233 #: footer.php:10 234 234 msgid "Comments (RSS)" 235 235 msgstr "コメント (RSS)" 236 236 237 #: footer.php: 7237 #: footer.php:12 238 238 #, php-format 239 239 msgid "%.3f sec." 240 240 msgstr "%.3f 秒" 241 241 242 #: functions.php: 15242 #: functions.php:25 243 243 msgid "Primary Navigation" 244 244 msgstr "メインナビゲージョン" 245 245 246 #: functions.php:157 247 msgid "Customize Header" 248 msgstr "ヘッダーのカスタマイズ" 249 250 #: functions.php:157 251 #: functions.php:371 246 #: functions.php:196 247 msgid "Header & Footer" 248 msgstr "ヘッダー&フッター" 249 250 #: functions.php:210 251 msgid "Close Color Picker" 252 msgstr "カラーピッカーを閉じる" 253 254 #: functions.php:415 255 msgid "Header Options saved." 256 msgstr "ヘッダー設定を保存しました。" 257 258 #: functions.php:416 259 msgid "Footer Options saved." 260 msgstr "フッター設定を保存しました。" 261 262 #: functions.php:420 252 263 msgid "Header Image and Color" 253 264 msgstr "ヘッダーの背景と文字の色" 254 265 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 265 268 msgid "Save" 266 269 msgstr "保存" 267 270 268 #: functions.php: 385271 #: functions.php:434 269 272 msgid "Font Color:" 270 273 msgstr "フォントの色:" 271 274 272 #: functions.php: 385275 #: functions.php:434 273 276 #, php-format 274 277 msgid "Any CSS color (%s or %s or %s)" 275 278 msgstr "CSS 色指定 (%s 、%s もしくは %s)" 276 279 277 #: functions.php: 386280 #: functions.php:435 278 281 msgid "Upper Color:" 279 282 msgstr "グラデーション上側の色:" 280 283 281 #: functions.php: 386282 #: functions.php: 387284 #: functions.php:435 285 #: functions.php:436 283 286 #, php-format 284 287 msgid "HEX only (%s or %s)" 285 288 msgstr "16 進数のみ (%s もしくは %s)" 286 289 287 #: functions.php: 387290 #: functions.php:436 288 291 msgid "Lower Color:" 289 292 msgstr "グラデーション下側の色:" 290 293 291 #: functions.php: 389294 #: functions.php:438 292 295 msgid "Toggle Text" 293 296 msgstr "テキスト表示の切替え" 294 297 295 #: functions.php: 390298 #: functions.php:439 296 299 msgid "Use Defaults" 297 300 msgstr "デフォルト設定に戻す" 298 301 299 #: functions.php: 399302 #: functions.php:448 300 303 msgid "Font Color" 301 304 msgstr "フォントの色" 302 305 303 #: functions.php:4 00306 #: functions.php:449 304 307 msgid "Upper Color" 305 308 msgstr "グラデーション上側の色" 306 309 307 #: functions.php:4 01310 #: functions.php:450 308 311 msgid "Lower Color" 309 312 msgstr "グラデーション下側の色" 310 313 311 #: functions.php:4 02314 #: functions.php:451 312 315 msgid "Revert" 313 316 msgstr "取り消し" 314 317 315 #: functions.php:4 03318 #: functions.php:452 316 319 msgid "Advanced" 317 320 msgstr "詳細" 318 321 319 #: functions.php:4 10322 #: functions.php:459 320 323 msgid "Update Header »" 321 324 msgstr "ヘッダーを更新 »" 322 325 323 #: functions.php:4 16326 #: functions.php:465 324 327 msgid "Font Color (CSS):" 325 328 msgstr "フォントの色 (CSS):" 326 329 327 #: functions.php:4 17330 #: functions.php:466 328 331 msgid "Upper Color (HEX):" 329 332 msgstr "グラデーション上側の色 (16 進数):" 330 333 331 #: functions.php:4 18334 #: functions.php:467 332 335 msgid "Lower Color (HEX):" 333 336 msgstr "グラデーション下側の色 (16 進数):" 334 337 335 #: functions.php:4 19338 #: functions.php:468 336 339 msgid "Select Default Colors" 337 340 msgstr "デフォルト設定に戻す" 338 341 339 #: functions.php:4 20342 #: functions.php:469 340 343 msgid "Toggle Text Display" 341 344 msgstr "テキスト表示の切替え" 345 346 #: functions.php:475 347 msgid "Footer" 348 msgstr "フッター" 349 350 #: functions.php:479 351 msgid "Set number of the sidebar to display in the footer." 352 msgstr "フッターに表示するサイドバーの数を設定" 353 354 #: functions.php:485 355 msgid "none" 356 msgstr "なし" 357 358 #: functions.php:494 359 msgid "Update Footer »" 360 msgstr "フッターを更新 »" 361 362 #: functions.php:510 363 msgid "First Footer Widget Area" 364 msgstr "フッターウィジェットエリア1" 365 366 #: functions.php:511 367 msgid "The first footer widget area" 368 msgstr "フッターウィジェットエリア1" 369 370 #: functions.php:514 371 msgid "Second Footer Widget Area" 372 msgstr "フッターウィジェットエリア2" 373 374 #: functions.php:515 375 msgid "The second footer widget area" 376 msgstr "フッターウィジェットエリア2" 377 378 #: functions.php:518 379 msgid "Third Footer Widget Area" 380 msgstr "フッターウィジェットエリア3" 381 382 #: functions.php:519 383 msgid "The third footer widget area" 384 msgstr "フッターウィジェットエリア3" 385 386 #: functions.php:522 387 msgid "Fourth Footer Widget Area" 388 msgstr "フッターウィジェットエリア4" 389 390 #: functions.php:523 391 msgid "The fourth footer widget area" 392 msgstr "フッターウィジェットエリア4" 393 394 #: functions.php:526 395 msgid "Fifth Footer Widget Area" 396 msgstr "フッターウィジェットエリア5" 397 398 #: functions.php:527 399 msgid "The fifth footer widget area" 400 msgstr "フッターウィジェットエリア5" 342 401 343 402 #: header.php:9 … … 368 427 369 428 #: image.php:13 370 #: single.php:32371 429 msgid "Read the rest of this entry »" 372 430 msgstr "この投稿の続きを読む »" … … 416 474 417 475 #: image.php:58 418 #: single.php:94419 476 msgid "Sorry, no posts matched your criteria." 420 477 msgstr "該当する投稿は見つかりませんでした。" … … 424 481 #: multi_blog_index.php:33 425 482 #: multi_blog_index.php:35 426 #: single.php:24427 #: single.php:26428 483 #, php-format 429 484 msgid "Permanent Link to %s" … … 432 487 #: index.php:44 433 488 #: multi_blog_index.php:48 434 #: single.php:42435 489 #, php-format 436 490 msgid "Views :%d" … … 439 493 #: index.php:47 440 494 #: multi_blog_index.php:51 441 #: single.php:45442 495 #, php-format 443 496 msgid "Posted in %s" … … 446 499 #: index.php:49 447 500 #: multi_blog_index.php:53 448 #: single.php:47449 501 msgid "Edit" 450 502 msgstr "編集" … … 452 504 #: index.php:50 453 505 #: multi_blog_index.php:54 454 #: single.php:48455 506 msgid "No Comments »" 456 507 msgstr "コメントはまだありません »" … … 458 509 #: index.php:50 459 510 #: multi_blog_index.php:54 460 #: single.php:48461 511 msgid "1 Comment »" 462 512 msgstr "1 件のコメント »" … … 464 514 #: index.php:50 465 515 #: multi_blog_index.php:54 466 #: single.php:48467 516 msgid "% Comments »" 468 517 msgstr "% 件のコメント »" … … 470 519 #: index.php:50 471 520 #: multi_blog_index.php:54 472 #: single.php:48473 521 msgid "Comments Closed" 474 522 msgstr "コメントは受け付けていません。" … … 747 795 msgstr "テーマ選択" 748 796 797 #~ msgid "Customize Header" 798 #~ msgstr "ヘッダーのカスタマイズ" 749 799 #~ msgid "%d queries. %s seconds." 750 800 #~ msgstr "%d 個のクエリと %s 秒を要しました。" -
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/ja_EUC.po
r619 r631 9 9 "Report-Msgid-Bugs-To: \n" 10 10 "POT-Creation-Date: 2010-06-12 12:47+0900\n" 11 "PO-Revision-Date: 2010-0 6-12 12:47+0900\n"11 "PO-Revision-Date: 2010-08-18 14:22+0900\n" 12 12 "Last-Translator: toemon <info@toemon.com>\n" 13 13 "Language-Team: toemon <info@toemon.com>\n" … … 89 89 90 90 #: comments-popup.php:64 91 #: comments.php:9 291 #: comments.php:91 92 92 msgid "Name" 93 93 msgstr "¤ªÌ¾Á°" … … 179 179 msgstr "%s ¤Ë¥³¥á¥ó¥È¤¹¤ë" 180 180 181 #: comments.php: 80181 #: comments.php:79 182 182 #, php-format 183 183 msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 184 184 msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£" 185 185 186 #: comments.php:8 6187 #: comments.php:8 8186 #: comments.php:85 187 #: comments.php:87 188 188 #, php-format 189 189 msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 190 190 msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£" 191 191 192 #: comments.php:8 6193 #: comments.php:8 8192 #: comments.php:85 193 #: comments.php:87 194 194 msgid "Log out of this account" 195 195 msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È" 196 196 197 #: comments.php:8 6198 #: comments.php:8 8197 #: comments.php:85 198 #: comments.php:87 199 199 msgid "Log out »" 200 200 msgstr "¥í¥°¥¢¥¦¥È »" 201 201 202 #: comments.php:9 2203 #: comments.php:9 5202 #: comments.php:91 203 #: comments.php:94 204 204 msgid "(required)" 205 205 msgstr " (ɬ¿Ü)" 206 206 207 #: comments.php:9 5207 #: comments.php:94 208 208 msgid "Mail (will not be published)" 209 209 msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)" 210 210 211 #: comments.php:9 8211 #: comments.php:97 212 212 msgid "Website" 213 213 msgstr "¥¦¥§¥Ö¥µ¥¤¥È" 214 214 215 #: comments.php:10 3215 #: comments.php:102 216 216 #, php-format 217 217 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 218 218 msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍѤǤ¤Þ¤¹: <code>%s</code>" 219 219 220 #: comments.php:10 7220 #: comments.php:106 221 221 msgid "Submit Comment" 222 222 msgstr "¥³¥á¥ó¥ÈÁ÷¿®" 223 223 224 #: footer.php: 5224 #: footer.php:10 225 225 #, php-format 226 226 msgid "%1$s and %2$s." 227 227 msgstr "%1$s ¤È %2$s" 228 228 229 #: footer.php: 5229 #: footer.php:10 230 230 msgid "Entries (RSS)" 231 231 msgstr "Åê¹Æ (RSS)" 232 232 233 #: footer.php: 5233 #: footer.php:10 234 234 msgid "Comments (RSS)" 235 235 msgstr "¥³¥á¥ó¥È (RSS)" 236 236 237 #: footer.php: 7237 #: footer.php:12 238 238 #, php-format 239 239 msgid "%.3f sec." 240 240 msgstr "%.3f ÉÃ" 241 241 242 #: functions.php: 15242 #: functions.php:25 243 243 msgid "Primary Navigation" 244 244 msgstr "¥á¥¤¥ó¥Ê¥Ó¥²¡¼¥¸¥ç¥ó" 245 245 246 #: functions.php:157 247 msgid "Customize Header" 248 msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º" 249 250 #: functions.php:157 251 #: functions.php:371 246 #: functions.php:196 247 msgid "Header & Footer" 248 msgstr "¥Ø¥Ã¥À¡¼&¥Õ¥Ã¥¿¡¼" 249 250 #: functions.php:210 251 msgid "Close Color Picker" 252 msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊĤ¸¤ë" 253 254 #: functions.php:415 255 msgid "Header Options saved." 256 msgstr "¥Ø¥Ã¥À¡¼ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿¡£" 257 258 #: functions.php:416 259 msgid "Footer Options saved." 260 msgstr "¥Õ¥Ã¥¿¡¼ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿¡£" 261 262 #: functions.php:420 252 263 msgid "Header Image and Color" 253 264 msgstr "¥Ø¥Ã¥À¡¼¤ÎÇطʤÈʸ»ú¤Î¿§" 254 265 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 265 268 msgid "Save" 266 269 msgstr "Êݸ" 267 270 268 #: functions.php: 385271 #: functions.php:434 269 272 msgid "Font Color:" 270 273 msgstr "¥Õ¥©¥ó¥È¤Î¿§:" 271 274 272 #: functions.php: 385275 #: functions.php:434 273 276 #, php-format 274 277 msgid "Any CSS color (%s or %s or %s)" 275 278 msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)" 276 279 277 #: functions.php: 386280 #: functions.php:435 278 281 msgid "Upper Color:" 279 282 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§:" 280 283 281 #: functions.php: 386282 #: functions.php: 387284 #: functions.php:435 285 #: functions.php:436 283 286 #, php-format 284 287 msgid "HEX only (%s or %s)" 285 288 msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)" 286 289 287 #: functions.php: 387290 #: functions.php:436 288 291 msgid "Lower Color:" 289 292 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:" 290 293 291 #: functions.php: 389294 #: functions.php:438 292 295 msgid "Toggle Text" 293 296 msgstr "¥Æ¥¥¹¥Èɽ¼¨¤ÎÀÚÂؤ¨" 294 297 295 #: functions.php: 390298 #: functions.php:439 296 299 msgid "Use Defaults" 297 300 msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌ᤹" 298 301 299 #: functions.php: 399302 #: functions.php:448 300 303 msgid "Font Color" 301 304 msgstr "¥Õ¥©¥ó¥È¤Î¿§" 302 305 303 #: functions.php:4 00306 #: functions.php:449 304 307 msgid "Upper Color" 305 308 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§" 306 309 307 #: functions.php:4 01310 #: functions.php:450 308 311 msgid "Lower Color" 309 312 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§" 310 313 311 #: functions.php:4 02314 #: functions.php:451 312 315 msgid "Revert" 313 316 msgstr "¼è¤ê¾Ã¤·" 314 317 315 #: functions.php:4 03318 #: functions.php:452 316 319 msgid "Advanced" 317 320 msgstr "¾ÜºÙ" 318 321 319 #: functions.php:4 10322 #: functions.php:459 320 323 msgid "Update Header »" 321 324 msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· »" 322 325 323 #: functions.php:4 16326 #: functions.php:465 324 327 msgid "Font Color (CSS):" 325 328 msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):" 326 329 327 #: functions.php:4 17330 #: functions.php:466 328 331 msgid "Upper Color (HEX):" 329 332 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾å¦¤Î¿§ (16 ¿Ê¿ô):" 330 333 331 #: functions.php:4 18334 #: functions.php:467 332 335 msgid "Lower Color (HEX):" 333 336 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):" 334 337 335 #: functions.php:4 19338 #: functions.php:468 336 339 msgid "Select Default Colors" 337 340 msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌ᤹" 338 341 339 #: functions.php:4 20342 #: functions.php:469 340 343 msgid "Toggle Text Display" 341 344 msgstr "¥Æ¥¥¹¥Èɽ¼¨¤ÎÀÚÂؤ¨" 345 346 #: functions.php:475 347 msgid "Footer" 348 msgstr "¥Õ¥Ã¥¿¡¼" 349 350 #: functions.php:479 351 msgid "Set number of the sidebar to display in the footer." 352 msgstr "¥Õ¥Ã¥¿¡¼¤Ëɽ¼¨¤¹¤ë¥µ¥¤¥É¥Ð¡¼¤Î¿ô¤òÀßÄê" 353 354 #: functions.php:485 355 msgid "none" 356 msgstr "¤Ê¤·" 357 358 #: functions.php:494 359 msgid "Update Footer »" 360 msgstr "¥Õ¥Ã¥¿¡¼¤ò¹¹¿· »" 361 362 #: functions.php:510 363 msgid "First Footer Widget Area" 364 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±" 365 366 #: functions.php:511 367 msgid "The first footer widget area" 368 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±" 369 370 #: functions.php:514 371 msgid "Second Footer Widget Area" 372 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²" 373 374 #: functions.php:515 375 msgid "The second footer widget area" 376 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²" 377 378 #: functions.php:518 379 msgid "Third Footer Widget Area" 380 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³" 381 382 #: functions.php:519 383 msgid "The third footer widget area" 384 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³" 385 386 #: functions.php:522 387 msgid "Fourth Footer Widget Area" 388 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´" 389 390 #: functions.php:523 391 msgid "The fourth footer widget area" 392 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´" 393 394 #: functions.php:526 395 msgid "Fifth Footer Widget Area" 396 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ" 397 398 #: functions.php:527 399 msgid "The fifth footer widget area" 400 msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ" 342 401 343 402 #: header.php:9 … … 368 427 369 428 #: image.php:13 370 #: single.php:32371 429 msgid "Read the rest of this entry »" 372 430 msgstr "¤³¤ÎÅê¹Æ¤Î³¤¤òÆÉ¤à »" … … 416 474 417 475 #: image.php:58 418 #: single.php:94419 476 msgid "Sorry, no posts matched your criteria." 420 477 msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£" … … 424 481 #: multi_blog_index.php:33 425 482 #: multi_blog_index.php:35 426 #: single.php:24427 #: single.php:26428 483 #, php-format 429 484 msgid "Permanent Link to %s" … … 432 487 #: index.php:44 433 488 #: multi_blog_index.php:48 434 #: single.php:42435 489 #, php-format 436 490 msgid "Views :%d" … … 439 493 #: index.php:47 440 494 #: multi_blog_index.php:51 441 #: single.php:45442 495 #, php-format 443 496 msgid "Posted in %s" … … 446 499 #: index.php:49 447 500 #: multi_blog_index.php:53 448 #: single.php:47449 501 msgid "Edit" 450 502 msgstr "ÊÔ½¸" … … 452 504 #: index.php:50 453 505 #: multi_blog_index.php:54 454 #: single.php:48455 506 msgid "No Comments »" 456 507 msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó »" … … 458 509 #: index.php:50 459 510 #: multi_blog_index.php:54 460 #: single.php:48461 511 msgid "1 Comment »" 462 512 msgstr "1 ·ï¤Î¥³¥á¥ó¥È »" … … 464 514 #: index.php:50 465 515 #: multi_blog_index.php:54 466 #: single.php:48467 516 msgid "% Comments »" 468 517 msgstr "% ·ï¤Î¥³¥á¥ó¥È »" … … 470 519 #: index.php:50 471 520 #: multi_blog_index.php:54 472 #: single.php:48473 521 msgid "Comments Closed" 474 522 msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£" … … 747 795 msgstr "¥Æ¡¼¥ÞÁªÂò" 748 796 797 #~ msgid "Customize Header" 798 #~ msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º" 749 799 #~ msgid "%d queries. %s seconds." 750 800 #~ msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %s ÉäòÍפ·¤Þ¤·¤¿¡£" -
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/ja_UTF.po
r619 r631 9 9 "Report-Msgid-Bugs-To: \n" 10 10 "POT-Creation-Date: 2010-06-12 12:41+0900\n" 11 "PO-Revision-Date: 2010-0 6-12 12:41+0900\n"11 "PO-Revision-Date: 2010-08-18 14:22+0900\n" 12 12 "Last-Translator: toemon <info@toemon.com>\n" 13 13 "Language-Team: toemon <info@toemon.com>\n" … … 89 89 90 90 #: comments-popup.php:64 91 #: comments.php:9 291 #: comments.php:91 92 92 msgid "Name" 93 93 msgstr "お名前" … … 179 179 msgstr "%s にコメントする" 180 180 181 #: comments.php: 80181 #: comments.php:79 182 182 #, php-format 183 183 msgid "You must be <a href=\"%s\">logged in</a> to post a comment." 184 184 msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。" 185 185 186 #: comments.php:8 6187 #: comments.php:8 8186 #: comments.php:85 187 #: comments.php:87 188 188 #, php-format 189 189 msgid "Logged in as <a href=\"%1$s\">%2$s</a>." 190 190 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。" 191 191 192 #: comments.php:8 6193 #: comments.php:8 8192 #: comments.php:85 193 #: comments.php:87 194 194 msgid "Log out of this account" 195 195 msgstr "このアカウントからログアウト" 196 196 197 #: comments.php:8 6198 #: comments.php:8 8197 #: comments.php:85 198 #: comments.php:87 199 199 msgid "Log out »" 200 200 msgstr "ログアウト »" 201 201 202 #: comments.php:9 2203 #: comments.php:9 5202 #: comments.php:91 203 #: comments.php:94 204 204 msgid "(required)" 205 205 msgstr " (必須)" 206 206 207 #: comments.php:9 5207 #: comments.php:94 208 208 msgid "Mail (will not be published)" 209 209 msgstr "メールアドレス (公開されません)" 210 210 211 #: comments.php:9 8211 #: comments.php:97 212 212 msgid "Website" 213 213 msgstr "ウェブサイト" 214 214 215 #: comments.php:10 3215 #: comments.php:102 216 216 #, php-format 217 217 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>" 218 218 msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>" 219 219 220 #: comments.php:10 7220 #: comments.php:106 221 221 msgid "Submit Comment" 222 222 msgstr "コメント送信" 223 223 224 #: footer.php: 5224 #: footer.php:10 225 225 #, php-format 226 226 msgid "%1$s and %2$s." 227 227 msgstr "%1$s と %2$s" 228 228 229 #: footer.php: 5229 #: footer.php:10 230 230 msgid "Entries (RSS)" 231 231 msgstr "投稿 (RSS)" 232 232 233 #: footer.php: 5233 #: footer.php:10 234 234 msgid "Comments (RSS)" 235 235 msgstr "コメント (RSS)" 236 236 237 #: footer.php: 7237 #: footer.php:12 238 238 #, php-format 239 239 msgid "%.3f sec." 240 240 msgstr "%.3f 秒" 241 241 242 #: functions.php: 15242 #: functions.php:25 243 243 msgid "Primary Navigation" 244 244 msgstr "メインナビゲージョン" 245 245 246 #: functions.php:157 247 msgid "Customize Header" 248 msgstr "ヘッダーのカスタマイズ" 249 250 #: functions.php:157 251 #: functions.php:371 246 #: functions.php:196 247 msgid "Header & Footer" 248 msgstr "ヘッダー&フッター" 249 250 #: functions.php:210 251 msgid "Close Color Picker" 252 msgstr "カラーピッカーを閉じる" 253 254 #: functions.php:415 255 msgid "Header Options saved." 256 msgstr "ヘッダー設定を保存しました。" 257 258 #: functions.php:416 259 msgid "Footer Options saved." 260 msgstr "フッター設定を保存しました。" 261 262 #: functions.php:420 252 263 msgid "Header Image and Color" 253 264 msgstr "ヘッダーの背景と文字の色" 254 265 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 265 268 msgid "Save" 266 269 msgstr "保存" 267 270 268 #: functions.php: 385271 #: functions.php:434 269 272 msgid "Font Color:" 270 273 msgstr "フォントの色:" 271 274 272 #: functions.php: 385275 #: functions.php:434 273 276 #, php-format 274 277 msgid "Any CSS color (%s or %s or %s)" 275 278 msgstr "CSS 色指定 (%s 、%s もしくは %s)" 276 279 277 #: functions.php: 386280 #: functions.php:435 278 281 msgid "Upper Color:" 279 282 msgstr "グラデーション上側の色:" 280 283 281 #: functions.php: 386282 #: functions.php: 387284 #: functions.php:435 285 #: functions.php:436 283 286 #, php-format 284 287 msgid "HEX only (%s or %s)" 285 288 msgstr "16 進数のみ (%s もしくは %s)" 286 289 287 #: functions.php: 387290 #: functions.php:436 288 291 msgid "Lower Color:" 289 292 msgstr "グラデーション下側の色:" 290 293 291 #: functions.php: 389294 #: functions.php:438 292 295 msgid "Toggle Text" 293 296 msgstr "テキスト表示の切替え" 294 297 295 #: functions.php: 390298 #: functions.php:439 296 299 msgid "Use Defaults" 297 300 msgstr "デフォルト設定に戻す" 298 301 299 #: functions.php: 399302 #: functions.php:448 300 303 msgid "Font Color" 301 304 msgstr "フォントの色" 302 305 303 #: functions.php:4 00306 #: functions.php:449 304 307 msgid "Upper Color" 305 308 msgstr "グラデーション上側の色" 306 309 307 #: functions.php:4 01310 #: functions.php:450 308 311 msgid "Lower Color" 309 312 msgstr "グラデーション下側の色" 310 313 311 #: functions.php:4 02314 #: functions.php:451 312 315 msgid "Revert" 313 316 msgstr "取り消し" 314 317 315 #: functions.php:4 03318 #: functions.php:452 316 319 msgid "Advanced" 317 320 msgstr "詳細" 318 321 319 #: functions.php:4 10322 #: functions.php:459 320 323 msgid "Update Header »" 321 324 msgstr "ヘッダーを更新 »" 322 325 323 #: functions.php:4 16326 #: functions.php:465 324 327 msgid "Font Color (CSS):" 325 328 msgstr "フォントの色 (CSS):" 326 329 327 #: functions.php:4 17330 #: functions.php:466 328 331 msgid "Upper Color (HEX):" 329 332 msgstr "グラデーション上側の色 (16 進数):" 330 333 331 #: functions.php:4 18334 #: functions.php:467 332 335 msgid "Lower Color (HEX):" 333 336 msgstr "グラデーション下側の色 (16 進数):" 334 337 335 #: functions.php:4 19338 #: functions.php:468 336 339 msgid "Select Default Colors" 337 340 msgstr "デフォルト設定に戻す" 338 341 339 #: functions.php:4 20342 #: functions.php:469 340 343 msgid "Toggle Text Display" 341 344 msgstr "テキスト表示の切替え" 345 346 #: functions.php:475 347 msgid "Footer" 348 msgstr "フッター" 349 350 #: functions.php:479 351 msgid "Set number of the sidebar to display in the footer." 352 msgstr "フッターに表示するサイドバーの数を設定" 353 354 #: functions.php:485 355 msgid "none" 356 msgstr "なし" 357 358 #: functions.php:494 359 msgid "Update Footer »" 360 msgstr "フッターを更新 »" 361 362 #: functions.php:510 363 msgid "First Footer Widget Area" 364 msgstr "フッターウィジェットエリア1" 365 366 #: functions.php:511 367 msgid "The first footer widget area" 368 msgstr "フッターウィジェットエリア1" 369 370 #: functions.php:514 371 msgid "Second Footer Widget Area" 372 msgstr "フッターウィジェットエリア2" 373 374 #: functions.php:515 375 msgid "The second footer widget area" 376 msgstr "フッターウィジェットエリア2" 377 378 #: functions.php:518 379 msgid "Third Footer Widget Area" 380 msgstr "フッターウィジェットエリア3" 381 382 #: functions.php:519 383 msgid "The third footer widget area" 384 msgstr "フッターウィジェットエリア3" 385 386 #: functions.php:522 387 msgid "Fourth Footer Widget Area" 388 msgstr "フッターウィジェットエリア4" 389 390 #: functions.php:523 391 msgid "The fourth footer widget area" 392 msgstr "フッターウィジェットエリア4" 393 394 #: functions.php:526 395 msgid "Fifth Footer Widget Area" 396 msgstr "フッターウィジェットエリア5" 397 398 #: functions.php:527 399 msgid "The fifth footer widget area" 400 msgstr "フッターウィジェットエリア5" 342 401 343 402 #: header.php:9 … … 368 427 369 428 #: image.php:13 370 #: single.php:32371 429 msgid "Read the rest of this entry »" 372 430 msgstr "この投稿の続きを読む »" … … 416 474 417 475 #: image.php:58 418 #: single.php:94419 476 msgid "Sorry, no posts matched your criteria." 420 477 msgstr "該当する投稿は見つかりませんでした。" … … 424 481 #: multi_blog_index.php:33 425 482 #: multi_blog_index.php:35 426 #: single.php:24427 #: single.php:26428 483 #, php-format 429 484 msgid "Permanent Link to %s" … … 432 487 #: index.php:44 433 488 #: multi_blog_index.php:48 434 #: single.php:42435 489 #, php-format 436 490 msgid "Views :%d" … … 439 493 #: index.php:47 440 494 #: multi_blog_index.php:51 441 #: single.php:45442 495 #, php-format 443 496 msgid "Posted in %s" … … 446 499 #: index.php:49 447 500 #: multi_blog_index.php:53 448 #: single.php:47449 501 msgid "Edit" 450 502 msgstr "編集" … … 452 504 #: index.php:50 453 505 #: multi_blog_index.php:54 454 #: single.php:48455 506 msgid "No Comments »" 456 507 msgstr "コメントはまだありません »" … … 458 509 #: index.php:50 459 510 #: multi_blog_index.php:54 460 #: single.php:48461 511 msgid "1 Comment »" 462 512 msgstr "1 件のコメント »" … … 464 514 #: index.php:50 465 515 #: multi_blog_index.php:54 466 #: single.php:48467 516 msgid "% Comments »" 468 517 msgstr "% 件のコメント »" … … 470 519 #: index.php:50 471 520 #: multi_blog_index.php:54 472 #: single.php:48473 521 msgid "Comments Closed" 474 522 msgstr "コメントは受け付けていません。" … … 747 795 msgstr "テーマ選択" 748 796 797 #~ msgid "Customize Header" 798 #~ msgstr "ヘッダーのカスタマイズ" 749 799 #~ msgid "%d queries. %s seconds." 750 800 #~ msgstr "%d 個のクエリと %s 秒を要しました。" -
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/style.css
r627 r631 892 892 } 893 893 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.