Index: trunk/extras/my_themes/footer.php
===================================================================
--- trunk/extras/my_themes/footer.php	(revision 629)
+++ trunk/extras/my_themes/footer.php	(revision 641)
@@ -1,4 +1,9 @@
 <hr class="xpress-border"></hr>
-
+<?php
+	/* A sidebar in the footer? Yep. You can can customize
+	 * your footer with four columns of widgets.
+	 */
+	get_sidebar( 'footer' );
+?>
 <div id="xpress_footer">
 	<div class="xpress_rss">
Index: trunk/extras/my_themes/functions.php
===================================================================
--- trunk/extras/my_themes/functions.php	(revision 629)
+++ trunk/extras/my_themes/functions.php	(revision 641)
@@ -1,4 +1,32 @@
 <?php
-load_theme_textdomain('xpress');
+/** Tell WordPress to run xpress_setup() when the 'after_setup_theme' hook is run. */
+add_action( 'after_setup_theme', 'xpress_setup' );
+if ( ! function_exists( 'xpress_setup' ) ):
+function xpress_setup() {
+	// This theme uses post thumbnails
+	add_theme_support( 'post-thumbnails' );
+	// Add default posts and comments RSS feed links to head
+	add_theme_support( 'automatic-feed-links' );
+
+	// Make theme available for translation
+	// Translations can be filed in the /languages/ directory
+	load_theme_textdomain( 'xpress', TEMPLATEPATH . '/languages' );
+
+	$locale = get_locale();
+	$locale_file = TEMPLATEPATH . "/languages/$locale.php";
+	if ( is_readable( $locale_file ) )
+		require_once( $locale_file );
+
+	// This theme uses wp_nav_menu()
+	if ( function_exists('add_theme_support') )add_theme_support( 'nav-menus' );
+	// This theme uses wp_nav_menu() in one location.
+	if ( function_exists('register_nav_menus') ){
+			register_nav_menus( array(
+			'primary' => __('Primary Navigation','xpress'),
+		) );
+	}
+	
+}	
+endif;
 	
 if ( function_exists('register_sidebar') )
@@ -10,12 +38,4 @@
     ));
 
-// This theme uses wp_nav_menu()
-if ( function_exists('add_theme_support') )add_theme_support( 'nav-menus' );
-// This theme uses wp_nav_menu() in one location.
-if ( function_exists('register_nav_menus') ){
-		register_nav_menus( array(
-		'primary' => __('Primary Navigation','xpress'),
-	) );
-}
 
 function xpress_head() {
@@ -150,4 +170,6 @@
 				}
 			}
+			
+
 			//print_r($_REQUEST);
 			wp_redirect("themes.php?page=functions.php&saved=true");
@@ -155,7 +177,24 @@
 		}
 		add_action('admin_head', 'xpress_theme_page_head');
-	}
-	add_theme_page(__('Customize Header', 'xpress'), __('Header Image and Color', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_page');
-}
+		
+		if ( isset( $_REQUEST['action'] ) && 'update_footer' == $_REQUEST['action'] ) {
+			check_admin_referer('xpress-footer');
+			if ( isset($_REQUEST['xpress_footer_sidebars_count']) ) {
+				check_admin_referer('xpress-footer');
+				if ( '' == $_REQUEST['xpress_footer_sidebars_count'] || '0' == $_REQUEST['xpress_footer_sidebars_count'] ){
+					delete_option('xpress_footer_sidebars_count');
+				} else {
+					update_option('xpress_footer_sidebars_count',  $_REQUEST['xpress_footer_sidebars_count']);
+				}
+			}
+
+			//print_r($_REQUEST);
+			wp_redirect("themes.php?page=functions.php&footer_saved=true");
+			die;
+		}
+	}
+	add_theme_page(__('Header & Footer', 'xpress'), __('Header & Footer', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_header_page');
+}
+
 
 function xpress_theme_page_head() {
@@ -361,10 +400,19 @@
 		border-bottom: 0px;
 	}
+	#footer_submit {
+		margin-top: 20px;
+		text-align: center;
+	}
+	#footer_form{
+		padding-left: 40px;
+	}
+
 </style>
 <?php
 }
 
-function xpress_theme_page() {
-	if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Options saved.', 'xpress').'</strong></p></div>';
+function xpress_theme_header_page() {
+	if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Header Options saved.', 'xpress').'</strong></p></div>';
+	if ( isset( $_REQUEST['footer_saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Footer Options saved.', 'xpress').'</strong></p></div>';
 ?>
 <div class='wrap'>
@@ -424,4 +472,79 @@
 		</div>
 	</div>
+	<div id="xpress-footer">
+	<h2><?php _e('Footer', 'xpress'); ?></h2>
+		<form id="footer_setting" style="display:inline;" method="post" action="">
+			<div id="footer_form">
+				<?php wp_nonce_field('xpress-footer'); ?>
+				<?php
+				if ( function_exists('register_sidebar') ){
+					echo __('Set number of the sidebar to display in the footer.','xpress');
+					echo '<select name="xpress_footer_sidebars_count">'."\n";
+						$side_bar_num = get_option('xpress_footer_sidebars_count');
+						if (empty($side_bar_num)) $side_bar_num = 0;
+						for($i=0;$i<=5;$i++){
+							if ($i== 0) $sel_name = __('none','xpress'); else $sel_name = $i;
+							if ($i == $side_bar_num) $selected = ' selected '; else $selected = '';
+							echo "\t\t\t\t<option value=\"{$i}\" label=\"{$i}\" {$selected}>{$sel_name}</option>\n";
+						}
+					echo "</select>\n";
+				}
+				?>
+				<input type="hidden" name="action" value="update_footer" />
+			</div>
+			<div id="footer_submit">
+			<input type="submit" name="footer_submit" id="footer_submit" value="<?php echo attribute_escape(__('Update Footer &raquo;', 'xpress')); ?>" />
+			</div>
+		</form>
+	</div>
+
 </div>
-<?php } ?>
+<?php } 
+
+function footer_widgets_init() {
+	if (!function_exists('register_sidebar') ) return;
+
+	$side_bar_num = get_option('xpress_footer_sidebars_count');
+	if (empty($side_bar_num)) return;
+	for($i=1;$i <= $side_bar_num;$i++){
+		switch($i){
+			case 1:
+				$name = __( 'First Footer Widget Area', 'kubrick' );
+				$description = __( 'The first footer widget area', 'kubrick' );
+				break;
+			case 2:
+				$name = __( 'Second Footer Widget Area', 'kubrick' );
+				$description = __( 'The second footer widget area', 'kubrick' );
+				break;
+			case 3:
+				$name = __( 'Third Footer Widget Area', 'kubrick' );
+				$description = __( 'The third footer widget area', 'kubrick' );
+				break;
+			case 4:
+				$name = __( 'Fourth Footer Widget Area', 'kubrick' );
+				$description = __( 'The fourth footer widget area', 'kubrick' );
+				break;
+			case 5:
+				$name = __( 'Fifth Footer Widget Area', 'kubrick' );
+				$description = __( 'The fifth footer widget area', 'kubrick' );
+				break;
+				
+		}
+
+		register_sidebar( array(
+			'name' => $name,
+			'id' => 'footer-widget-area-'.$i,
+			'description' => $description,
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget' => '</li>',
+			'before_title' => '<h3 class="widget-title">',
+			'after_title' => '</h3>',
+		) );
+	}
+}
+
+add_action( 'widgets_init', 'footer_widgets_init' );
+
+
+
+?>
Index: trunk/extras/my_themes/ja.po
===================================================================
--- trunk/extras/my_themes/ja.po	(revision 629)
+++ trunk/extras/my_themes/ja.po	(revision 641)
@@ -8,6 +8,6 @@
 "Project-Id-Version: XPress_Default_themes\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-12 12:35+0900\n"
-"PO-Revision-Date: 2010-06-12 12:39+0900\n"
+"POT-Creation-Date: 2010-08-18 14:08+0900\n"
+"PO-Revision-Date: 2010-08-18 14:16+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -89,5 +89,5 @@
 
 #: comments-popup.php:64
-#: comments.php:92
+#: comments.php:91
 msgid "Name"
 msgstr "お名前"
@@ -179,165 +179,224 @@
 msgstr "%s にコメントする"
 
-#: comments.php:80
+#: comments.php:79
 #, php-format
 msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
 msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 #, php-format
 msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out of this account"
 msgstr "このアカウントからログアウト"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out &raquo;"
 msgstr "ログアウト &raquo;"
 
-#: comments.php:92
-#: comments.php:95
+#: comments.php:91
+#: comments.php:94
 msgid "(required)"
 msgstr " (必須)"
 
-#: comments.php:95
+#: comments.php:94
 msgid "Mail (will not be published)"
 msgstr "メールアドレス (公開されません)"
 
-#: comments.php:98
+#: comments.php:97
 msgid "Website"
 msgstr "ウェブサイト"
 
-#: comments.php:103
+#: comments.php:102
 #, php-format
 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
 msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
 
-#: comments.php:107
+#: comments.php:106
 msgid "Submit Comment"
 msgstr "コメント送信"
 
-#: footer.php:5
+#: footer.php:10
 #, php-format
 msgid "%1$s and %2$s."
 msgstr "%1$s と %2$s"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Entries (RSS)"
 msgstr "投稿 (RSS)"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Comments (RSS)"
 msgstr "コメント (RSS)"
 
-#: footer.php:7
+#: footer.php:12
 #, php-format
 msgid "%.3f sec."
 msgstr "%.3f 秒"
 
-#: functions.php:15
+#: functions.php:25
 msgid "Primary Navigation"
 msgstr "メインナビゲージョン"
 
-#: functions.php:157
-msgid "Customize Header"
-msgstr "ヘッダーのカスタマイズ"
-
-#: functions.php:157
-#: functions.php:371
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "ヘッダー&フッター"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "ヘッダー設定を保存しました。"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "フッター設定を保存しました。"
+
+#: functions.php:420
 msgid "Header Image and Color"
 msgstr "ヘッダーの背景と文字の色"
 
-#: functions.php:170
-msgid "Close Color Picker"
-msgstr "カラーピッカーを閉じる"
-
-#: functions.php:367
-msgid "Options saved."
-msgstr "設定を保存しました。"
-
-#: functions.php:384
-#: functions.php:391
+#: functions.php:433
+#: functions.php:440
 msgid "Save"
 msgstr "保存"
 
-#: functions.php:385
+#: functions.php:434
 msgid "Font Color:"
 msgstr "フォントの色:"
 
-#: functions.php:385
+#: functions.php:434
 #, php-format
 msgid "Any CSS color (%s or %s or %s)"
 msgstr "CSS 色指定 (%s 、%s もしくは %s)"
 
-#: functions.php:386
+#: functions.php:435
 msgid "Upper Color:"
 msgstr "グラデーション上側の色:"
 
-#: functions.php:386
-#: functions.php:387
+#: functions.php:435
+#: functions.php:436
 #, php-format
 msgid "HEX only (%s or %s)"
 msgstr "16 進数のみ (%s もしくは %s)"
 
-#: functions.php:387
+#: functions.php:436
 msgid "Lower Color:"
 msgstr "グラデーション下側の色:"
 
-#: functions.php:389
+#: functions.php:438
 msgid "Toggle Text"
 msgstr "テキスト表示の切替え"
 
-#: functions.php:390
+#: functions.php:439
 msgid "Use Defaults"
 msgstr "デフォルト設定に戻す"
 
-#: functions.php:399
+#: functions.php:448
 msgid "Font Color"
 msgstr "フォントの色"
 
-#: functions.php:400
+#: functions.php:449
 msgid "Upper Color"
 msgstr "グラデーション上側の色"
 
-#: functions.php:401
+#: functions.php:450
 msgid "Lower Color"
 msgstr "グラデーション下側の色"
 
-#: functions.php:402
+#: functions.php:451
 msgid "Revert"
 msgstr "取り消し"
 
-#: functions.php:403
+#: functions.php:452
 msgid "Advanced"
 msgstr "詳細"
 
-#: functions.php:410
+#: functions.php:459
 msgid "Update Header &raquo;"
 msgstr "ヘッダーを更新 &raquo;"
 
-#: functions.php:416
+#: functions.php:465
 msgid "Font Color (CSS):"
 msgstr "フォントの色 (CSS):"
 
-#: functions.php:417
+#: functions.php:466
 msgid "Upper Color (HEX):"
 msgstr "グラデーション上側の色 (16 進数):"
 
-#: functions.php:418
+#: functions.php:467
 msgid "Lower Color (HEX):"
 msgstr "グラデーション下側の色 (16 進数):"
 
-#: functions.php:419
+#: functions.php:468
 msgid "Select Default Colors"
 msgstr "デフォルト設定に戻す"
 
-#: functions.php:420
+#: functions.php:469
 msgid "Toggle Text Display"
 msgstr "テキスト表示の切替え"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "フッター"
+
+#: functions.php:479
+msgid "Set number of the sidebar to display in the footer."
+msgstr "フッターに表示するサイドバーの数を設定"
+
+#: functions.php:485
+msgid "none"
+msgstr "なし"
+
+#: functions.php:494
+msgid "Update Footer &raquo;"
+msgstr "フッターを更新 &raquo;"
+
+#: functions.php:510
+msgid "First Footer Widget Area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:511
+msgid "The first footer widget area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:514
+msgid "Second Footer Widget Area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:515
+msgid "The second footer widget area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:518
+msgid "Third Footer Widget Area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:519
+msgid "The third footer widget area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:522
+msgid "Fourth Footer Widget Area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:523
+msgid "The fourth footer widget area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:526
+msgid "Fifth Footer Widget Area"
+msgstr "フッターウィジェットエリア５"
+
+#: functions.php:527
+msgid "The fifth footer widget area"
+msgstr "フッターウィジェットエリア５"
 
 #: header.php:9
@@ -368,5 +427,4 @@
 
 #: image.php:13
-#: single.php:32
 msgid "Read the rest of this entry &raquo;"
 msgstr "この投稿の続きを読む &raquo;"
@@ -416,5 +474,4 @@
 
 #: image.php:58
-#: single.php:94
 msgid "Sorry, no posts matched your criteria."
 msgstr "該当する投稿は見つかりませんでした。"
@@ -424,6 +481,4 @@
 #: multi_blog_index.php:33
 #: multi_blog_index.php:35
-#: single.php:24
-#: single.php:26
 #, php-format
 msgid "Permanent Link to %s"
@@ -432,5 +487,4 @@
 #: index.php:44
 #: multi_blog_index.php:48
-#: single.php:42
 #, php-format
 msgid "Views :%d"
@@ -439,5 +493,4 @@
 #: index.php:47
 #: multi_blog_index.php:51
-#: single.php:45
 #, php-format
 msgid "Posted in %s"
@@ -446,5 +499,4 @@
 #: index.php:49
 #: multi_blog_index.php:53
-#: single.php:47
 msgid "Edit"
 msgstr "編集"
@@ -452,5 +504,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "No Comments &#187;"
 msgstr "コメントはまだありません &#187;"
@@ -458,5 +509,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "1 Comment &#187;"
 msgstr "1 件のコメント &#187;"
@@ -464,5 +514,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "% Comments &#187;"
 msgstr "% 件のコメント &#187;"
@@ -470,5 +519,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "Comments Closed"
 msgstr "コメントは受け付けていません。"
@@ -747,4 +795,6 @@
 msgstr "テーマ選択"
 
+#~ msgid "Customize Header"
+#~ msgstr "ヘッダーのカスタマイズ"
 #~ msgid "%d queries. %s seconds."
 #~ msgstr "%d 個のクエリと %s 秒を要しました。"
Index: trunk/extras/my_themes/ja_EUC.po
===================================================================
--- trunk/extras/my_themes/ja_EUC.po	(revision 629)
+++ trunk/extras/my_themes/ja_EUC.po	(revision 641)
@@ -9,5 +9,5 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-06-12 12:47+0900\n"
-"PO-Revision-Date: 2010-06-12 12:47+0900\n"
+"PO-Revision-Date: 2010-08-18 14:22+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -89,5 +89,5 @@
 
 #: comments-popup.php:64
-#: comments.php:92
+#: comments.php:91
 msgid "Name"
 msgstr "¤ªÌ¾Á°"
@@ -179,165 +179,224 @@
 msgstr "%s ¤Ë¥³¥á¥ó¥È¤¹¤ë"
 
-#: comments.php:80
+#: comments.php:79
 #, php-format
 msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
 msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 #, php-format
 msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
 msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out of this account"
 msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out &raquo;"
 msgstr "¥í¥°¥¢¥¦¥È &raquo;"
 
-#: comments.php:92
-#: comments.php:95
+#: comments.php:91
+#: comments.php:94
 msgid "(required)"
 msgstr " (É¬¿Ü)"
 
-#: comments.php:95
+#: comments.php:94
 msgid "Mail (will not be published)"
 msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)"
 
-#: comments.php:98
+#: comments.php:97
 msgid "Website"
 msgstr "¥¦¥§¥Ö¥µ¥¤¥È"
 
-#: comments.php:103
+#: comments.php:102
 #, php-format
 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
 msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍÑ¤Ç¤­¤Þ¤¹: <code>%s</code>"
 
-#: comments.php:107
+#: comments.php:106
 msgid "Submit Comment"
 msgstr "¥³¥á¥ó¥ÈÁ÷¿®"
 
-#: footer.php:5
+#: footer.php:10
 #, php-format
 msgid "%1$s and %2$s."
 msgstr "%1$s ¤È %2$s"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Entries (RSS)"
 msgstr "Åê¹Æ (RSS)"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Comments (RSS)"
 msgstr "¥³¥á¥ó¥È (RSS)"
 
-#: footer.php:7
+#: footer.php:12
 #, php-format
 msgid "%.3f sec."
 msgstr "%.3f ÉÃ"
 
-#: functions.php:15
+#: functions.php:25
 msgid "Primary Navigation"
 msgstr "¥á¥¤¥ó¥Ê¥Ó¥²¡¼¥¸¥ç¥ó"
 
-#: functions.php:157
-msgid "Customize Header"
-msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º"
-
-#: functions.php:157
-#: functions.php:371
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "¥Ø¥Ã¥À¡¼&¥Õ¥Ã¥¿¡¼"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊÄ¤¸¤ë"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "¥Ø¥Ã¥À¡¼ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "¥Õ¥Ã¥¿¡¼ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:420
 msgid "Header Image and Color"
 msgstr "¥Ø¥Ã¥À¡¼¤ÎÇØ·Ê¤ÈÊ¸»ú¤Î¿§"
 
-#: functions.php:170
-msgid "Close Color Picker"
-msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊÄ¤¸¤ë"
-
-#: functions.php:367
-msgid "Options saved."
-msgstr "ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
-
-#: functions.php:384
-#: functions.php:391
+#: functions.php:433
+#: functions.php:440
 msgid "Save"
 msgstr "ÊÝÂ¸"
 
-#: functions.php:385
+#: functions.php:434
 msgid "Font Color:"
 msgstr "¥Õ¥©¥ó¥È¤Î¿§:"
 
-#: functions.php:385
+#: functions.php:434
 #, php-format
 msgid "Any CSS color (%s or %s or %s)"
 msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)"
 
-#: functions.php:386
+#: functions.php:435
 msgid "Upper Color:"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§:"
 
-#: functions.php:386
-#: functions.php:387
+#: functions.php:435
+#: functions.php:436
 #, php-format
 msgid "HEX only (%s or %s)"
 msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)"
 
-#: functions.php:387
+#: functions.php:436
 msgid "Lower Color:"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:"
 
-#: functions.php:389
+#: functions.php:438
 msgid "Toggle Text"
 msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
 
-#: functions.php:390
+#: functions.php:439
 msgid "Use Defaults"
 msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
 
-#: functions.php:399
+#: functions.php:448
 msgid "Font Color"
 msgstr "¥Õ¥©¥ó¥È¤Î¿§"
 
-#: functions.php:400
+#: functions.php:449
 msgid "Upper Color"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§"
 
-#: functions.php:401
+#: functions.php:450
 msgid "Lower Color"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§"
 
-#: functions.php:402
+#: functions.php:451
 msgid "Revert"
 msgstr "¼è¤ê¾Ã¤·"
 
-#: functions.php:403
+#: functions.php:452
 msgid "Advanced"
 msgstr "¾ÜºÙ"
 
-#: functions.php:410
+#: functions.php:459
 msgid "Update Header &raquo;"
 msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· &raquo;"
 
-#: functions.php:416
+#: functions.php:465
 msgid "Font Color (CSS):"
 msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):"
 
-#: functions.php:417
+#: functions.php:466
 msgid "Upper Color (HEX):"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§ (16 ¿Ê¿ô):"
 
-#: functions.php:418
+#: functions.php:467
 msgid "Lower Color (HEX):"
 msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):"
 
-#: functions.php:419
+#: functions.php:468
 msgid "Select Default Colors"
 msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
 
-#: functions.php:420
+#: functions.php:469
 msgid "Toggle Text Display"
 msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "¥Õ¥Ã¥¿¡¼"
+
+#: functions.php:479
+msgid "Set number of the sidebar to display in the footer."
+msgstr "¥Õ¥Ã¥¿¡¼¤ËÉ½¼¨¤¹¤ë¥µ¥¤¥É¥Ð¡¼¤Î¿ô¤òÀßÄê"
+
+#: functions.php:485
+msgid "none"
+msgstr "¤Ê¤·"
+
+#: functions.php:494
+msgid "Update Footer &raquo;"
+msgstr "¥Õ¥Ã¥¿¡¼¤ò¹¹¿· &raquo;"
+
+#: functions.php:510
+msgid "First Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±"
+
+#: functions.php:511
+msgid "The first footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±"
+
+#: functions.php:514
+msgid "Second Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²"
+
+#: functions.php:515
+msgid "The second footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²"
+
+#: functions.php:518
+msgid "Third Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³"
+
+#: functions.php:519
+msgid "The third footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³"
+
+#: functions.php:522
+msgid "Fourth Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´"
+
+#: functions.php:523
+msgid "The fourth footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´"
+
+#: functions.php:526
+msgid "Fifth Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ"
+
+#: functions.php:527
+msgid "The fifth footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ"
 
 #: header.php:9
@@ -368,5 +427,4 @@
 
 #: image.php:13
-#: single.php:32
 msgid "Read the rest of this entry &raquo;"
 msgstr "¤³¤ÎÅê¹Æ¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
@@ -416,5 +474,4 @@
 
 #: image.php:58
-#: single.php:94
 msgid "Sorry, no posts matched your criteria."
 msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
@@ -424,6 +481,4 @@
 #: multi_blog_index.php:33
 #: multi_blog_index.php:35
-#: single.php:24
-#: single.php:26
 #, php-format
 msgid "Permanent Link to %s"
@@ -432,5 +487,4 @@
 #: index.php:44
 #: multi_blog_index.php:48
-#: single.php:42
 #, php-format
 msgid "Views :%d"
@@ -439,5 +493,4 @@
 #: index.php:47
 #: multi_blog_index.php:51
-#: single.php:45
 #, php-format
 msgid "Posted in %s"
@@ -446,5 +499,4 @@
 #: index.php:49
 #: multi_blog_index.php:53
-#: single.php:47
 msgid "Edit"
 msgstr "ÊÔ½¸"
@@ -452,5 +504,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "No Comments &#187;"
 msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó &#187;"
@@ -458,5 +509,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "1 Comment &#187;"
 msgstr "1 ·ï¤Î¥³¥á¥ó¥È &#187;"
@@ -464,5 +514,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "% Comments &#187;"
 msgstr "% ·ï¤Î¥³¥á¥ó¥È &#187;"
@@ -470,5 +519,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "Comments Closed"
 msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
@@ -747,4 +795,6 @@
 msgstr "¥Æ¡¼¥ÞÁªÂò"
 
+#~ msgid "Customize Header"
+#~ msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º"
 #~ msgid "%d queries. %s seconds."
 #~ msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %s ÉÃ¤òÍ×¤·¤Þ¤·¤¿¡£"
Index: trunk/extras/my_themes/ja_UTF.po
===================================================================
--- trunk/extras/my_themes/ja_UTF.po	(revision 629)
+++ trunk/extras/my_themes/ja_UTF.po	(revision 641)
@@ -9,5 +9,5 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-06-12 12:41+0900\n"
-"PO-Revision-Date: 2010-06-12 12:41+0900\n"
+"PO-Revision-Date: 2010-08-18 14:22+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -89,5 +89,5 @@
 
 #: comments-popup.php:64
-#: comments.php:92
+#: comments.php:91
 msgid "Name"
 msgstr "お名前"
@@ -179,165 +179,224 @@
 msgstr "%s にコメントする"
 
-#: comments.php:80
+#: comments.php:79
 #, php-format
 msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
 msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 #, php-format
 msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
 msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out of this account"
 msgstr "このアカウントからログアウト"
 
-#: comments.php:86
-#: comments.php:88
+#: comments.php:85
+#: comments.php:87
 msgid "Log out &raquo;"
 msgstr "ログアウト &raquo;"
 
-#: comments.php:92
-#: comments.php:95
+#: comments.php:91
+#: comments.php:94
 msgid "(required)"
 msgstr " (必須)"
 
-#: comments.php:95
+#: comments.php:94
 msgid "Mail (will not be published)"
 msgstr "メールアドレス (公開されません)"
 
-#: comments.php:98
+#: comments.php:97
 msgid "Website"
 msgstr "ウェブサイト"
 
-#: comments.php:103
+#: comments.php:102
 #, php-format
 msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
 msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
 
-#: comments.php:107
+#: comments.php:106
 msgid "Submit Comment"
 msgstr "コメント送信"
 
-#: footer.php:5
+#: footer.php:10
 #, php-format
 msgid "%1$s and %2$s."
 msgstr "%1$s と %2$s"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Entries (RSS)"
 msgstr "投稿 (RSS)"
 
-#: footer.php:5
+#: footer.php:10
 msgid "Comments (RSS)"
 msgstr "コメント (RSS)"
 
-#: footer.php:7
+#: footer.php:12
 #, php-format
 msgid "%.3f sec."
 msgstr "%.3f 秒"
 
-#: functions.php:15
+#: functions.php:25
 msgid "Primary Navigation"
 msgstr "メインナビゲージョン"
 
-#: functions.php:157
-msgid "Customize Header"
-msgstr "ヘッダーのカスタマイズ"
-
-#: functions.php:157
-#: functions.php:371
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "ヘッダー&フッター"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "ヘッダー設定を保存しました。"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "フッター設定を保存しました。"
+
+#: functions.php:420
 msgid "Header Image and Color"
 msgstr "ヘッダーの背景と文字の色"
 
-#: functions.php:170
-msgid "Close Color Picker"
-msgstr "カラーピッカーを閉じる"
-
-#: functions.php:367
-msgid "Options saved."
-msgstr "設定を保存しました。"
-
-#: functions.php:384
-#: functions.php:391
+#: functions.php:433
+#: functions.php:440
 msgid "Save"
 msgstr "保存"
 
-#: functions.php:385
+#: functions.php:434
 msgid "Font Color:"
 msgstr "フォントの色:"
 
-#: functions.php:385
+#: functions.php:434
 #, php-format
 msgid "Any CSS color (%s or %s or %s)"
 msgstr "CSS 色指定 (%s 、%s もしくは %s)"
 
-#: functions.php:386
+#: functions.php:435
 msgid "Upper Color:"
 msgstr "グラデーション上側の色:"
 
-#: functions.php:386
-#: functions.php:387
+#: functions.php:435
+#: functions.php:436
 #, php-format
 msgid "HEX only (%s or %s)"
 msgstr "16 進数のみ (%s もしくは %s)"
 
-#: functions.php:387
+#: functions.php:436
 msgid "Lower Color:"
 msgstr "グラデーション下側の色:"
 
-#: functions.php:389
+#: functions.php:438
 msgid "Toggle Text"
 msgstr "テキスト表示の切替え"
 
-#: functions.php:390
+#: functions.php:439
 msgid "Use Defaults"
 msgstr "デフォルト設定に戻す"
 
-#: functions.php:399
+#: functions.php:448
 msgid "Font Color"
 msgstr "フォントの色"
 
-#: functions.php:400
+#: functions.php:449
 msgid "Upper Color"
 msgstr "グラデーション上側の色"
 
-#: functions.php:401
+#: functions.php:450
 msgid "Lower Color"
 msgstr "グラデーション下側の色"
 
-#: functions.php:402
+#: functions.php:451
 msgid "Revert"
 msgstr "取り消し"
 
-#: functions.php:403
+#: functions.php:452
 msgid "Advanced"
 msgstr "詳細"
 
-#: functions.php:410
+#: functions.php:459
 msgid "Update Header &raquo;"
 msgstr "ヘッダーを更新 &raquo;"
 
-#: functions.php:416
+#: functions.php:465
 msgid "Font Color (CSS):"
 msgstr "フォントの色 (CSS):"
 
-#: functions.php:417
+#: functions.php:466
 msgid "Upper Color (HEX):"
 msgstr "グラデーション上側の色 (16 進数):"
 
-#: functions.php:418
+#: functions.php:467
 msgid "Lower Color (HEX):"
 msgstr "グラデーション下側の色 (16 進数):"
 
-#: functions.php:419
+#: functions.php:468
 msgid "Select Default Colors"
 msgstr "デフォルト設定に戻す"
 
-#: functions.php:420
+#: functions.php:469
 msgid "Toggle Text Display"
 msgstr "テキスト表示の切替え"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "フッター"
+
+#: functions.php:479
+msgid "Set number of the sidebar to display in the footer."
+msgstr "フッターに表示するサイドバーの数を設定"
+
+#: functions.php:485
+msgid "none"
+msgstr "なし"
+
+#: functions.php:494
+msgid "Update Footer &raquo;"
+msgstr "フッターを更新 &raquo;"
+
+#: functions.php:510
+msgid "First Footer Widget Area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:511
+msgid "The first footer widget area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:514
+msgid "Second Footer Widget Area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:515
+msgid "The second footer widget area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:518
+msgid "Third Footer Widget Area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:519
+msgid "The third footer widget area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:522
+msgid "Fourth Footer Widget Area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:523
+msgid "The fourth footer widget area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:526
+msgid "Fifth Footer Widget Area"
+msgstr "フッターウィジェットエリア５"
+
+#: functions.php:527
+msgid "The fifth footer widget area"
+msgstr "フッターウィジェットエリア５"
 
 #: header.php:9
@@ -368,5 +427,4 @@
 
 #: image.php:13
-#: single.php:32
 msgid "Read the rest of this entry &raquo;"
 msgstr "この投稿の続きを読む &raquo;"
@@ -416,5 +474,4 @@
 
 #: image.php:58
-#: single.php:94
 msgid "Sorry, no posts matched your criteria."
 msgstr "該当する投稿は見つかりませんでした。"
@@ -424,6 +481,4 @@
 #: multi_blog_index.php:33
 #: multi_blog_index.php:35
-#: single.php:24
-#: single.php:26
 #, php-format
 msgid "Permanent Link to %s"
@@ -432,5 +487,4 @@
 #: index.php:44
 #: multi_blog_index.php:48
-#: single.php:42
 #, php-format
 msgid "Views :%d"
@@ -439,5 +493,4 @@
 #: index.php:47
 #: multi_blog_index.php:51
-#: single.php:45
 #, php-format
 msgid "Posted in %s"
@@ -446,5 +499,4 @@
 #: index.php:49
 #: multi_blog_index.php:53
-#: single.php:47
 msgid "Edit"
 msgstr "編集"
@@ -452,5 +504,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "No Comments &#187;"
 msgstr "コメントはまだありません &#187;"
@@ -458,5 +509,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "1 Comment &#187;"
 msgstr "1 件のコメント &#187;"
@@ -464,5 +514,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "% Comments &#187;"
 msgstr "% 件のコメント &#187;"
@@ -470,5 +519,4 @@
 #: index.php:50
 #: multi_blog_index.php:54
-#: single.php:48
 msgid "Comments Closed"
 msgstr "コメントは受け付けていません。"
@@ -747,4 +795,6 @@
 msgstr "テーマ選択"
 
+#~ msgid "Customize Header"
+#~ msgstr "ヘッダーのカスタマイズ"
 #~ msgid "%d queries. %s seconds."
 #~ msgstr "%d 個のクエリと %s 秒を要しました。"
Index: trunk/extras/my_themes/style.css
===================================================================
--- trunk/extras/my_themes/style.css	(revision 629)
+++ trunk/extras/my_themes/style.css	(revision 641)
@@ -892,2 +892,60 @@
 }
 
+#ed_toolbar input
+{
+	background: #14181B;
+	color: white;
+	border:2px dashed #323136; 
+	padding: 0px;
+	width: 65px;
+}
+#ed_toolbar input:hover 
+{
+	background: #323136;
+	color: white;
+	border:2px dashed #14181B; 
+	padding: 0px;
+	width: 65px;
+}
+
+#footer-widget-area {
+	overflow: hidden;
+	margin-top: 5px;
+	text-align: left;
+}
+#footer-widget-area .widget-area-type1 {
+	float: left;
+	padding-top: 0;
+	width:100%;
+}
+#footer-widget-area .widget-area-type2 {
+	float: left;
+	padding-top: 0;
+	width:49%;
+}
+#footer-widget-area .widget-area-type3 {
+	float: left;
+	padding-top: 0;
+	width:33%;
+}
+#footer-widget-area .widget-area-type4 {
+	float: left;
+	padding-top: 0;
+	width:24%;
+}
+#footer-widget-area .widget-area-type5 {
+	float: left;
+	padding-top: 0;
+	width:19%;
+}
+
+#footer-widget-area ul {
+	margin-top: 0;
+	list-style-type:none;
+	padding-left: 20px;
+
+}
+#footer-widget-area .widget-title {
+	margin-top: 0;
+	margin-bottom: 2px;
+}
