Index: branches/XPressME_MU/extras/for_wordpress_mu/src/include/xpress_mu_function.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/include/xpress_mu_function.php	(revision 389)
+++ branches/XPressME_MU/extras/for_wordpress_mu/src/include/xpress_mu_function.php	(revision 406)
@@ -44,5 +44,5 @@
 		update_blog_option( 1, 'stylesheet', 'xpress_mu_home');
 		
-		mu_create_blog( $domain, $base, $weblog_title, $user_id, array( 'blog_public' => 1, 'public' => 1 ) );
+		mu_create_blog( $domain, $base, $weblog_title, $admin_user_id, array( 'blog_public' => 1, 'public' => 1 ) );
 }
 endif;
@@ -187,5 +187,5 @@
 if( ! function_exists( 'install_mu_blog_defaults' ) ) :
 function install_mu_blog_defaults($blog_id, $user_id) {
-	global $wpdb, $wp_rewrite, $current_site, $table_prefix;
+	global $wpdb, $wp_rewrite, $current_site, $table_prefix , $xoops_config;
 	if(!is_object($wp_rewrite)){
 		$wp_rewrite   =& new WP_Rewrite();
@@ -213,42 +213,75 @@
 	$first_post = str_replace( "SITE_URL", clean_url("http://" . $current_site->domain . $current_site->path), $first_post );
 	$first_post = str_replace( "SITE_NAME", $current_site->site_name, $first_post );
-	$wpdb->insert( $wpdb->posts, array(
-		'post_author' => $user_id, 
-		'post_date' => $now, 
-		'post_date_gmt' => $now_gmt,
-		'post_content' => stripslashes( $first_post ), 
-		'post_excerpt' => '', 
-		'post_title' => __('Hello world!'),
-		'post_category' => 0, 
-		'post_name' => __('hello-world'),
-		'post_modified' => $now,
-		'post_modified_gmt' => $now_gmt,
-		'comment_count' => 1
-	) );	
+
+	// insert First page &  First post
+	if (version_compare($xoops_config->wp_version,'2.8', '<')){
+		$wpdb->insert( $wpdb->posts, array(
+			'post_author' => $user_id, 
+			'post_date' => $now, 
+			'post_date_gmt' => $now_gmt,
+			'post_content' => stripslashes( $first_post ), 
+			'post_excerpt' => '', 
+			'post_title' => __('Hello world!'),
+			'post_category' => 0, 
+			'post_name' => __('hello-world'),
+			'post_modified' => $now,
+			'post_modified_gmt' => $now_gmt,
+			'comment_count' => 1
+		) );
+		$wpdb->insert( $wpdb->posts, array(
+			'post_author' => $user_id, 
+			'post_date' => $now, 
+			'post_date_gmt' => $now_gmt,
+			'post_content' => __('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'), 
+			'post_excerpt' => '', 
+			'post_title' => __('About'),
+			'post_category' => 0, 
+			'post_name' => __('about'),
+			'post_modified' => $now,
+			'post_modified_gmt' => $now_gmt,
+			'post_status' => 'publish',
+			'post_type' => 'page',
+			'to_ping' => '',
+			'pinged' => '',
+			'post_content_filtered' => ''
+		) );
+	}else {	
+		$wpdb->insert( $wpdb->posts, array(
+			'post_author' => $user_id, 
+			'post_date' => $now, 
+			'post_date_gmt' => $now_gmt,
+			'post_content' => stripslashes( $first_post ), 
+			'post_excerpt' => '', 
+			'post_title' => __('Hello world!'),
+			'post_name' => __('hello-world'),
+			'post_modified' => $now,
+			'post_modified_gmt' => $now_gmt,
+			'comment_count' => 1
+		) );	
+		$wpdb->insert( $wpdb->term_relationships, array('object_id' => 1, 'term_taxonomy_id' => 1));
+		update_option( "post_count", 1 );
+			$wpdb->insert( $wpdb->posts, array(
+			'post_author' => $user_id, 
+			'post_date' => $now, 
+			'post_date_gmt' => $now_gmt,
+			'post_content' => __('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'), 
+			'post_excerpt' => '', 
+			'post_title' => __('About'),
+			'post_name' => __('about'),
+			'post_modified' => $now,
+			'post_modified_gmt' => $now_gmt,
+			'post_status' => 'publish',
+			'post_type' => 'page',
+			'to_ping' => '',
+			'pinged' => '',
+			'post_content_filtered' => ''
+		) );
+	}
 	$wpdb->insert( $wpdb->term_relationships, array('object_id' => 1, 'term_taxonomy_id' => 1));
 	update_option( "post_count", 1 );
 
-	// First page
-	$wpdb->insert( $wpdb->posts, array(
-		'post_author' => $user_id, 
-		'post_date' => $now, 
-		'post_date_gmt' => $now_gmt,
-		'post_content' => __('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'), 
-		'post_excerpt' => '', 
-		'post_title' => __('About'),
-		'post_category' => 0, 
-		'post_name' => __('about'),
-		'post_modified' => $now,
-		'post_modified_gmt' => $now_gmt,
-		'post_status' => 'publish',
-		'post_type' => 'page',
-		'to_ping' => '',
-		'pinged' => '',
-		'post_content_filtered' => ''
-	) );
-	
 	// Flush rules to pick up the new page.
 	$wp_rewrite->init();
-	$wp_rewrite->flush_rules();
+	$wp_rewrite->flush_rules(false);
 
 	// Default comment
Index: branches/XPressME_MU/extras/for_wordpressme2011/ja_EUC/wp-content/plugins/xpressme/language/xpressme-ja_EUC.po
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/wp-content/plugins/xpressme/language/xpressme-ja_EUC.po	(revision 389)
+++ branches/XPressME_MU/extras/for_wordpressme2011/ja_EUC/wp-content/plugins/xpressme/language/xpressme-ja_EUC.po	(revision 406)
@@ -8,10 +8,10 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-03 12:16+0900\n"
-"PO-Revision-Date: 2009-09-09 14:12+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
+"PO-Revision-Date: 2009-10-07 10:41+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Language: Japanese\n"
@@ -25,29 +25,29 @@
 #: xpressme.php:33
 msgid "Display Settings"
-msgstr "É½¼¨ÀßÄê"
+msgstr "表示設定"
 
 #: xpressme.php:34
 msgid "Integration Settings"
-msgstr "Åý¹çÀßÄê"
+msgstr "統合設定"
 
 #: xpressme.php:35
 msgid "Other Settings"
-msgstr "¤½¤ÎÂ¾¤ÎÀßÄê"
+msgstr "その他の設定"
 
 #: xpressme.php:37
 msgid "Upgrade"
-msgstr "¥¢¥Ã¥×¥°¥ì¡¼¥É"
+msgstr "アップグレード"
 
 #: xpressme.php:38
 msgid "to Modules Admin"
-msgstr "¥â¥¸¥å¡¼¥ë´ÉÍý¤Ø"
+msgstr "モジュール管理へ"
 
 #: xpressme.php:138
 msgid "XPressME Display Setting"
-msgstr "XPressME É½¼¨ÀßÄê"
+msgstr "XPressME 表示設定"
 
 #: xpressme.php:144
 msgid "Thema Sidebar Display"
-msgstr "¥Æ¡¼¥ÞÉ½¼¨»þ¤Ë¥µ¥¤¥É¥Ð¡¼É½¼¨¤¹¤ë¡£"
+msgstr "テーマ表示時にサイドバー表示する。"
 
 #: xpressme.php:145
@@ -56,10 +56,10 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
-msgstr "¤Ï¤¤"
+msgstr "はい"
 
 #: xpressme.php:146
@@ -68,10 +68,10 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
-msgstr "¤¤¤¤¤¨"
+msgstr "いいえ"
 
 #: xpressme.php:155
@@ -79,5 +79,5 @@
 #: xpressme.php:258
 msgid "Update Config"
-msgstr "¹¹¿·"
+msgstr "更新"
 
 #: xpressme.php:156
@@ -85,372 +85,380 @@
 #: xpressme.php:259
 msgid "Preset Config"
-msgstr "¥×¥ê¥»¥Ã¥È"
+msgstr "プリセット"
 
 #: xpressme.php:188
 msgid "XPressME Integration Setting"
-msgstr "XPressME Åý¹çÀßÄê"
+msgstr "XPressME 統合設定"
 
 #: xpressme.php:193
 msgid "Media Upload Base Path"
-msgstr "¥á¥Ç¥£¥¢¥¢¥Ã¥×¥í¡¼¥É¤Î¥Ù¡¼¥¹¥Ñ¥¹ÀßÄê"
+msgstr "メディアアップロードのベースパス設定"
 
 #: xpressme.php:194
 msgid "Use XOOPS UPLOAD PATH"
-msgstr "XOOPS¤Î¥¢¥Ã¥×¥í¡¼¥É¥Ñ¥¹¤ò»ÈÍÑ¤¹¤ë¡£"
+msgstr "XOOPSのアップロードパスを使用する。"
 
 #: xpressme.php:195
 msgid "USE WordPress BASE_PATH"
-msgstr "WordPress¤Î¥Ù¡¼¥¹¥Ñ¥¹¤ò»ÈÍÑ¤¹¤ë¡£"
+msgstr "WordPressのベースパスを使用する。"
 
 #: xpressme.php:229
 msgid "XPressME Other Setting"
-msgstr "XPressME ¤½¤ÎÂ¾¤ÎÀßÄê"
+msgstr "XPressME その他の設定"
 
 #: xpressme.php:234
 msgid "The change tracking of the post is preserved"
-msgstr "Åê¹Æ¤ÎÊÑ¹¹ÍúÎò¤òÍ­¸ú¤Ë¤¹¤ë¡£"
+msgstr "投稿の変更履歴を有効にする。"
 
 #: xpressme.php:240
 msgid "Select Multi user mode"
-msgstr "¥Þ¥ë¥Á¥æ¡¼¥¶¡¼¥â¡¼¥É¤òÁªÂò"
+msgstr "マルチユーザーモードを選択"
 
 #: xpressme.php:245
 msgid "Is the posts author views counted?"
-msgstr "Åê¹Æ¼Ô¤Î±ÜÍ÷¤ò¥«¥¦¥ó¥È¤·¤Þ¤¹¤«¡©"
+msgstr "投稿者の閲覧をカウントしますか？"
 
 #: xpressme.php:251
 msgid "Is SQL debugging window displayed?"
-msgstr "SQL¥Ç¥Ð¥Ã¥°¥¦¥£¥ó¥É¤òÉ½¼¨¤·¤Þ¤¹¤«¡©"
+msgstr "SQLデバッグウィンドを表示しますか？"
 
 #: xpressme.php:275
 msgid "XPressME Upgrade"
-msgstr "XPressME ¥¢¥Ã¥×¥°¥ì¡¼¥É"
+msgstr "XPressME アップグレード"
 
 #: xpressme.php:289
 #, php-format
 msgid "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
-msgstr "¤ª»È¤¤¤Î XPressME Integration Kit ¤Ï³«È¯ÈÇ (%1$s) ¤Ç¤¹¡£¤¹¤Ð¤é¤·¤¤ ! ¤É¤¦¤¾<a href=\"%2$s\">ºÇ¿·ÈÇ¤ò»È¤¤Â³¤±¤Æ¤¯¤À¤µ¤¤</a>¡£"
+msgstr "お使いの XPressME Integration Kit は開発版 (%1$s) です。すばらしい ! どうぞ<a href=\"%2$s\">最新版を使い続けてください</a>。"
 
 #: xpressme.php:293
 msgid "There is a new version of XPressME Integration Kit available for upgrade"
-msgstr "¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î XPressME Integration Kit ¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤¬²ÄÇ½¤Ç¤¹"
+msgstr "新しいバージョンの XPressME Integration Kit にアップグレードが可能です"
 
 #: xpressme.php:296
 #, php-format
 msgid "You can upgrade to version %s download the package and install it manually:"
-msgstr "¥Ð¡¼¥¸¥ç¥ó %s ¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¼êÆ°¤Ç¥À¥¦¥ó¥í¡¼¥É¤·¤Æ¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
+msgstr "バージョン %s のパッケージを手動でダウンロードしてインストールすることができます。"
 
 #: xpressme.php:299
 #, php-format
 msgid "Download %s"
-msgstr "%s ¤ò¥À¥¦¥ó¥í¡¼¥É"
+msgstr "%s をダウンロード"
 
 #: xpressme.php:302
 msgid "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
-msgstr "ºÇ¿·¥Ð¡¼¥¸¥ç¥ó¤Î XPressME Integration Kit ¤ò¤´ÍøÍÑÃæ¤Ç¤¹¡£¥¢¥Ã¥×¥°¥ì¡¼¥É¤ÎÉ¬Í×¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+msgstr "最新バージョンの XPressME Integration Kit をご利用中です。アップグレードの必要はありません。"
 
 #: xpressme.php:306
 #, php-format
 msgid "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
-msgstr "¸½ºß¡¢<a href=\"%s\">version check API</a>¤«¤é¤Î¥ì¥¹¥Ý¥ó¥¹¤¬¤¢¤ê¤Þ¤»¤ó¡£¡¡¿½¤·Ìõ¤¢¤ê¤Þ¤»¤ó¤¬¡¢¤·¤Ð¤é¤¯¸å¤Ç³ÎÇ§¤·¤Æ¤¯¤À¤µ¤¤¡£"
+msgstr "現在、<a href=\"%s\">version check API</a>からのレスポンスがありません。　申し訳ありませんが、しばらく後で確認してください。"
 
 #: xpressme.php:425
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
-msgstr "XPressME Integration Kit Version %1$s ¤¬ÍøÍÑ²ÄÇ½¤Ç¤¹ ! <a href=\"%2$s\">¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¤¯¤À¤µ¤¤</a>¡£"
+msgstr "XPressME Integration Kit Version %1$s が利用可能です ! <a href=\"%2$s\">アップデートしてください</a>。"
 
 #: xpressme.php:427
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
-msgstr "XPressME Integration Kit Version %1$s ¤¬ÍøÍÑ²ÄÇ½¤Ç¤¹ ! ¥µ¥¤¥È´ÉÍý¼Ô¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤¡£"
-
-#: xpressme_class.php:54
-#: xpressme_class.php:229
-msgid "Older Post"
-msgstr "Á°¤ÎÅê¹Æ¤Ø"
+msgstr "XPressME Integration Kit Version %1$s が利用可能です ! サイト管理者に連絡してください。"
 
 #: xpressme_class.php:55
 #: xpressme_class.php:232
+msgid "Older Post"
+msgstr "前の投稿へ"
+
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
-msgstr "¼¡¤ÎÅê¹Æ¤Ø"
-
-#: xpressme_class.php:57
-#: xpressme_class.php:235
-msgid "Older Entries"
-msgstr "Á°¥Ú¡¼¥¸¤Ø"
+msgstr "次の投稿へ"
 
 #: xpressme_class.php:58
 #: xpressme_class.php:238
+msgid "Older Entries"
+msgstr "前ページへ"
+
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
-msgstr "¼¡¥Ú¡¼¥¸¤Ø"
-
-#: xpressme_class.php:72
+msgstr "次ページへ"
+
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
-msgstr "¤³¤ÎÅê¹Æ¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
-
-#: xpressme_class.php:336
+msgstr "この投稿の続きを読む &raquo;"
+
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
-msgstr "¥·¥ó¥°¥ë¥Ý¥¹¥È¥Ê¥Ó¤ÎÀßÄê"
-
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+msgstr "シングルポストナビの設定"
+
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
-msgstr "¥ê¥ó¥¯¤ÎÉ½¼¨°ÌÃÖÀßÄê"
-
-#: xpressme_class.php:344
+msgstr "リンクの表示位置設定"
+
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
-msgstr "°ÊÁ°¤Îµ­»ö¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
-
-#: xpressme_class.php:345
+msgstr "以前の記事へのリンクを左に、より新しい記事へのリンクを右に表示"
+
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
-msgstr "¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¸Å¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
-
-#: xpressme_class.php:351
+msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示"
+
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
-msgstr "É½¼¨¤¹¤ë¥ê¥ó¥¯¥Æ¥­¥¹¥È¤òÁªÂò"
-
-#: xpressme_class.php:354
+msgstr "表示するリンクテキストを選択"
+
+#: xpressme_class.php:360
 msgid "Title of post"
-msgstr "Åê¹Æµ­»ö¤Î¥¿¥¤¥È¥ë¤òÉ½¼¨"
-
-#: xpressme_class.php:355
+msgstr "投稿記事のタイトルを表示"
+
+#: xpressme_class.php:361
 msgid "Title of Navi"
-msgstr "¥Ê¥Ó¥¿¥¤¥È¥ë¤òÉ½¼¨"
-
-#: xpressme_class.php:361
+msgstr "ナビタイトルを表示"
+
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
-msgstr "¸Å¤¤µ­»ö¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
-
-#: xpressme_class.php:368
+msgstr "古い記事へのナビタイトルを設定"
+
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
-msgstr "¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
-
-#: xpressme_class.php:381
+msgstr "より新しい記事へのナビタイトルを設定"
+
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
-msgstr "¥Ý¥¹¥È¥ê¥¹¥È¥Ú¡¼¥¸¥Ê¥Ó¤ÎÀßÄê"
-
-#: xpressme_class.php:389
+msgstr "ポストリストページナビの設定"
+
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
-msgstr "¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
-
-#: xpressme_class.php:390
+msgstr "古いページへのリンクを左に、より新しいページへのリンクを右に表示"
+
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
-msgstr "¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
-
-#: xpressme_class.php:396
+msgstr "より新しいページへのリンクを左に、古いページへのリンクを右に表示"
+
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
-msgstr "¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
-
-#: xpressme_class.php:403
+msgstr "古いページへのナビタイトルを設定"
+
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
-msgstr "¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
-
-#: xpressme_class.php:416
+msgstr "より新しいページへのナビタイトルを設定"
+
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
-msgstr "¥À¥Ã¥·¥å¥Ü¡¼¥É¡¡¥Õ¥£¡¼¥ÉÉ½¼¨ÀßÄê"
-
-#: xpressme_class.php:422
+msgstr "ダッシュボード　フィード表示設定"
+
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
-msgstr "XPressME Integration Kit ¥Ö¥í¥°¤òÉ½¼¨¤¹¤ë¡£"
-
-#: xpressme_class.php:433
+msgstr "XPressME Integration Kit ブログを表示する。"
+
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
-msgstr "XPressME Integration Kit ¥Õ¥©¡¼¥é¥à¤òÉ½¼¨¤¹¤ë¡£"
-
-#: xpressme_class.php:450
+msgstr "XPressME Integration Kit フォーラムを表示する。"
+
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
-msgstr "¥í¥°¥¤¥ó»þ¤Î¸¢¸ÂÀßÄê"
-
-#: xpressme_class.php:453
+msgstr "ログイン時の権限設定"
+
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
-msgstr "XOOPS¥°¥ë¡¼¥×Ì¾"
-
-#: xpressme_class.php:453
+msgstr "XOOPSグループ名"
+
+#: xpressme_class.php:459
 msgid "WordPress Role"
-msgstr "WordPress¤Ç¤Î¸¢¸Â"
-
-#: xpressme_class.php:453
+msgstr "WordPressでの権限"
+
+#: xpressme_class.php:459
 msgid "Role is set at each login"
-msgstr "¥í¥°¥¤¥ó»þ¡¢¾ï¤Ë¸¢¸Â¤ò¹¹¿·¤¹¤ë"
-
-#: xpressme_class.php:479
-#: xpressme_class.php:483
+msgstr "ログイン時、常に権限を更新する"
+
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
+msgid "Default Role of WordPress"
+msgstr "WordPressのデフォルト権限"
+
 #: xpressme_class.php:486
-msgid "Default Role of WordPress"
-msgstr "WordPress¤Î¥Ç¥Õ¥©¥ë¥È¸¢¸Â"
-
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
-msgstr "¥æ¡¼¥¶ÅÐÏ¿¤·¤Ê¤¤"
-
-#: xpressme_class.php:518
+msgstr "ユーザ登録しない"
+
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
-msgstr "WordPress MU¤Ï¥³¥á¥ó¥ÈÅý¹ç¤Ç¤­¤Þ¤»¤ó¡£"
-
-#: xpressme_class.php:520
+msgstr "WordPress MUはコメント統合できません。"
+
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
-msgstr "¥³¥á¥ó¥ÈÅý¹ç¤·¤Þ¤»¤ó¡£"
-
-#: xpressme_class.php:555
+msgstr "コメント統合しません。"
+
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
-msgstr "D3Forum¤È¤Î¥³¥á¥ó¥ÈÅý¹ç"
-
-#: xpressme_class.php:557
+msgstr "D3Forumとのコメント統合"
+
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
-msgstr "°Ê²¼¤Î¥ê¥¹¥È¤«¤é¥³¥á¥ó¥ÈÅý¹ç¤ò¤¹¤ëD3Forum¤Î¥Õ¥©¡¼¥é¥à¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£"
-
-#: xpressme_class.php:562
+msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。"
+
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
-msgstr "D3Forum¤ÎÉ½¼¨¥¿¥¤¥×¤òÁªÂò"
-
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+msgstr "D3Forumの表示タイプを選択"
+
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
-msgstr "¥Õ¥é¥Ã¥È"
-
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+msgstr "フラット"
+
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
-msgstr "¥¹¥ì¥Ã¥É"
-
-#: xpressme_class.php:571
+msgstr "スレッド"
+
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
-msgstr "D3Forum¥³¥á¥ó¥È¤ÎÉ½¼¨½ç¤òÁªÂò"
-
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+msgstr "D3Forumコメントの表示順を選択"
+
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
-msgstr "¹ß½ç"
-
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+msgstr "降順"
+
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
-msgstr "¾º½ç"
-
-#: xpressme_class.php:580
+msgstr "昇順"
+
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
-msgstr "D3Forum¤Î¥³¥á¥ó¥ÈÉ½¼¨¿ô"
-
-#: xpressme_class.php:583
+msgstr "D3Forumのコメント表示数"
+
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
-msgstr "WordPress¥³¥á¥ó¥È¤ÈD3Forum¥Ý¥¹¥È´Ö¤Î°ì³çÅ¾Á÷¡Ê¥¨¥¯¥¹¥Ý¡¼¥È¡¦¥¤¥ó¥Ý¡¼¥È¡Ë"
-
-#: xpressme_class.php:584
+msgstr "WordPressコメントとD3Forumポスト間の一括転送（エクスポート・インポート）"
+
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
-msgstr "D3Forum¤Ø°ì³ç¥¨¥¯¥¹¥Ý¡¼¥È"
-
-#: xpressme_class.php:585
+msgstr "D3Forumへ一括エクスポート"
+
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
-msgstr "D3Forum¤«¤é°ì³ç¥¤¥ó¥Ý¡¼¥È"
-
-#: xpressme_class.php:598
+msgstr "D3Forumから一括インポート"
+
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
-msgstr "µ­»öÈ´¿è¤ÎÀßÄê"
-
-#: xpressme_class.php:603
+msgstr "記事抜粋の設定"
+
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
-msgstr "µ­»ö¤Î¥¢¡¼¥«¥¤¥Ö¤ÇÈ´¿èÉ½¼¨¤ò¹Ô¤¤¤Þ¤¹¤«¡©"
-
-#: xpressme_class.php:610
+msgstr "記事のアーカイブで抜粋表示を行いますか？"
+
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
-msgstr "ASCIIÊ¸»ú¤¬´Þ¤Þ¤ì¤ëÈæÎ¨¤¬ÀßÄê¤µ¤ì¤¿ÃÍ¤è¤êÂç¤­¤¤¾ì¹ç¡¢ASCIIÊ¸»ú¥³¥ó¥Æ¥ó¥Ä¤ÈÈ½ÃÇ¤·¤Þ¤¹¡£"
-
-#: xpressme_class.php:617
+msgstr "ASCII文字が含まれる比率が設定された値より大きい場合、ASCII文字コンテンツと判断します。"
+
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
-msgstr "ASCII¥³¥ó¥Æ¥ó¥Ä¤ÎÈ´¿èÃ±¸ì¿ô"
-
-#: xpressme_class.php:624
+msgstr "ASCIIコンテンツの抜粋単語数"
+
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
-msgstr "¥Þ¥ë¥Á¥Ð¥¤¥È¥³¥ó¥Æ¥ó¥Ä¤ÎÈ´¿èÊ¸»ú¿ô"
-
-#: xpressme_class.php:631
+msgstr "マルチバイトコンテンツの抜粋文字数"
+
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
-msgstr "È´¿è¤µ¤ì¤Æ¤¤¤Ê¤¤¥³¥ó¥Æ¥ó¥Ä¤òÆÉ¤à¤¿¤á¤Î¥ê¥ó¥¯¤ËÉ½¼¨¤µ¤ì¤ë¥Æ¥­¥¹¥È(¶õÇò¤Î¾ì¹ç¥ê¥ó¥¯¤òÉ½¼¨¤·¤Þ¤»¤ó)"
-
-#: xpressme_class.php:638
+msgstr "抜粋されていないコンテンツを読むためのリンクに表示されるテキスト(空白の場合リンクを表示しません)"
+
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
-msgstr "more ¥¿¥° (&lt;!--more--&gt;)¤Î¥ê¥ó¥¯¤ËÉ½¼¨¤µ¤ì¤ë¥Æ¥­¥¹¥È"
-
-#: xpressme_class.php:650
+msgstr "more タグ (&lt;!--more--&gt;)のリンクに表示されるテキスト"
+
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
-msgstr "É½¼¨¥â¡¼¥ÉÀßÄê"
-
-#: xpressme_class.php:653
+msgstr "表示モード設定"
+
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
-msgstr "XPressME¤ÎÉ½¼¨¥â¡¼¥É¤ÎÁªÂò"
-
-#: xpressme_class.php:658
+msgstr "XPressMEの表示モードの選択"
+
+#: xpressme_class.php:664
 msgid "Xoops Mode"
-msgstr "XOOPS¥â¡¼¥É"
-
-#: xpressme_class.php:662
+msgstr "XOOPSモード"
+
+#: xpressme_class.php:668
 msgid "WordPress Mode"
-msgstr "WordPress¥â¡¼¥É"
-
-#: xpressme_class.php:666
+msgstr "WordPressモード"
+
+#: xpressme_class.php:672
 msgid "User select"
-msgstr "¥æ¡¼¥¶¤Ë¤è¤ëÁªÂò"
-
-#: xpressme_class.php:676
+msgstr "ユーザによる選択"
+
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "XOOPSモードで使用するテーマを選択"
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "WordPressで選択したテーマを使う"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
-msgstr "¥Ø¥Ã¥À¥á¥¿¡¡¥ª¥×¥·¥ç¥ó"
-
-#: xpressme_class.php:681
+msgstr "ヘッダメタ　オプション"
+
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
-msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥­¡¼¥ï¡¼¥É¤ÎÁªÂò"
-
-#: xpressme_class.php:686
+msgstr "ヘッダで使用するキーワードの選択"
+
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
-msgstr "XOOPS¤Î¥­¡¼¥ï¡¼¥É"
-
-#: xpressme_class.php:689
+msgstr "XOOPSのキーワード"
+
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
-msgstr "WordPress¤Î¥­¡¼¥ï¡¼¥É"
-
-#: xpressme_class.php:692
+msgstr "WordPressのキーワード"
+
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
-msgstr "WordPress£ê¤ÈXOOPS¤Î¥­¡¼¥ï¡¼¥É"
-
-#: xpressme_class.php:698
+msgstr "WordPressｊとXOOPSのキーワード"
+
+#: xpressme_class.php:722
 msgid "Select the Header Description."
-msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó¡ÊÀâÌÀ¡Ë¤ÎÁªÂò"
-
-#: xpressme_class.php:703
+msgstr "ヘッダで使用するディスクリプション（説明）の選択"
+
+#: xpressme_class.php:727
 msgid "Xoops Description"
-msgstr "XOOPS¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
-
-#: xpressme_class.php:706
+msgstr "XOOPSのディスクリプション"
+
+#: xpressme_class.php:730
 msgid "WordPress Description"
-msgstr "WordPress¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
-
-#: xpressme_class.php:709
+msgstr "WordPressのディスクリプション"
+
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
-msgstr "WordPress¤ÈXOOPS¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
-
-#: xpressme_class.php:715
+msgstr "WordPressとXOOPSのディスクリプション"
+
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
-msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹¤ÎÁªÂò"
-
-#: xpressme_class.php:720
+msgstr "ヘッダで使用するロボットインデックスの選択"
+
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
-msgstr "XOOPS¤Î¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹"
-
-#: xpressme_class.php:723
+msgstr "XOOPSのロボットインデックス"
+
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
-msgstr "WordPress¤Î¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹"
-
-#: xpressme_class.php:752
+msgstr "WordPressのロボットインデックス"
+
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
-msgstr "%s ¥Ç¥£¥ì¥¯¥È¥ê¡¼¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó¡£¥µ¡¼¥Ð¡¼¤Î¿Æ¥Ç¥£¥ì¥¯¥È¥ê¡¼½ñ¤­¹þ¤ß¸¢¸Â¤¬¤¢¤ë¤«³ÎÇ§¤¯¤À¤µ¤¤r?"
+msgstr "%s ディレクトリーが作成できません。サーバーの親ディレクトリー書き込み権限があるか確認くださいr?"
 
 #: include/custom_functions.php:74
 #, php-format
 msgid "Permanent Link to %s"
-msgstr "%s¤Î¥Ñ¡¼¥Þ¥ê¥ó¥¯"
+msgstr "%sのパーマリンク"
 
 #: include/custom_functions.php:429
@@ -458,56 +466,56 @@
 #, php-format
 msgid "views :%d"
-msgstr "±ÜÍ÷¿ô :%d"
+msgstr "閲覧数 :%d"
 
 #: include/custom_functions.php:608
 msgid "Main"
-msgstr "¥á¥¤¥ó"
+msgstr "メイン"
 
 #: include/custom_functions.php:611
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Category"
-msgstr "¥«¥Æ¥´¥ê¡¼ &#8216;%s&#8217; ¤Î¥¢¡¼¥«¥¤¥Ö"
+msgstr "カテゴリー &#8216;%s&#8217; のアーカイブ"
 
 #: include/custom_functions.php:614
 #, php-format
 msgid "Posts Tagged &#8216;%s&#8217;"
-msgstr "&#8216;%s&#8217; ¥¿¥°¤Î¤Ä¤¤¤Æ¤¤¤ëÅê¹Æ"
+msgstr "&#8216;%s&#8217; タグのついている投稿"
 
 #: include/custom_functions.php:617
 #, php-format
 msgid "Archive for %s|Daily archive page"
-msgstr "%s¤ÎÆüÊÌ¥¢¡¼¥«¥¤¥Ö"
+msgstr "%sの日別アーカイブ"
 
 #: include/custom_functions.php:617
 msgid "F jS, Y"
-msgstr "YÇ¯n·îjÆü"
+msgstr "Y年n月j日"
 
 #: include/custom_functions.php:619
 #, php-format
 msgid "Archive for %s|Monthly archive page"
-msgstr "%s¤Î·îÊÌ¥¢¡¼¥«¥¤¥Ö"
+msgstr "%sの月別アーカイブ"
 
 #: include/custom_functions.php:619
 msgid "F, Y"
-msgstr "YÇ¯n·î"
+msgstr "Y年n月"
 
 #: include/custom_functions.php:621
 #, php-format
 msgid "Archive for %s|Yearly archive page"
-msgstr "%s¤ÎÇ¯ÊÌ¥¢¡¼¥«¥¤¥Ö "
+msgstr "%sの年別アーカイブ "
 
 #: include/custom_functions.php:621
 msgid "Y"
-msgstr "YÇ¯"
+msgstr "Y年"
 
 #: include/custom_functions.php:624
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Author"
-msgstr "Åê¹Æ¼Ô &#8216;%s&#8217; ¤Î¥¢¡¼¥«¥¤¥Ö"
+msgstr "投稿者 &#8216;%s&#8217; のアーカイブ"
 
 #: include/custom_functions.php:627
 #, php-format
 msgid "Search Results of word &#8216;%s&#8217;"
-msgstr "&#8216;%s&#8217; ¤Î¸¡º÷·ë²Ì"
+msgstr "&#8216;%s&#8217; の検索結果"
 
 #: include/custom_functions.php:633
@@ -515,76 +523,76 @@
 #, php-format
 msgid "Article of %s"
-msgstr "%s¤Îµ­»ö"
+msgstr "%sの記事"
 
 #: include/custom_functions.php:657
 #, php-format
 msgid "From %1$s on site %2$s"
-msgstr "¥µ¥¤¥È %2$s ¤Î %1$s ¤è¤ê"
+msgstr "サイト %2$s の %1$s より"
 
 #: include/custom_functions.php:678
 msgid "No Trackback/Pingback"
-msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯¤Ï¤¢¤ê¤Þ¤»¤ó"
+msgstr "トラックバック・ピンバックはありません"
 
 #: include/custom_functions.php:679
 msgid "One Trackback/Pingback"
-msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ 1 ·ï"
+msgstr "トラックバック・ピンバック 1 件"
 
 #: include/custom_functions.php:680
 msgid "% TrackBack/Pingback"
-msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ % ·ï"
+msgstr "トラックバック・ピンバック % 件"
 
 #: include/dashboard_feed.php:19
 msgid "XPressME Integration Kit Blog"
-msgstr "XPressME Integration Kit ¥Ö¥í¥°"
+msgstr "XPressME Integration Kit ブログ"
 
 #: include/dashboard_feed.php:32
 msgid "XPressME Integration Kit Folum"
-msgstr "XPressME Integration Kit ¥Õ¥©¡¼¥é¥à"
+msgstr "XPressME Integration Kit フォーラム"
 
 #: include/dashboard_feed.php:92
 msgid "Unknown Feed"
-msgstr "ÉÔÌÀ¤Ê¥Õ¥£¡¼¥É"
+msgstr "不明なフィード"
 
 #: include/functions_for_wp_old.php:21
 msgid "<strong>ERROR</strong>: The password field is empty."
-msgstr "<strong>¥¨¥é¡¼</strong>: ¥Ñ¥¹¥ï¡¼¥É¤¬ÆþÎÏ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó."
+msgstr "<strong>エラー</strong>: パスワードが入力されていません."
 
 #: include/functions_for_wp_old.php:29
 msgid "<strong>ERROR</strong>: Invalid username."
-msgstr "<strong>¥¨¥é¡¼</strong>: ¥æ¡¼¥¶Ì¾¤¬°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹."
+msgstr "<strong>エラー</strong>: ユーザ名が異なっています."
 
 #: include/functions_for_wp_old.php:37
 msgid "<strong>ERROR</strong>: Incorrect password."
-msgstr "<strong>¥¨¥é¡¼</strong>: ¥Ñ¥¹¥ï¡¼¥É¤¬°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹."
+msgstr "<strong>エラー</strong>: パスワードが異なっています."
 
 #: include/pluggable-override.php:265
 #, php-format
 msgid "If the page does not automatically reload, please click <a href='%s'>here</a>"
-msgstr "¼«Æ°Åª¤Ë¥Ú¡¼¥¸¤¬ÆÉ¤ß¹þ¤Þ¤ì¤Ê¤¤¾ì¹ç¤Ï<a href='%s'>¤³¤Á¤é</a>¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤¡£"
+msgstr "自動的にページが読み込まれない場合は<a href='%s'>こちら</a>をクリックしてください。"
 
 #: include/xpress_common_functions.php:202
 msgid "Themes"
-msgstr "¥Æ¡¼¥Þ"
+msgstr "テーマ"
 
 #: include/xpress_common_functions.php:217
 msgid "Switch to XOOPS mode"
-msgstr "XOOPS¥â¡¼¥É¤ØÀÚÂØ"
+msgstr "XOOPSモードへ切替"
 
 #: include/xpress_common_functions.php:221
 #: include/xpress_common_functions.php:224
 msgid "Switch to WordPress mode"
-msgstr "WordPress¥â¡¼¥É¤ØÀÚÂØ"
+msgstr "WordPressモードへ切替"
 
 #~ msgid "more"
-#~ msgstr "Â³¤­¤òÆÉ¤à"
+#~ msgstr "続きを読む"
 #~ msgid "More Link Text (Is not displayed for the blank.)"
-#~ msgstr "More¥ê¥ó¥¯¥Æ¥­¥¹¥È¡Ê¥Ö¥é¥ó¥¯¤Î¾ì¹ç¥ê¥ó¥¯¤òÉ½¼¨¤·¤Þ¤»¤ó¡£¡Ë"
+#~ msgstr "Moreリンクテキスト（ブランクの場合リンクを表示しません。）"
 #~ msgid "Calendar"
-#~ msgstr "¥«¥ì¥ó¥À¡¼"
+#~ msgstr "カレンダー"
 #~ msgid "%1$s %2$s|Used as a calendar caption"
-#~ msgstr "%2$s Ç¯ %1$s|¥«¥ì¥ó¥À¡¼¤Î¥­¥ã¥×¥·¥ç¥ó¤Ë»È¤ï¤ì¤Þ¤¹"
+#~ msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます"
 #~ msgid "View posts for %1$s %2$s"
-#~ msgstr "%2$sÇ¯%1$s¤ÎÅê¹Æ¤òÉ½¼¨"
+#~ msgstr "%2$s年%1$sの投稿を表示"
 #~ msgid "XPressME Configuration Page"
-#~ msgstr "XPressME¤ÎÀßÄê¥Ú¡¼¥¸"
-
+#~ msgstr "XPressMEの設定ページ"
+
Index: branches/XPressME_MU/extras/for_wordpressme2011/ja_UTF/wp-content/plugins/xpressme/language/xpressme-ja_UTF.po
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/wp-content/plugins/xpressme/language/xpressme-ja_UTF.po	(revision 389)
+++ branches/XPressME_MU/extras/for_wordpressme2011/ja_UTF/wp-content/plugins/xpressme/language/xpressme-ja_UTF.po	(revision 406)
@@ -8,6 +8,6 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-07 15:54+0900\n"
-"PO-Revision-Date: 2009-09-09 14:13+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
+"PO-Revision-Date: 2009-10-07 10:42+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -56,8 +56,8 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
 msgstr "はい"
@@ -68,8 +68,8 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
 msgstr "いいえ"
@@ -165,284 +165,292 @@
 msgstr "XPressME Integration Kit Version %1$s が利用可能です ! サイト管理者に連絡してください。"
 
-#: xpressme_class.php:54
-#: xpressme_class.php:229
+#: xpressme_class.php:55
+#: xpressme_class.php:232
 msgid "Older Post"
 msgstr "前の投稿へ"
 
-#: xpressme_class.php:55
-#: xpressme_class.php:232
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
 msgstr "次の投稿へ"
 
-#: xpressme_class.php:57
-#: xpressme_class.php:235
+#: xpressme_class.php:58
+#: xpressme_class.php:238
 msgid "Older Entries"
 msgstr "前ページへ"
 
-#: xpressme_class.php:58
-#: xpressme_class.php:238
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
 msgstr "次ページへ"
 
-#: xpressme_class.php:72
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
 msgstr "この投稿の続きを読む &raquo;"
 
-#: xpressme_class.php:336
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
 msgstr "シングルポストナビの設定"
 
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
 msgstr "リンクの表示位置設定"
 
-#: xpressme_class.php:344
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
 msgstr "以前の記事へのリンクを左に、より新しい記事へのリンクを右に表示"
 
-#: xpressme_class.php:345
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
 msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示"
 
-#: xpressme_class.php:351
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
 msgstr "表示するリンクテキストを選択"
 
-#: xpressme_class.php:354
+#: xpressme_class.php:360
 msgid "Title of post"
 msgstr "投稿記事のタイトルを表示"
 
-#: xpressme_class.php:355
+#: xpressme_class.php:361
 msgid "Title of Navi"
 msgstr "ナビタイトルを表示"
 
-#: xpressme_class.php:361
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
 msgstr "古い記事へのナビタイトルを設定"
 
-#: xpressme_class.php:368
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
 msgstr "より新しい記事へのナビタイトルを設定"
 
-#: xpressme_class.php:381
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
 msgstr "ポストリストページナビの設定"
 
-#: xpressme_class.php:389
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
 msgstr "古いページへのリンクを左に、より新しいページへのリンクを右に表示"
 
-#: xpressme_class.php:390
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
 msgstr "より新しいページへのリンクを左に、古いページへのリンクを右に表示"
 
-#: xpressme_class.php:396
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
 msgstr "古いページへのナビタイトルを設定"
 
-#: xpressme_class.php:403
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
 msgstr "より新しいページへのナビタイトルを設定"
 
-#: xpressme_class.php:416
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
 msgstr "ダッシュボード　フィード表示設定"
 
-#: xpressme_class.php:422
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
 msgstr "XPressME Integration Kit ブログを表示する。"
 
-#: xpressme_class.php:433
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
 msgstr "XPressME Integration Kit フォーラムを表示する。"
 
-#: xpressme_class.php:450
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
 msgstr "ログイン時の権限設定"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
 msgstr "XOOPSグループ名"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "WordPress Role"
 msgstr "WordPressでの権限"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "Role is set at each login"
 msgstr "ログイン時、常に権限を更新する"
 
-#: xpressme_class.php:479
-#: xpressme_class.php:483
-#: xpressme_class.php:486
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
 msgid "Default Role of WordPress"
 msgstr "WordPressのデフォルト権限"
 
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:486
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
 msgstr "ユーザ登録しない"
 
-#: xpressme_class.php:518
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
 msgstr "WordPress MUはコメント統合できません。"
 
-#: xpressme_class.php:520
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
 msgstr "コメント統合しません。"
 
-#: xpressme_class.php:555
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
 msgstr "D3Forumとのコメント統合"
 
-#: xpressme_class.php:557
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
 msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。"
 
-#: xpressme_class.php:562
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
 msgstr "D3Forumの表示タイプを選択"
 
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
 msgstr "フラット"
 
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
 msgstr "スレッド"
 
-#: xpressme_class.php:571
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
 msgstr "D3Forumコメントの表示順を選択"
 
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
 msgstr "降順"
 
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
 msgstr "昇順"
 
-#: xpressme_class.php:580
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
 msgstr "D3Forumのコメント表示数"
 
-#: xpressme_class.php:583
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
 msgstr "WordPressコメントとD3Forumポスト間の一括転送（エクスポート・インポート）"
 
-#: xpressme_class.php:584
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
 msgstr "D3Forumへ一括エクスポート"
 
-#: xpressme_class.php:585
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
 msgstr "D3Forumから一括インポート"
 
-#: xpressme_class.php:598
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
 msgstr "記事抜粋の設定"
 
-#: xpressme_class.php:603
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
 msgstr "記事のアーカイブで抜粋表示を行いますか？"
 
-#: xpressme_class.php:610
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
 msgstr "ASCII文字が含まれる比率が設定された値より大きい場合、ASCII文字コンテンツと判断します。"
 
-#: xpressme_class.php:617
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
 msgstr "ASCIIコンテンツの抜粋単語数"
 
-#: xpressme_class.php:624
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
 msgstr "マルチバイトコンテンツの抜粋文字数"
 
-#: xpressme_class.php:631
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
 msgstr "抜粋されていないコンテンツを読むためのリンクに表示されるテキスト(空白の場合リンクを表示しません)"
 
-#: xpressme_class.php:638
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
 msgstr "more タグ (&lt;!--more--&gt;)のリンクに表示されるテキスト"
 
-#: xpressme_class.php:650
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
 msgstr "表示モード設定"
 
-#: xpressme_class.php:653
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
 msgstr "XPressMEの表示モードの選択"
 
-#: xpressme_class.php:658
+#: xpressme_class.php:664
 msgid "Xoops Mode"
 msgstr "XOOPSモード"
 
-#: xpressme_class.php:662
+#: xpressme_class.php:668
 msgid "WordPress Mode"
 msgstr "WordPressモード"
 
-#: xpressme_class.php:666
+#: xpressme_class.php:672
 msgid "User select"
 msgstr "ユーザによる選択"
 
-#: xpressme_class.php:676
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "XOOPSモードで使用するテーマを選択"
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "WordPressで選択したテーマを使う"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
 msgstr "ヘッダメタ　オプション"
 
-#: xpressme_class.php:681
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
 msgstr "ヘッダで使用するキーワードの選択"
 
-#: xpressme_class.php:686
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
 msgstr "XOOPSのキーワード"
 
-#: xpressme_class.php:689
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
 msgstr "WordPressのキーワード"
 
-#: xpressme_class.php:692
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
 msgstr "WordPressｊとXOOPSのキーワード"
 
-#: xpressme_class.php:698
+#: xpressme_class.php:722
 msgid "Select the Header Description."
 msgstr "ヘッダで使用するディスクリプション（説明）の選択"
 
-#: xpressme_class.php:703
+#: xpressme_class.php:727
 msgid "Xoops Description"
 msgstr "XOOPSのディスクリプション"
 
-#: xpressme_class.php:706
+#: xpressme_class.php:730
 msgid "WordPress Description"
 msgstr "WordPressのディスクリプション"
 
-#: xpressme_class.php:709
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
 msgstr "WordPressとXOOPSのディスクリプション"
 
-#: xpressme_class.php:715
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
 msgstr "ヘッダで使用するロボットインデックスの選択"
 
-#: xpressme_class.php:720
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
 msgstr "XOOPSのロボットインデックス"
 
-#: xpressme_class.php:723
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
 msgstr "WordPressのロボットインデックス"
 
-#: xpressme_class.php:752
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
Index: branches/XPressME_MU/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php
===================================================================
--- trunk/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php	(revision 406)
@@ -73,5 +73,5 @@
 
 /**
- * WordPress Localized Language, defaults to Japanese.
+ * WordPress Localized Language, defaults to English.
  *
  * Change this to localize WordPress.  A corresponding MO file for the chosen
@@ -83,5 +83,5 @@
  * define ('WPLANG', '');		// language support to English
  */
-define ('WPLANG', '');		// language support to Japanese
+define ('WPLANG', '');
 
 /* That's all, stop editing! Happy blogging. */
Index: branches/XPressME_MU/extras/xpress_i18n/german/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-de_DE.po
===================================================================
--- trunk/extras/xpress_i18n/german/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-de_DE.po	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/german/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-de_DE.po	(revision 406)
@@ -3,5 +3,5 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 14:10+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
 "PO-Revision-Date: \n"
 "Last-Translator: toemon <info@toemon.com>\n"
@@ -31,7 +31,6 @@
 
 #: xpressme.php:38
-#, fuzzy
 msgid "to Modules Admin"
-msgstr "zu XOOPS Admin"
+msgstr "to Modules Admin"
 
 #: xpressme.php:138
@@ -48,8 +47,8 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
 msgstr "JA"
@@ -60,8 +59,8 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
 msgstr "NEIN"
@@ -71,5 +70,5 @@
 #: xpressme.php:258
 msgid "Update Config"
-msgstr ""
+msgstr "Update Config"
 
 #: xpressme.php:156
@@ -77,375 +76,380 @@
 #: xpressme.php:259
 msgid "Preset Config"
-msgstr ""
+msgstr "Preset Config"
 
 #: xpressme.php:188
 msgid "XPressME Integration Setting"
-msgstr ""
+msgstr "XPressME Integration Setting"
 
 #: xpressme.php:193
 msgid "Media Upload Base Path"
-msgstr ""
+msgstr "Media Upload Base Path"
 
 #: xpressme.php:194
 msgid "Use XOOPS UPLOAD PATH"
-msgstr ""
+msgstr "Use XOOPS UPLOAD PATH"
 
 #: xpressme.php:195
 msgid "USE WordPress BASE_PATH"
-msgstr ""
+msgstr "USE WordPress BASE_PATH"
 
 #: xpressme.php:229
 msgid "XPressME Other Setting"
-msgstr ""
+msgstr "XPressME Other Setting"
 
 #: xpressme.php:234
 msgid "The change tracking of the post is preserved"
-msgstr ""
+msgstr "The change tracking of the post is preserved"
 
 #: xpressme.php:240
 msgid "Select Multi user mode"
-msgstr ""
+msgstr "Select Multi user mode"
 
 #: xpressme.php:245
 msgid "Is the posts author views counted?"
-msgstr ""
+msgstr "Is the posts author views counted?"
 
 #: xpressme.php:251
 msgid "Is SQL debugging window displayed?"
-msgstr ""
+msgstr "Is SQL debugging window displayed?"
 
 #: xpressme.php:275
 msgid "XPressME Upgrade"
-msgstr ""
+msgstr "XPressME Upgrade"
 
 #: xpressme.php:289
 #, php-format
 msgid "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
-msgstr ""
+msgstr "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
 
 #: xpressme.php:293
 msgid "There is a new version of XPressME Integration Kit available for upgrade"
-msgstr ""
+msgstr "There is a new version of XPressME Integration Kit available for upgrade"
 
 #: xpressme.php:296
 #, php-format
 msgid "You can upgrade to version %s download the package and install it manually:"
-msgstr ""
+msgstr "You can upgrade to version %s download the package and install it manually:"
 
 #: xpressme.php:299
 #, php-format
 msgid "Download %s"
-msgstr ""
+msgstr "Download %s"
 
 #: xpressme.php:302
 msgid "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
-msgstr ""
+msgstr "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
 
 #: xpressme.php:306
 #, php-format
 msgid "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
-msgstr ""
+msgstr "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
 
 #: xpressme.php:425
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
-msgstr ""
+msgstr "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
 
 #: xpressme.php:427
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
-msgstr ""
-
-#: xpressme_class.php:54
-#: xpressme_class.php:229
-msgid "Older Post"
-msgstr ""
+msgstr "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
 
 #: xpressme_class.php:55
 #: xpressme_class.php:232
+msgid "Older Post"
+msgstr "Older Post"
+
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
-msgstr ""
-
-#: xpressme_class.php:57
-#: xpressme_class.php:235
-msgid "Older Entries"
-msgstr ""
+msgstr "Newer Post"
 
 #: xpressme_class.php:58
 #: xpressme_class.php:238
+msgid "Older Entries"
+msgstr "Older Entries"
+
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
-msgstr ""
-
-#: xpressme_class.php:72
+msgstr "Newer Entries"
+
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
-msgstr ""
-
-#: xpressme_class.php:336
+msgstr "Read the rest of this entry &raquo;"
+
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
-msgstr ""
-
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+msgstr "Single Post Navi Setting"
+
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
-msgstr ""
-
-#: xpressme_class.php:344
+msgstr "Adjustment of Navi link display position"
+
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:345
+msgstr "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
+
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:351
+msgstr "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
+
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
-msgstr ""
-
-#: xpressme_class.php:354
+msgstr "Select Display name of PostNavi Link"
+
+#: xpressme_class.php:360
 msgid "Title of post"
-msgstr ""
-
-#: xpressme_class.php:355
+msgstr "Title of post"
+
+#: xpressme_class.php:361
 msgid "Title of Navi"
-msgstr ""
-
-#: xpressme_class.php:361
+msgstr "Title of Navi"
+
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
-msgstr ""
-
-#: xpressme_class.php:368
+msgstr "Display Navi Title of Old Post Link"
+
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
-msgstr ""
-
-#: xpressme_class.php:381
+msgstr "Display Navi Title of Newer Post Link"
+
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
-msgstr ""
-
-#: xpressme_class.php:389
+msgstr "Posts List Page Navi Setting"
+
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:390
+msgstr "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
+
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:396
+msgstr "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
+
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
-msgstr ""
-
-#: xpressme_class.php:403
+msgstr "Display Navi Title of Old Page Link"
+
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
-msgstr ""
-
-#: xpressme_class.php:416
-#, fuzzy
+msgstr "Display Navi Title of Newer Page Link"
+
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
-msgstr "XPressME Display Setting"
-
-#: xpressme_class.php:422
-#, fuzzy
+msgstr "Dashboard feed Display Setting"
+
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
-msgstr "XPressME Configuration Page"
-
-#: xpressme_class.php:433
-#, fuzzy
+msgstr "Display XPressMe Integration Kit Blog"
+
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
-msgstr "XPressME Configuration Page"
-
-#: xpressme_class.php:450
+msgstr "Display XPressMe Integration Kit Forum"
+
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "Role Setting at Login"
+
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "XOOPS Groupe"
+
+#: xpressme_class.php:459
 msgid "WordPress Role"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "WordPress Role"
+
+#: xpressme_class.php:459
 msgid "Role is set at each login"
-msgstr ""
-
-#: xpressme_class.php:479
-#: xpressme_class.php:483
+msgstr "Role is set at each login"
+
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
+msgid "Default Role of WordPress"
+msgstr "Default Role of WordPress"
+
 #: xpressme_class.php:486
-msgid "Default Role of WordPress"
-msgstr ""
-
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
-msgstr ""
-
-#: xpressme_class.php:518
+msgstr "Group User Doesn't Register"
+
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
-msgstr ""
-
-#: xpressme_class.php:520
+msgstr "WordPress MU cannot integrate the comments."
+
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
-msgstr ""
-
-#: xpressme_class.php:555
+msgstr "Do Not Comment Integration."
+
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
-msgstr ""
-
-#: xpressme_class.php:557
+msgstr "Comment integration with D3Forum"
+
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
-msgstr ""
-
-#: xpressme_class.php:562
+msgstr "Select the forum of D3Forum that does the comment integration from the following lists."
+
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
-msgstr ""
-
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+msgstr "Select the Type of display of D3Forum comment."
+
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
-msgstr ""
-
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+msgstr "Flat"
+
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
-msgstr ""
-
-#: xpressme_class.php:571
+msgstr "Threaded"
+
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
-msgstr ""
-
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+msgstr "Select the order of display of D3Forum comment."
+
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
-msgstr ""
-
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+msgstr "DESC"
+
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
-msgstr ""
-
-#: xpressme_class.php:580
+msgstr "ASC"
+
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
-msgstr ""
-
-#: xpressme_class.php:583
+msgstr "Number of displays of D3Forum comments."
+
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
-msgstr ""
-
-#: xpressme_class.php:584
+msgstr "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
+
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
-msgstr ""
-
-#: xpressme_class.php:585
+msgstr "Export to D3Forum"
+
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
-msgstr ""
-
-#: xpressme_class.php:598
+msgstr "Import from D3Forum"
+
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
-msgstr ""
-
-#: xpressme_class.php:603
+msgstr "Contents Excerpt Setting"
+
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
-msgstr ""
-
-#: xpressme_class.php:610
+msgstr "Is the excerpt display done with the archive of contents?"
+
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
-msgstr ""
-
-#: xpressme_class.php:617
+msgstr "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
+
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
-msgstr ""
-
-#: xpressme_class.php:624
+msgstr "Excerpt length of word for ASCII contents"
+
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
-msgstr ""
-
-#: xpressme_class.php:631
+msgstr "Excerpt length of character for multibyte contents"
+
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
-msgstr ""
-
-#: xpressme_class.php:638
+msgstr "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
+
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
-msgstr ""
-
-#: xpressme_class.php:650
+msgstr "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
+
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
-msgstr ""
-
-#: xpressme_class.php:653
+msgstr "Display Mode Setting"
+
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
-msgstr ""
-
-#: xpressme_class.php:658
+msgstr "Select the XPressME Display Mode."
+
+#: xpressme_class.php:664
 msgid "Xoops Mode"
-msgstr ""
-
-#: xpressme_class.php:662
+msgstr "Xoops Mode"
+
+#: xpressme_class.php:668
 msgid "WordPress Mode"
-msgstr ""
-
-#: xpressme_class.php:666
+msgstr "WordPress Mode"
+
+#: xpressme_class.php:672
 msgid "User select"
-msgstr ""
-
-#: xpressme_class.php:676
+msgstr "User select"
+
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "Select the theme used in the XOOPS Mode."
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "Use WordPress Selected Themes"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
-msgstr ""
-
-#: xpressme_class.php:681
+msgstr "Header Meta Option"
+
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
-msgstr ""
-
-#: xpressme_class.php:686
+msgstr "Select the Header keyword."
+
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
-msgstr ""
-
-#: xpressme_class.php:689
+msgstr "Xoops KeyWord"
+
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
-msgstr ""
-
-#: xpressme_class.php:692
+msgstr "WordPress KeyWord"
+
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
-msgstr ""
-
-#: xpressme_class.php:698
+msgstr "WordPress & Xoops KeyWord"
+
+#: xpressme_class.php:722
 msgid "Select the Header Description."
-msgstr ""
-
-#: xpressme_class.php:703
+msgstr "Select the Header Description."
+
+#: xpressme_class.php:727
 msgid "Xoops Description"
-msgstr ""
-
-#: xpressme_class.php:706
+msgstr "Xoops Description"
+
+#: xpressme_class.php:730
 msgid "WordPress Description"
-msgstr ""
-
-#: xpressme_class.php:709
+msgstr "WordPress Description"
+
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
-msgstr ""
-
-#: xpressme_class.php:715
+msgstr "WordPress & Xoops Description"
+
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
-msgstr ""
-
-#: xpressme_class.php:720
+msgstr "Select the Header Robots Index."
+
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
-msgstr ""
-
-#: xpressme_class.php:723
+msgstr "Xoops Robots Index"
+
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
-msgstr ""
-
-#: xpressme_class.php:752
+msgstr "WordPress Robots Index"
+
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
-msgstr ""
+msgstr "Unable to create directory %s. Is its parent directory writable by the server?"
 
 #: include/custom_functions.php:74
 #, php-format
 msgid "Permanent Link to %s"
-msgstr ""
+msgstr "Permanent Link to %s"
 
 #: include/custom_functions.php:429
@@ -453,56 +457,56 @@
 #, php-format
 msgid "views :%d"
-msgstr ""
+msgstr "views :%d"
 
 #: include/custom_functions.php:608
 msgid "Main"
-msgstr ""
+msgstr "Main"
 
 #: include/custom_functions.php:611
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Category"
-msgstr ""
+msgstr "Archive for the &#8216;%s&#8217; Category"
 
 #: include/custom_functions.php:614
 #, php-format
 msgid "Posts Tagged &#8216;%s&#8217;"
-msgstr ""
+msgstr "Posts Tagged &#8216;%s&#8217;"
 
 #: include/custom_functions.php:617
 #, php-format
 msgid "Archive for %s|Daily archive page"
-msgstr ""
+msgstr "Archive for %s|Daily archive page"
 
 #: include/custom_functions.php:617
 msgid "F jS, Y"
-msgstr ""
+msgstr "F jS, Y"
 
 #: include/custom_functions.php:619
 #, php-format
 msgid "Archive for %s|Monthly archive page"
-msgstr ""
+msgstr "Archive for %s|Monthly archive page"
 
 #: include/custom_functions.php:619
 msgid "F, Y"
-msgstr ""
+msgstr "F, Y"
 
 #: include/custom_functions.php:621
 #, php-format
 msgid "Archive for %s|Yearly archive page"
-msgstr ""
+msgstr "Archive for %s|Yearly archive page"
 
 #: include/custom_functions.php:621
 msgid "Y"
-msgstr ""
+msgstr "Y"
 
 #: include/custom_functions.php:624
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Author"
-msgstr ""
+msgstr "Archive for the &#8216;%s&#8217; Author"
 
 #: include/custom_functions.php:627
 #, php-format
 msgid "Search Results of word &#8216;%s&#8217;"
-msgstr ""
+msgstr "Search Results of word &#8216;%s&#8217;"
 
 #: include/custom_functions.php:633
@@ -510,14 +514,14 @@
 #, php-format
 msgid "Article of %s"
-msgstr ""
+msgstr "Article of %s"
 
 #: include/custom_functions.php:657
 #, php-format
 msgid "From %1$s on site %2$s"
-msgstr ""
+msgstr "From %1$s on site %2$s"
 
 #: include/custom_functions.php:678
 msgid "No Trackback/Pingback"
-msgstr ""
+msgstr "No Trackback/Pingback"
 
 #: include/custom_functions.php:679
@@ -530,16 +534,14 @@
 
 #: include/dashboard_feed.php:19
-#, fuzzy
 msgid "XPressME Integration Kit Blog"
-msgstr "XPressME Configuration Page"
+msgstr "XPressME Integration Kit Blog"
 
 #: include/dashboard_feed.php:32
-#, fuzzy
 msgid "XPressME Integration Kit Folum"
-msgstr "XPressME Configuration Page"
+msgstr "XPressME Integration Kit Folum"
 
 #: include/dashboard_feed.php:92
 msgid "Unknown Feed"
-msgstr ""
+msgstr "Unknown Feed"
 
 #: include/functions_for_wp_old.php:21
Index: branches/XPressME_MU/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-fa_IR.po
===================================================================
--- trunk/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-fa_IR.po	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-fa_IR.po	(revision 406)
@@ -3,10 +3,10 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 14:10+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
 "PO-Revision-Date: \n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
@@ -17,29 +17,29 @@
 #: xpressme.php:33
 msgid "Display Settings"
-msgstr ""
+msgstr "Display Settings"
 
 #: xpressme.php:34
 msgid "Integration Settings"
-msgstr ""
+msgstr "Integration Settings"
 
 #: xpressme.php:35
 msgid "Other Settings"
-msgstr ""
+msgstr "Other Settings"
 
 #: xpressme.php:37
 msgid "Upgrade"
-msgstr ""
+msgstr "Upgrade"
 
 #: xpressme.php:38
 msgid "to Modules Admin"
-msgstr ""
+msgstr "to Modules Admin"
 
 #: xpressme.php:138
 msgid "XPressME Display Setting"
-msgstr ""
+msgstr "XPressME Display Setting"
 
 #: xpressme.php:144
 msgid "Thema Sidebar Display"
-msgstr ""
+msgstr "Thema Sidebar Display"
 
 #: xpressme.php:145
@@ -48,10 +48,10 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
-msgstr ""
+msgstr "YES"
 
 #: xpressme.php:146
@@ -60,10 +60,10 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
-msgstr ""
+msgstr "NO"
 
 #: xpressme.php:155
@@ -71,5 +71,5 @@
 #: xpressme.php:258
 msgid "Update Config"
-msgstr ""
+msgstr "Update Config"
 
 #: xpressme.php:156
@@ -77,372 +77,380 @@
 #: xpressme.php:259
 msgid "Preset Config"
-msgstr ""
+msgstr "Preset Config"
 
 #: xpressme.php:188
 msgid "XPressME Integration Setting"
-msgstr ""
+msgstr "XPressME Integration Setting"
 
 #: xpressme.php:193
 msgid "Media Upload Base Path"
-msgstr ""
+msgstr "Media Upload Base Path"
 
 #: xpressme.php:194
 msgid "Use XOOPS UPLOAD PATH"
-msgstr ""
+msgstr "Use XOOPS UPLOAD PATH"
 
 #: xpressme.php:195
 msgid "USE WordPress BASE_PATH"
-msgstr ""
+msgstr "USE WordPress BASE_PATH"
 
 #: xpressme.php:229
 msgid "XPressME Other Setting"
-msgstr ""
+msgstr "XPressME Other Setting"
 
 #: xpressme.php:234
 msgid "The change tracking of the post is preserved"
-msgstr ""
+msgstr "The change tracking of the post is preserved"
 
 #: xpressme.php:240
 msgid "Select Multi user mode"
-msgstr ""
+msgstr "Select Multi user mode"
 
 #: xpressme.php:245
 msgid "Is the posts author views counted?"
-msgstr ""
+msgstr "Is the posts author views counted?"
 
 #: xpressme.php:251
 msgid "Is SQL debugging window displayed?"
-msgstr ""
+msgstr "Is SQL debugging window displayed?"
 
 #: xpressme.php:275
 msgid "XPressME Upgrade"
-msgstr ""
+msgstr "XPressME Upgrade"
 
 #: xpressme.php:289
 #, php-format
 msgid "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
-msgstr ""
+msgstr "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
 
 #: xpressme.php:293
 msgid "There is a new version of XPressME Integration Kit available for upgrade"
-msgstr ""
+msgstr "There is a new version of XPressME Integration Kit available for upgrade"
 
 #: xpressme.php:296
 #, php-format
 msgid "You can upgrade to version %s download the package and install it manually:"
-msgstr ""
+msgstr "You can upgrade to version %s download the package and install it manually:"
 
 #: xpressme.php:299
 #, php-format
 msgid "Download %s"
-msgstr ""
+msgstr "Download %s"
 
 #: xpressme.php:302
 msgid "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
-msgstr ""
+msgstr "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
 
 #: xpressme.php:306
 #, php-format
 msgid "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
-msgstr ""
+msgstr "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
 
 #: xpressme.php:425
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
-msgstr ""
+msgstr "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
 
 #: xpressme.php:427
 #, php-format
 msgid "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
-msgstr ""
-
-#: xpressme_class.php:54
-#: xpressme_class.php:229
-msgid "Older Post"
-msgstr ""
+msgstr "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
 
 #: xpressme_class.php:55
 #: xpressme_class.php:232
+msgid "Older Post"
+msgstr "Older Post"
+
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
-msgstr ""
-
-#: xpressme_class.php:57
-#: xpressme_class.php:235
-msgid "Older Entries"
-msgstr ""
+msgstr "Newer Post"
 
 #: xpressme_class.php:58
 #: xpressme_class.php:238
+msgid "Older Entries"
+msgstr "Older Entries"
+
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
-msgstr ""
-
-#: xpressme_class.php:72
+msgstr "Newer Entries"
+
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
-msgstr ""
-
-#: xpressme_class.php:336
+msgstr "Read the rest of this entry &raquo;"
+
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
-msgstr ""
-
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+msgstr "Single Post Navi Setting"
+
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
-msgstr ""
-
-#: xpressme_class.php:344
+msgstr "Adjustment of Navi link display position"
+
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:345
+msgstr "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
+
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:351
+msgstr "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
+
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
-msgstr ""
-
-#: xpressme_class.php:354
+msgstr "Select Display name of PostNavi Link"
+
+#: xpressme_class.php:360
 msgid "Title of post"
-msgstr ""
-
-#: xpressme_class.php:355
+msgstr "Title of post"
+
+#: xpressme_class.php:361
 msgid "Title of Navi"
-msgstr ""
-
-#: xpressme_class.php:361
+msgstr "Title of Navi"
+
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
-msgstr ""
-
-#: xpressme_class.php:368
+msgstr "Display Navi Title of Old Post Link"
+
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
-msgstr ""
-
-#: xpressme_class.php:381
+msgstr "Display Navi Title of Newer Post Link"
+
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
-msgstr ""
-
-#: xpressme_class.php:389
+msgstr "Posts List Page Navi Setting"
+
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:390
+msgstr "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
+
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
-msgstr ""
-
-#: xpressme_class.php:396
+msgstr "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
+
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
-msgstr ""
-
-#: xpressme_class.php:403
+msgstr "Display Navi Title of Old Page Link"
+
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
-msgstr ""
-
-#: xpressme_class.php:416
+msgstr "Display Navi Title of Newer Page Link"
+
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
-msgstr ""
-
-#: xpressme_class.php:422
+msgstr "Dashboard feed Display Setting"
+
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
-msgstr ""
-
-#: xpressme_class.php:433
+msgstr "Display XPressMe Integration Kit Blog"
+
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
-msgstr ""
-
-#: xpressme_class.php:450
+msgstr "Display XPressMe Integration Kit Forum"
+
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "Role Setting at Login"
+
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "XOOPS Groupe"
+
+#: xpressme_class.php:459
 msgid "WordPress Role"
-msgstr ""
-
-#: xpressme_class.php:453
+msgstr "WordPress Role"
+
+#: xpressme_class.php:459
 msgid "Role is set at each login"
-msgstr ""
-
-#: xpressme_class.php:479
-#: xpressme_class.php:483
+msgstr "Role is set at each login"
+
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
+msgid "Default Role of WordPress"
+msgstr "Default Role of WordPress"
+
 #: xpressme_class.php:486
-msgid "Default Role of WordPress"
-msgstr ""
-
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
-msgstr ""
-
-#: xpressme_class.php:518
+msgstr "Group User Doesn't Register"
+
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
-msgstr ""
-
-#: xpressme_class.php:520
+msgstr "WordPress MU cannot integrate the comments."
+
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
-msgstr ""
-
-#: xpressme_class.php:555
+msgstr "Do Not Comment Integration."
+
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
-msgstr ""
-
-#: xpressme_class.php:557
+msgstr "Comment integration with D3Forum"
+
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
-msgstr ""
-
-#: xpressme_class.php:562
+msgstr "Select the forum of D3Forum that does the comment integration from the following lists."
+
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
-msgstr ""
-
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+msgstr "Select the Type of display of D3Forum comment."
+
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
-msgstr ""
-
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+msgstr "Flat"
+
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
-msgstr ""
-
-#: xpressme_class.php:571
+msgstr "Threaded"
+
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
-msgstr ""
-
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+msgstr "Select the order of display of D3Forum comment."
+
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
-msgstr ""
-
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+msgstr "DESC"
+
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
-msgstr ""
-
-#: xpressme_class.php:580
+msgstr "ASC"
+
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
-msgstr ""
-
-#: xpressme_class.php:583
+msgstr "Number of displays of D3Forum comments."
+
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
-msgstr ""
-
-#: xpressme_class.php:584
+msgstr "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
+
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
-msgstr ""
-
-#: xpressme_class.php:585
+msgstr "Export to D3Forum"
+
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
-msgstr ""
-
-#: xpressme_class.php:598
+msgstr "Import from D3Forum"
+
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
-msgstr ""
-
-#: xpressme_class.php:603
+msgstr "Contents Excerpt Setting"
+
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
-msgstr ""
-
-#: xpressme_class.php:610
+msgstr "Is the excerpt display done with the archive of contents?"
+
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
-msgstr ""
-
-#: xpressme_class.php:617
+msgstr "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
+
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
-msgstr ""
-
-#: xpressme_class.php:624
+msgstr "Excerpt length of word for ASCII contents"
+
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
-msgstr ""
-
-#: xpressme_class.php:631
+msgstr "Excerpt length of character for multibyte contents"
+
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
-msgstr ""
-
-#: xpressme_class.php:638
+msgstr "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
+
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
-msgstr ""
-
-#: xpressme_class.php:650
+msgstr "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
+
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
-msgstr ""
-
-#: xpressme_class.php:653
+msgstr "Display Mode Setting"
+
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
-msgstr ""
-
-#: xpressme_class.php:658
+msgstr "Select the XPressME Display Mode."
+
+#: xpressme_class.php:664
 msgid "Xoops Mode"
-msgstr ""
-
-#: xpressme_class.php:662
+msgstr "Xoops Mode"
+
+#: xpressme_class.php:668
 msgid "WordPress Mode"
-msgstr ""
-
-#: xpressme_class.php:666
+msgstr "WordPress Mode"
+
+#: xpressme_class.php:672
 msgid "User select"
-msgstr ""
-
-#: xpressme_class.php:676
+msgstr "User select"
+
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "Select the theme used in the XOOPS Mode."
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "Use WordPress Selected Themes"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
-msgstr ""
-
-#: xpressme_class.php:681
+msgstr "Header Meta Option"
+
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
-msgstr ""
-
-#: xpressme_class.php:686
+msgstr "Select the Header keyword."
+
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
-msgstr ""
-
-#: xpressme_class.php:689
+msgstr "Xoops KeyWord"
+
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
-msgstr ""
-
-#: xpressme_class.php:692
+msgstr "WordPress KeyWord"
+
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
-msgstr ""
-
-#: xpressme_class.php:698
+msgstr "WordPress & Xoops KeyWord"
+
+#: xpressme_class.php:722
 msgid "Select the Header Description."
-msgstr ""
-
-#: xpressme_class.php:703
+msgstr "Select the Header Description."
+
+#: xpressme_class.php:727
 msgid "Xoops Description"
-msgstr ""
-
-#: xpressme_class.php:706
+msgstr "Xoops Description"
+
+#: xpressme_class.php:730
 msgid "WordPress Description"
-msgstr ""
-
-#: xpressme_class.php:709
+msgstr "WordPress Description"
+
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
-msgstr ""
-
-#: xpressme_class.php:715
+msgstr "WordPress & Xoops Description"
+
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
-msgstr ""
-
-#: xpressme_class.php:720
+msgstr "Select the Header Robots Index."
+
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
-msgstr ""
-
-#: xpressme_class.php:723
+msgstr "Xoops Robots Index"
+
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
-msgstr ""
-
-#: xpressme_class.php:752
+msgstr "WordPress Robots Index"
+
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
-msgstr ""
+msgstr "Unable to create directory %s. Is its parent directory writable by the server?"
 
 #: include/custom_functions.php:74
 #, php-format
 msgid "Permanent Link to %s"
-msgstr ""
+msgstr "Permanent Link to %s"
 
 #: include/custom_functions.php:429
@@ -450,56 +458,56 @@
 #, php-format
 msgid "views :%d"
-msgstr ""
+msgstr "views :%d"
 
 #: include/custom_functions.php:608
 msgid "Main"
-msgstr ""
+msgstr "Main"
 
 #: include/custom_functions.php:611
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Category"
-msgstr ""
+msgstr "Archive for the &#8216;%s&#8217; Category"
 
 #: include/custom_functions.php:614
 #, php-format
 msgid "Posts Tagged &#8216;%s&#8217;"
-msgstr ""
+msgstr "Posts Tagged &#8216;%s&#8217;"
 
 #: include/custom_functions.php:617
 #, php-format
 msgid "Archive for %s|Daily archive page"
-msgstr ""
+msgstr "Archive for %s|Daily archive page"
 
 #: include/custom_functions.php:617
 msgid "F jS, Y"
-msgstr ""
+msgstr "F jS, Y"
 
 #: include/custom_functions.php:619
 #, php-format
 msgid "Archive for %s|Monthly archive page"
-msgstr ""
+msgstr "Archive for %s|Monthly archive page"
 
 #: include/custom_functions.php:619
 msgid "F, Y"
-msgstr ""
+msgstr "F, Y"
 
 #: include/custom_functions.php:621
 #, php-format
 msgid "Archive for %s|Yearly archive page"
-msgstr ""
+msgstr "Archive for %s|Yearly archive page"
 
 #: include/custom_functions.php:621
 msgid "Y"
-msgstr ""
+msgstr "Y"
 
 #: include/custom_functions.php:624
 #, php-format
 msgid "Archive for the &#8216;%s&#8217; Author"
-msgstr ""
+msgstr "Archive for the &#8216;%s&#8217; Author"
 
 #: include/custom_functions.php:627
 #, php-format
 msgid "Search Results of word &#8216;%s&#8217;"
-msgstr ""
+msgstr "Search Results of word &#8216;%s&#8217;"
 
 #: include/custom_functions.php:633
@@ -507,81 +515,63 @@
 #, php-format
 msgid "Article of %s"
-msgstr ""
+msgstr "Article of %s"
 
 #: include/custom_functions.php:657
 #, php-format
 msgid "From %1$s on site %2$s"
-msgstr ""
+msgstr "From %1$s on site %2$s"
 
 #: include/custom_functions.php:678
 msgid "No Trackback/Pingback"
-msgstr ""
+msgstr "No Trackback/Pingback"
 
 #: include/custom_functions.php:679
 msgid "One Trackback/Pingback"
-msgstr ""
+msgstr "One Trackback/Pingback"
 
 #: include/custom_functions.php:680
 msgid "% TrackBack/Pingback"
-msgstr ""
+msgstr "% TrackBack/Pingback"
 
 #: include/dashboard_feed.php:19
 msgid "XPressME Integration Kit Blog"
-msgstr ""
+msgstr "XPressME Integration Kit Blog"
 
 #: include/dashboard_feed.php:32
 msgid "XPressME Integration Kit Folum"
-msgstr ""
+msgstr "XPressME Integration Kit Folum"
 
 #: include/dashboard_feed.php:92
 msgid "Unknown Feed"
-msgstr ""
+msgstr "Unknown Feed"
 
 #: include/functions_for_wp_old.php:21
 msgid "<strong>ERROR</strong>: The password field is empty."
-msgstr ""
+msgstr "<strong>ERROR</strong>: The password field is empty."
 
 #: include/functions_for_wp_old.php:29
 msgid "<strong>ERROR</strong>: Invalid username."
-msgstr ""
+msgstr "<strong>ERROR</strong>: Invalid username."
 
 #: include/functions_for_wp_old.php:37
 msgid "<strong>ERROR</strong>: Incorrect password."
-msgstr ""
+msgstr "<strong>ERROR</strong>: Incorrect password."
 
 #: include/pluggable-override.php:265
 #, php-format
 msgid "If the page does not automatically reload, please click <a href='%s'>here</a>"
-msgstr ""
+msgstr "If the page does not automatically reload, please click <a href='%s'>here</a>"
 
 #: include/xpress_common_functions.php:202
 msgid "Themes"
-msgstr ""
+msgstr "Themes"
 
 #: include/xpress_common_functions.php:217
 msgid "Switch to XOOPS mode"
-msgstr ""
+msgstr "Switch to XOOPS mode"
 
 #: include/xpress_common_functions.php:221
 #: include/xpress_common_functions.php:224
 msgid "Switch to WordPress mode"
-msgstr ""
-
-msgid "more"
-msgstr ""
-
-msgid "More Link Text (Is not displayed for the blank.)"
-msgstr ""
-
-msgid "Calendar"
-msgstr ""
-
-msgid "%1$s %2$s|Used as a calendar caption"
-msgstr ""
-
-msgid "View posts for %1$s %2$s"
-msgstr ""
-
-msgid "XPressME Configuration Page"
-msgstr ""
-
+msgstr "Switch to WordPress mode"
+
Index: branches/XPressME_MU/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/themes/xpress_default/fa_IR.po
===================================================================
--- trunk/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/themes/xpress_default/fa_IR.po	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/persian/xpressme_modules_root/wp-content/themes/xpress_default/fa_IR.po	(revision 406)
@@ -17,13 +17,13 @@
 #: 404.php:22
 msgid "Error 404 - Not Found"
-msgstr ""
+msgstr "خطای ۴۰۴ - پیدا نشد"
 
 #: archives.php:20
 msgid "Archives by Month:"
-msgstr ""
+msgstr "بایگانی ماهیانه:"
 
 #: archives.php:25
 msgid "Archives by Subject:"
-msgstr ""
+msgstr "بایگانی موضوعی:"
 
 #: comments-popup.php:9
@@ -34,9 +34,9 @@
 #: comments-popup.php:22
 msgid "Comments"
-msgstr ""
+msgstr "دیدگاه‌ها"
 
 #: comments-popup.php:24
 msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
-msgstr ""
+msgstr "<abbr title=\"Really Simple Syndication\">RSS</abbr> برای دیدگاه‌های‌ این نوشته."
 
 #: comments-popup.php:27
@@ -47,13 +47,13 @@
 #: comments-popup.php:45
 msgid "Comment"
-msgstr ""
+msgstr "دیدگاه"
 
 #: comments-popup.php:45
 msgid "Trackback"
-msgstr ""
+msgstr "بازتاب"
 
 #: comments-popup.php:45
 msgid "Pingback"
-msgstr ""
+msgstr "بازتاب"
 
 #: comments-popup.php:45
@@ -64,9 +64,9 @@
 #: comments-popup.php:51
 msgid "No comments yet."
-msgstr ""
+msgstr "بدون دیدگاه"
 
 #: comments-popup.php:55
 msgid "Leave a comment"
-msgstr ""
+msgstr "دیدگاهی بنویسید"
 
 #: comments-popup.php:56
@@ -83,9 +83,9 @@
 #: comments.php:92
 msgid "Name"
-msgstr ""
+msgstr "نام"
 
 #: comments-popup.php:71
 msgid "E-mail"
-msgstr ""
+msgstr "پست الکترونیک"
 
 #: comments-popup.php:76
@@ -95,17 +95,17 @@
 #: comments-popup.php:81
 msgid "Your Comment"
-msgstr ""
+msgstr "دیدگاه شما"
 
 #: comments-popup.php:87
 msgid "Say It!"
-msgstr ""
+msgstr "بفرست!"
 
 #: comments-popup.php:92
 msgid "Sorry, the comment form is closed at this time."
-msgstr ""
+msgstr "ببخشید، نمی‌توانید دیدگاهی بنویسید"
 
 #: comments-popup.php:97
 msgid "Close this window."
-msgstr ""
+msgstr "بستن پنجره"
 
 #: comments-popup.php:105
@@ -116,20 +116,20 @@
 #: comments.php:6
 msgid "This post is password protected. Enter the password to view comments."
-msgstr ""
+msgstr "این نوشته رمزدار است. برای دیدن دیدگاه‌ها٬ رمز را بنویسید."
 
 #: comments.php:17
 #: comments.php:38
 msgid "No Responses"
-msgstr ""
+msgstr "بی‌دیدگاه"
 
 #: comments.php:17
 #: comments.php:38
 msgid "One Response"
-msgstr ""
+msgstr "یک دیدگاه"
 
 #: comments.php:17
 #: comments.php:38
 msgid "% Responses"
-msgstr ""
+msgstr "% دیدگاه"
 
 #: comments.php:17
@@ -137,5 +137,5 @@
 #, php-format
 msgid "to &#8220;%s&#8221;"
-msgstr ""
+msgstr "برای &#8220;%s&#8221;"
 
 #: comments.php:33
@@ -151,10 +151,10 @@
 #: comments.php:45
 msgid "Your comment is awaiting moderation."
-msgstr ""
+msgstr "دیدگاه شما باید بررسی شود."
 
 #: comments.php:48
 #, php-format
 msgid "%1$s at %2$s"
-msgstr ""
+msgstr "%1$s در t %2$s"
 
 #: comments.php:48
@@ -164,5 +164,5 @@
 #: comments.php:70
 msgid "Leave a Reply"
-msgstr ""
+msgstr "دیدگاهی بنویسید"
 
 #: comments.php:70
@@ -174,5 +174,5 @@
 #, php-format
 msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
-msgstr ""
+msgstr "ببخشید، برای نوشتن دیدگاه باید <a href=\"%s\">وارد بشوید</a>"
 
 #: comments.php:86
@@ -185,10 +185,10 @@
 #: comments.php:88
 msgid "Log out of this account"
-msgstr ""
+msgstr "بیرون رفتن از این حساب"
 
 #: comments.php:86
 #: comments.php:88
 msgid "Log out &raquo;"
-msgstr ""
+msgstr "خروج &raquo;"
 
 #: comments.php:92
@@ -199,9 +199,9 @@
 #: comments.php:95
 msgid "Mail (will not be published)"
-msgstr ""
+msgstr "پست الکترونیک (پنهان می‌شود)"
 
 #: comments.php:98
 msgid "Website"
-msgstr ""
+msgstr "سایت"
 
 #: comments.php:103
@@ -212,5 +212,5 @@
 #: comments.php:107
 msgid "Submit Comment"
-msgstr ""
+msgstr "فرستادن دیدگاه"
 
 #: footer.php:5
@@ -221,9 +221,9 @@
 #: footer.php:5
 msgid "Entries (RSS)"
-msgstr ""
+msgstr "RSS پیگیری نوشته‌ها با"
 
 #: footer.php:5
 msgid "Comments (RSS)"
-msgstr ""
+msgstr "RSS پیگیری دیدگاه‌ها"
 
 #: footer.php:7
@@ -239,36 +239,36 @@
 #: functions.php:149
 msgid "Customize Header"
-msgstr ""
+msgstr "دل‌خواه کردن سربرگ"
 
 #: functions.php:149
 #: functions.php:363
 msgid "Header Image and Color"
-msgstr ""
+msgstr "رنگ و تصویر سربرگ"
 
 #: functions.php:162
 msgid "Close Color Picker"
-msgstr ""
+msgstr "بستن گزینشگر رنگ"
 
 #: functions.php:359
 msgid "Options saved."
-msgstr ""
+msgstr "گزینه‌ها به‌روز شد."
 
 #: functions.php:376
 #: functions.php:383
 msgid "Save"
-msgstr ""
+msgstr "به‌روز رسانی"
 
 #: functions.php:377
 msgid "Font Color:"
-msgstr ""
+msgstr "رنگ قلم:"
 
 #: functions.php:377
 #, php-format
 msgid "Any CSS color (%s or %s or %s)"
-msgstr ""
+msgstr "هر رنگ CSS (%s یا %s یا %s)"
 
 #: functions.php:378
 msgid "Upper Color:"
-msgstr ""
+msgstr "رنگ بالایی:"
 
 #: functions.php:378
@@ -276,65 +276,65 @@
 #, php-format
 msgid "HEX only (%s or %s)"
-msgstr ""
+msgstr "فقط HEX (%s یا %s)"
 
 #: functions.php:379
 msgid "Lower Color:"
-msgstr ""
+msgstr "رنگ پایینی:"
 
 #: functions.php:381
 msgid "Toggle Text"
-msgstr ""
+msgstr "تغییر وضعیت نمایش نوشته"
 
 #: functions.php:382
 msgid "Use Defaults"
-msgstr ""
+msgstr "به کارگیری پیش‌فرض‌ها"
 
 #: functions.php:391
 msgid "Font Color"
-msgstr ""
+msgstr "رنگ نوشته"
 
 #: functions.php:392
 msgid "Upper Color"
-msgstr ""
+msgstr "رنگ بالایی"
 
 #: functions.php:393
 msgid "Lower Color"
-msgstr ""
+msgstr "رنگ پایینی"
 
 #: functions.php:394
 msgid "Revert"
-msgstr ""
+msgstr "معکوس کردن"
 
 #: functions.php:395
 msgid "Advanced"
-msgstr ""
+msgstr "پیشرفته"
 
 #: functions.php:402
 msgid "Update Header &raquo;"
-msgstr ""
+msgstr "به‌روز کردن سربرگ &raquo;"
 
 #: functions.php:408
 msgid "Font Color (CSS):"
-msgstr ""
+msgstr "رنگ قلم (CSS)"
 
 #: functions.php:409
 msgid "Upper Color (HEX):"
-msgstr ""
+msgstr "رنگ بالایی (HEX)"
 
 #: functions.php:410
 msgid "Lower Color (HEX):"
-msgstr ""
+msgstr "رنگ پایینی (HEX)"
 
 #: functions.php:411
 msgid "Select Default Colors"
-msgstr ""
+msgstr "گزینش رنگ‌های پیش‌فرض"
 
 #: functions.php:412
 msgid "Toggle Text Display"
-msgstr ""
+msgstr "تغییر وضعیت نمایش متن"
 
 #: header.php:9
 msgid "&raquo; Blog Archive"
-msgstr ""
+msgstr "&raquo; بایگانی وب‌نامه (وبلاگ)"
 
 #: header.php:14
@@ -364,10 +364,10 @@
 #: single.php:32
 msgid "Read the rest of this entry &raquo;"
-msgstr ""
+msgstr "ادامه‌ی متن  &raquo;"
 
 #: image.php:15
 #: page.php:29
 msgid "Pages:"
-msgstr ""
+msgstr "برگه‌ها"
 
 #: image.php:25
@@ -379,38 +379,38 @@
 #: sidebar.php:24
 msgid "l, F jS, Y"
-msgstr ""
+msgstr "l, j F Y"
 
 #: image.php:27
 #, php-format
 msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
-msgstr ""
+msgstr "می‌توانید دیدگاه‌های این نوشته را پیگیری کنید با <a href='%s'>RSS 2.0</a> خوراک"
 
 #: image.php:31
 #, php-format
 msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
-msgstr ""
+msgstr "می‌توانید <a href=\"#respond\">دیدگاهتان را بنویسید</a>, or <a href=\"%s\" rel=\"trackback\">بازتاب</a> از سایت خودتان"
 
 #: image.php:35
 #, php-format
 msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
-msgstr ""
+msgstr "نمی‌توانید دیدگاهی بنویسید، اما می‌توانید <a href=\"%s\" rel=\"trackback\">trackback</a> از سایت خودتان"
 
 #: image.php:39
 msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
-msgstr ""
+msgstr "شما می‌توانید دیدگاه بنویسید. اما نمی‌توانید بازتاب بفرستید."
 
 #: image.php:43
 msgid "Both comments and pings are currently closed."
-msgstr ""
+msgstr "دیدگاه‌ها و بازتاب‌ها هم اکنون بسته شده‌اند."
 
 #: image.php:45
 #: page.php:34
 msgid "Edit this entry."
-msgstr ""
+msgstr "ویرایش این نوشته."
 
 #: image.php:58
 #: single.php:94
 msgid "Sorry, no posts matched your criteria."
-msgstr ""
+msgstr "ببخشید، نوشته‌ای برای جست‌وجوی شما پیدا نشد."
 
 #: index.php:29
@@ -420,5 +420,5 @@
 #, php-format
 msgid "Permanent Link to %s"
-msgstr ""
+msgstr "پیوند پایدار به  %s"
 
 #: index.php:44
@@ -432,25 +432,25 @@
 #, php-format
 msgid "Posted in %s"
-msgstr ""
+msgstr "نوشته شده در %s"
 
 #: index.php:49
 #: single.php:47
 msgid "Edit"
-msgstr ""
+msgstr "ویرایش"
 
 #: index.php:50
 #: single.php:48
 msgid "No Comments &#187;"
-msgstr ""
+msgstr "بدون دیدگاه &#187;"
 
 #: index.php:50
 #: single.php:48
 msgid "1 Comment &#187;"
-msgstr ""
+msgstr "۱ دیدگاه &#187;"
 
 #: index.php:50
 #: single.php:48
 msgid "% Comments &#187;"
-msgstr ""
+msgstr "% دیدگاه &#187;"
 
 #: index.php:50
@@ -461,17 +461,17 @@
 #: index.php:68
 msgid "Not Found"
-msgstr ""
+msgstr "پیدا نشد"
 
 #: index.php:69
 msgid "Sorry, but you are looking for something that isn&#8217;t here."
-msgstr ""
+msgstr "ببخشید، اما انگار شما واسه چیزی اینجا رو گشتین که وجود نداره."
 
 #: links.php:18
 msgid "Links:"
-msgstr ""
+msgstr "پیوندها:"
 
 #: page.php:27
 msgid "Read the rest of this page &raquo;"
-msgstr ""
+msgstr "خواندن ادامه‌ی این برگه  &raquo;"
 
 #: searchform.php:2
@@ -481,28 +481,28 @@
 #: searchform.php:8
 msgid "Search"
-msgstr ""
+msgstr "جست‌وجو"
 
 #: sidebar.php:10
 msgid "Author"
-msgstr ""
+msgstr "نویسنده"
 
 #: sidebar.php:21
 #, php-format
 msgid "You are currently browsing the archives for the %s category."
-msgstr ""
+msgstr "شما در حال مرور بایگانی %s دسته‌بندی."
 
 #: sidebar.php:24
 #, php-format
 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
-msgstr ""
+msgstr "شما در حال مرور <a href=\"%1$s/\">%2$s</a> بایگانی وب‌نامه (وبلاگ) برای روز %3$s."
 
 #: sidebar.php:27
 #, php-format
 msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
-msgstr ""
+msgstr "شما در حال مرور <a href=\"%1$s/\">%2$s</a> بایگانی وب‌نامه (وبلاگ) برای %3$s."
 
 #: sidebar.php:27
 msgid "F, Y"
-msgstr ""
+msgstr "F"
 
 #: sidebar.php:30
@@ -523,18 +523,18 @@
 #: sidebar.php:42
 msgid "Pages"
-msgstr ""
+msgstr "برگه‌ها"
 
 #: sidebar.php:44
 msgid "Archives"
-msgstr ""
+msgstr "بایگانی"
 
 #: sidebar.php:51
 #: sidebar.php:53
 msgid "Categories"
-msgstr ""
+msgstr "دسته‌ها"
 
 #: sidebar.php:62
 msgid "Meta"
-msgstr ""
+msgstr "دیگر"
 
 #: sidebar.php:66
@@ -655,5 +655,5 @@
 #: blocks/recent_posts_list_block_theme.php:68
 msgid "Tags:"
-msgstr ""
+msgstr "برچسب‌ها: "
 
 #: blocks/popular_posts_block_theme.php:151
@@ -661,5 +661,5 @@
 #: blocks/recent_posts_list_block_theme.php:97
 msgid "Comments (0)"
-msgstr ""
+msgstr "(۰) دیدگاه"
 
 #: blocks/popular_posts_block_theme.php:151
@@ -667,5 +667,5 @@
 #: blocks/recent_posts_list_block_theme.php:97
 msgid "Comments (1)"
-msgstr ""
+msgstr "۱ دیدگاه"
 
 #: blocks/popular_posts_block_theme.php:151
@@ -673,10 +673,10 @@
 #: blocks/recent_posts_list_block_theme.php:97
 msgid "Comments (%)"
-msgstr ""
+msgstr "(%) دیدگاه"
 
 #: blocks/recent_comments_block_theme.php:81
 #, php-format
 msgid "%1$s on %2$s"
-msgstr ""
+msgstr "%1$s در %2$s"
 
 msgid "views: %d"
@@ -684,11 +684,11 @@
 
 msgid "more"
-msgstr ""
+msgstr "دنباله"
 
 msgid "F jS, Y"
-msgstr ""
+msgstr "l, j F Y"
 
 msgid "Calendar"
-msgstr ""
+msgstr "تقویم"
 
 msgid "%1$s %2$s|Used as a calendar caption"
@@ -696,4 +696,4 @@
 
 msgid "View posts for %1$s %2$s"
-msgstr ""
-
+msgstr "نمایش نوشته‌ها برای %1$s %2$s"
+
Index: branches/XPressME_MU/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-pt_BR.po
===================================================================
--- trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-pt_BR.po	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-pt_BR.po	(revision 406)
@@ -7,6 +7,6 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 14:10+0900\n"
-"PO-Revision-Date: 2009-09-09 14:17+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
+"PO-Revision-Date: 2009-10-07 10:26+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: Marcelo Yuji Himoro <yuji@yuji.ws>\n"
@@ -54,8 +54,8 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
 msgstr "Sim"
@@ -66,8 +66,8 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
 msgstr "Não"
@@ -163,284 +163,292 @@
 msgstr "O XPressME Integration Kit Versão %1$s está disponível! Por favor, avise o administrador do site."
 
-#: xpressme_class.php:54
-#: xpressme_class.php:229
+#: xpressme_class.php:55
+#: xpressme_class.php:232
 msgid "Older Post"
 msgstr "Ir para o post anterior"
 
-#: xpressme_class.php:55
-#: xpressme_class.php:232
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
 msgstr "Ir para o post seguinte"
 
-#: xpressme_class.php:57
-#: xpressme_class.php:235
+#: xpressme_class.php:58
+#: xpressme_class.php:238
 msgid "Older Entries"
 msgstr "Ir para a página anterior"
 
-#: xpressme_class.php:58
-#: xpressme_class.php:238
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
 msgstr "Ir para a página seguinte"
 
-#: xpressme_class.php:72
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
 msgstr "Continuar lendo este post &raquo;"
 
-#: xpressme_class.php:336
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
 msgstr "Post individual"
 
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
 msgstr "Posicionamento de links"
 
-#: xpressme_class.php:344
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
 msgstr "Exibir link para o post anterior à esquerda, e para o seguinte à direita"
 
-#: xpressme_class.php:345
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
 msgstr "Exibir link para o post seguinte à esquerda, e para o anterior à direita"
 
-#: xpressme_class.php:351
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
 msgstr "Selecione o texto do link a ser exibido"
 
-#: xpressme_class.php:354
+#: xpressme_class.php:360
 msgid "Title of post"
 msgstr "Título do post"
 
-#: xpressme_class.php:355
+#: xpressme_class.php:361
 msgid "Title of Navi"
 msgstr "Personalizado"
 
-#: xpressme_class.php:361
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
 msgstr "Texto do link para o post anterior"
 
-#: xpressme_class.php:368
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
 msgstr "Texto do link para o post seguinte"
 
-#: xpressme_class.php:381
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
 msgstr "Lista de posts"
 
-#: xpressme_class.php:389
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
 msgstr "Exibir link para o página anterior à esquerda, e para o seguinte à direita"
 
-#: xpressme_class.php:390
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
 msgstr "Exibir link para o página seguinte à esquerda, e para o anterior à direita"
 
-#: xpressme_class.php:396
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
 msgstr "Texto do link para o página anterior"
 
-#: xpressme_class.php:403
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
 msgstr "Texto do link para o página seguinte anterior"
 
-#: xpressme_class.php:416
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
 msgstr "Painel feed Exibição Colocação"
 
-#: xpressme_class.php:422
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
 msgstr "Exibição XPressME Integration Kit Blog"
 
-#: xpressme_class.php:433
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
 msgstr "Exibição XPressME Integration Kit Folum"
 
-#: xpressme_class.php:450
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
 msgstr "Permissões"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
 msgstr "Grupo do XOOPS"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "WordPress Role"
 msgstr "Permissão do WordPress"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "Role is set at each login"
 msgstr "Atualizar permissões ao fazer login"
 
-#: xpressme_class.php:479
-#: xpressme_class.php:483
-#: xpressme_class.php:486
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
 msgid "Default Role of WordPress"
 msgstr "Permissão padrão do WordPress"
 
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:486
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
 msgstr "Não cadastrar usuários"
 
-#: xpressme_class.php:518
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
 msgstr "Não é possível integrar comentários no WordPress MU."
 
-#: xpressme_class.php:520
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
 msgstr "Não integrar comentários"
 
-#: xpressme_class.php:555
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
 msgstr "Integração de comentários com o D3Forum"
 
-#: xpressme_class.php:557
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
 msgstr "Selecione o fórum do D3Forum com o qual os comentários serão integrados:"
 
-#: xpressme_class.php:562
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
 msgstr "Selecione o tipo de exibição dos comentários do D3Forum:"
 
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
 msgstr "Plano"
 
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
 msgstr "Aninhado"
 
-#: xpressme_class.php:571
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
 msgstr "Selecione a ordem de exibição dos comentários do D3Forum:"
 
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
 msgstr "Crescente"
 
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
 msgstr "Decrescente"
 
-#: xpressme_class.php:580
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
 msgstr "Número de comentários do D3Fórum a serem exibidos:"
 
-#: xpressme_class.php:583
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
 msgstr "Importar/exportar comentários entre o WordPress e o D3Forum"
 
-#: xpressme_class.php:584
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
 msgstr "Exportar para o D3Forum"
 
-#: xpressme_class.php:585
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
 msgstr "Importar para o D3Forum"
 
-#: xpressme_class.php:598
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
 msgstr "Excerto"
 
-#: xpressme_class.php:603
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
 msgstr "Exibir excertos nos arquivos?"
 
-#: xpressme_class.php:610
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
 msgstr "Quando um excerto contiver mais caracteres ASCII do que o valor definido, ele será tratado como ASCII."
 
-#: xpressme_class.php:617
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
 msgstr "N° de caracteres para excerto de conteúdo ASCII"
 
-#: xpressme_class.php:624
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
 msgstr "N° de caracteres para excerto de conteúdo multi-byte"
 
-#: xpressme_class.php:631
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
 msgstr "Texto do link para o texto completo do post (deixe em branco para não exibir)"
 
-#: xpressme_class.php:638
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
 msgstr "Texto do link para posts com a tag &lt;!--more--&gt;:"
 
-#: xpressme_class.php:650
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
 msgstr "Modo de exibição"
 
-#: xpressme_class.php:653
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
 msgstr "Selecione o modo de exibição do XPressME"
 
-#: xpressme_class.php:658
+#: xpressme_class.php:664
 msgid "Xoops Mode"
 msgstr "XOOPS"
 
-#: xpressme_class.php:662
+#: xpressme_class.php:668
 msgid "WordPress Mode"
 msgstr "WordPress"
 
-#: xpressme_class.php:666
+#: xpressme_class.php:672
 msgid "User select"
 msgstr "Selecionar usuário"
 
-#: xpressme_class.php:676
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "Selecione o tema usado no Modo de XOOPS."
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "Uso WordPress Selected Temas"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
 msgstr "Meta Header"
 
-#: xpressme_class.php:681
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
 msgstr "Selecione as palavras-chave a serem utilizadas:"
 
-#: xpressme_class.php:686
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
 msgstr "XOOPS"
 
-#: xpressme_class.php:689
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
 msgstr "WordPress"
 
-#: xpressme_class.php:692
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
 msgstr "WordPress e XOOPS"
 
-#: xpressme_class.php:698
+#: xpressme_class.php:722
 msgid "Select the Header Description."
 msgstr "Selecione a descrição a ser utilizada:"
 
-#: xpressme_class.php:703
+#: xpressme_class.php:727
 msgid "Xoops Description"
 msgstr "XOOPS"
 
-#: xpressme_class.php:706
+#: xpressme_class.php:730
 msgid "WordPress Description"
 msgstr "WordPress"
 
-#: xpressme_class.php:709
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
 msgstr "WordPress e XOOPS"
 
-#: xpressme_class.php:715
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
 msgstr "Selecione o robô de indexação a ser utilizado no cabeçalho:"
 
-#: xpressme_class.php:720
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
 msgstr "XOOPS"
 
-#: xpressme_class.php:723
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
 msgstr "WordPress"
 
-#: xpressme_class.php:752
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
Index: branches/XPressME_MU/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php
===================================================================
--- trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php	(revision 406)
@@ -73,5 +73,5 @@
 
 /**
- * WordPress Localized Language, defaults to Japanese.
+ * WordPress Localized Language, defaults to English.
  *
  * Change this to localize WordPress.  A corresponding MO file for the chosen
@@ -83,5 +83,5 @@
  * define ('WPLANG', '');		// language support to English
  */
-define ('WPLANG', '');		// language support to Japanese
+define ('WPLANG', '');
 
 /* That's all, stop editing! Happy blogging. */
Index: branches/XPressME_MU/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot
===================================================================
--- trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot	(revision 389)
+++ branches/XPressME_MU/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot	(revision 406)
@@ -8,5 +8,5 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 14:10+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
@@ -50,8 +50,8 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
 msgstr ""
@@ -62,8 +62,8 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
 msgstr ""
@@ -159,284 +159,292 @@
 msgstr ""
 
-#: xpressme_class.php:54
-#: xpressme_class.php:229
-msgid "Older Post"
-msgstr ""
-
 #: xpressme_class.php:55
 #: xpressme_class.php:232
+msgid "Older Post"
+msgstr ""
+
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
-msgstr ""
-
-#: xpressme_class.php:57
-#: xpressme_class.php:235
-msgid "Older Entries"
 msgstr ""
 
 #: xpressme_class.php:58
 #: xpressme_class.php:238
+msgid "Older Entries"
+msgstr ""
+
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
 msgstr ""
 
-#: xpressme_class.php:72
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
 msgstr ""
 
-#: xpressme_class.php:336
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
 msgstr ""
 
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
 msgstr ""
 
-#: xpressme_class.php:344
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
 msgstr ""
 
-#: xpressme_class.php:345
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
 msgstr ""
 
-#: xpressme_class.php:351
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
 msgstr ""
 
-#: xpressme_class.php:354
+#: xpressme_class.php:360
 msgid "Title of post"
 msgstr ""
 
-#: xpressme_class.php:355
+#: xpressme_class.php:361
 msgid "Title of Navi"
 msgstr ""
 
-#: xpressme_class.php:361
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
 msgstr ""
 
-#: xpressme_class.php:368
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
 msgstr ""
 
-#: xpressme_class.php:381
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
 msgstr ""
 
-#: xpressme_class.php:389
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
 msgstr ""
 
-#: xpressme_class.php:390
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
 msgstr ""
 
-#: xpressme_class.php:396
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
 msgstr ""
 
-#: xpressme_class.php:403
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
 msgstr ""
 
-#: xpressme_class.php:416
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
 msgstr ""
 
-#: xpressme_class.php:422
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
 msgstr ""
 
-#: xpressme_class.php:433
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
 msgstr ""
 
-#: xpressme_class.php:450
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
 msgstr ""
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
 msgstr ""
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "WordPress Role"
 msgstr ""
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "Role is set at each login"
 msgstr ""
 
-#: xpressme_class.php:479
-#: xpressme_class.php:483
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
+msgid "Default Role of WordPress"
+msgstr ""
+
 #: xpressme_class.php:486
-msgid "Default Role of WordPress"
-msgstr ""
-
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
 msgstr ""
 
-#: xpressme_class.php:518
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
 msgstr ""
 
-#: xpressme_class.php:520
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
 msgstr ""
 
-#: xpressme_class.php:555
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
 msgstr ""
 
-#: xpressme_class.php:557
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
 msgstr ""
 
-#: xpressme_class.php:562
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
 msgstr ""
 
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
 msgstr ""
 
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
 msgstr ""
 
-#: xpressme_class.php:571
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
 msgstr ""
 
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
 msgstr ""
 
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
 msgstr ""
 
-#: xpressme_class.php:580
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
 msgstr ""
 
-#: xpressme_class.php:583
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
 msgstr ""
 
-#: xpressme_class.php:584
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
 msgstr ""
 
-#: xpressme_class.php:585
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
 msgstr ""
 
-#: xpressme_class.php:598
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
 msgstr ""
 
-#: xpressme_class.php:603
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
 msgstr ""
 
-#: xpressme_class.php:610
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
 msgstr ""
 
-#: xpressme_class.php:617
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
 msgstr ""
 
-#: xpressme_class.php:624
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
 msgstr ""
 
-#: xpressme_class.php:631
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
 msgstr ""
 
-#: xpressme_class.php:638
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
 msgstr ""
 
-#: xpressme_class.php:650
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
 msgstr ""
 
-#: xpressme_class.php:653
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
 msgstr ""
 
-#: xpressme_class.php:658
+#: xpressme_class.php:664
 msgid "Xoops Mode"
 msgstr ""
 
-#: xpressme_class.php:662
+#: xpressme_class.php:668
 msgid "WordPress Mode"
 msgstr ""
 
-#: xpressme_class.php:666
+#: xpressme_class.php:672
 msgid "User select"
 msgstr ""
 
-#: xpressme_class.php:676
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr ""
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr ""
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
 msgstr ""
 
-#: xpressme_class.php:681
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
 msgstr ""
 
-#: xpressme_class.php:686
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
 msgstr ""
 
-#: xpressme_class.php:689
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
 msgstr ""
 
-#: xpressme_class.php:692
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
 msgstr ""
 
-#: xpressme_class.php:698
+#: xpressme_class.php:722
 msgid "Select the Header Description."
 msgstr ""
 
-#: xpressme_class.php:703
+#: xpressme_class.php:727
 msgid "Xoops Description"
 msgstr ""
 
-#: xpressme_class.php:706
+#: xpressme_class.php:730
 msgid "WordPress Description"
 msgstr ""
 
-#: xpressme_class.php:709
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
 msgstr ""
 
-#: xpressme_class.php:715
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
 msgstr ""
 
-#: xpressme_class.php:720
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
 msgstr ""
 
-#: xpressme_class.php:723
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
 msgstr ""
 
-#: xpressme_class.php:752
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
Index: branches/XPressME_MU/xpressme_integration_kit/admin/index.php
===================================================================
--- trunk/xpressme_integration_kit/admin/index.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/admin/index.php	(revision 406)
@@ -169,5 +169,7 @@
 		echo "SERVER:  ". $_SERVER['SERVER_SOFTWARE']. "<br />\n";
 		echo "PHP Version:   " . phpversion() . "<br />\n";
-		echo 'libxml Version:  ' . LIBXML_DOTTED_VERSION . "<br />\n";
+		echo 'libxml Version:  ';
+		if (defined('LIBXML_DOTTED_VERSION')) echo LIBXML_DOTTED_VERSION ; else echo "Can't detect.";
+		echo "<br />\n";;
 		echo "MySQL Version:   " . mysql_get_server_info() . "</text><br />";
 		echo "XOOPS Version:   " . XOOPS_VERSION . "</text><br />";
@@ -233,5 +235,7 @@
 		echo "<label>" . "<strong>SERVER:</strong>" . ":</label><text>" . $_SERVER['SERVER_SOFTWARE'] . "</text><br />";
 		echo "<label>" . "<strong>PHP Version:</strong>" . ":</label><text>" . phpversion() . "</text><br />";
-		echo "<label>" . "<strong>libxml Version:</strong>" . ":</label><text>" . LIBXML_DOTTED_VERSION . "</text><br />";
+		echo "<label>" . "<strong>libxml Version:</strong>" . ":</label><text>";
+		if (defined('LIBXML_DOTTED_VERSION')) echo LIBXML_DOTTED_VERSION ; else echo "Can't detect.";
+		echo "</text><br />";
 		echo "<label>" . "<strong>MySQL Version:</strong>" . ":</label><text>" . mysql_get_server_info() . "</text><br />";
 		echo "<label>" . "<strong>XOOPS Version:</strong>" . ":</label><text>" . XOOPS_VERSION . "</text><br />";
Index: branches/XPressME_MU/xpressme_integration_kit/include/oninstall.php
===================================================================
--- trunk/xpressme_integration_kit/include/oninstall.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/include/oninstall.php	(revision 406)
@@ -49,4 +49,6 @@
 		
 	define("WP_INSTALLING", true);
+	define('WP_FIRST_INSTALL', true); // For WPMU2.8
+	
 	$site_url= XOOPS_URL."/modules/".$mydirname;
 	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
Index: branches/XPressME_MU/xpressme_integration_kit/include/xpress_block_render.php
===================================================================
--- trunk/xpressme_integration_kit/include/xpress_block_render.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/include/xpress_block_render.php	(revision 406)
@@ -206,5 +206,13 @@
 		global $xoops_db;
 		$mid = get_xpress_modid();
-		$sql = "SELECT bid,options,func_file FROM " . get_xoops_prefix() . "newblocks WHERE mid = $mid AND visible = 1";
+		
+		// It is a block that needs cache arranged outside the module. 
+		// Only the block arranged outside the module is detected here.
+		$newblocks = get_xoops_prefix() . "newblocks";
+		$block_module_link = get_xoops_prefix(). "block_module_link";
+		$sql  = "SELECT * FROM $newblocks LEFT JOIN $block_module_link ON {$newblocks}.bid = {$block_module_link}.block_id ";
+		$sql .= "WHERE {$newblocks}.mid = $mid AND {$newblocks}.visible = 1 AND {$block_module_link}.module_id != $mid ";
+		$sql .= "GROUP BY {$newblocks}.bid";
+
 		$blocks = $xoops_db->get_results($sql);
 		require_once get_xpress_dir_path() . '/include/xpress_block_render.php';
Index: branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php	(revision 406)
@@ -585,7 +585,7 @@
 	
 	if (xpress_is_wp_version('>=','2.1')){
-		$output = '<a href="'. get_xpress_url() . '/wp-admin/post-new.php' . '">' . $link_title . '</a>';
-	} else {
-		$output = '<a href="'. get_xpress_url() . '/wp-admin/post.php' . '">' . $link_title . '</a>';
+		$output = '<a href="'. get_bloginfo('url') . '/wp-admin/post-new.php' . '">' . $link_title . '</a>';
+	} else {
+		$output = '<a href="'. get_bloginfo('url') . '/wp-admin/post.php' . '">' . $link_title . '</a>';
 	}	
 	if ($echo)
Index: branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/language/xpressme-ja.po
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/language/xpressme-ja.po	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/language/xpressme-ja.po	(revision 406)
@@ -8,6 +8,6 @@
 "Project-Id-Version: XPressME Plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-09-09 14:10+0900\n"
-"PO-Revision-Date: 2009-09-09 14:11+0900\n"
+"POT-Creation-Date: 2009-10-06 21:59+0900\n"
+"PO-Revision-Date: 2009-10-06 22:00+0900\n"
 "Last-Translator: toemon <info@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -56,8 +56,8 @@
 #: xpressme.php:246
 #: xpressme.php:252
-#: xpressme_class.php:277
-#: xpressme_class.php:293
-#: xpressme_class.php:425
-#: xpressme_class.php:436
+#: xpressme_class.php:283
+#: xpressme_class.php:299
+#: xpressme_class.php:431
+#: xpressme_class.php:442
 msgid "YES"
 msgstr "はい"
@@ -68,8 +68,8 @@
 #: xpressme.php:247
 #: xpressme.php:253
-#: xpressme_class.php:278
-#: xpressme_class.php:294
-#: xpressme_class.php:426
-#: xpressme_class.php:437
+#: xpressme_class.php:284
+#: xpressme_class.php:300
+#: xpressme_class.php:432
+#: xpressme_class.php:443
 msgid "NO"
 msgstr "いいえ"
@@ -165,284 +165,292 @@
 msgstr "XPressME Integration Kit Version %1$s が利用可能です ! サイト管理者に連絡してください。"
 
-#: xpressme_class.php:54
-#: xpressme_class.php:229
+#: xpressme_class.php:55
+#: xpressme_class.php:232
 msgid "Older Post"
 msgstr "前の投稿へ"
 
-#: xpressme_class.php:55
-#: xpressme_class.php:232
+#: xpressme_class.php:56
+#: xpressme_class.php:235
 msgid "Newer Post"
 msgstr "次の投稿へ"
 
-#: xpressme_class.php:57
-#: xpressme_class.php:235
+#: xpressme_class.php:58
+#: xpressme_class.php:238
 msgid "Older Entries"
 msgstr "前ページへ"
 
-#: xpressme_class.php:58
-#: xpressme_class.php:238
+#: xpressme_class.php:59
+#: xpressme_class.php:241
 msgid "Newer Entries"
 msgstr "次ページへ"
 
-#: xpressme_class.php:72
 #: xpressme_class.php:73
-#: xpressme_class.php:241
+#: xpressme_class.php:74
+#: xpressme_class.php:244
 msgid "Read the rest of this entry &raquo;"
 msgstr "この投稿の続きを読む &raquo;"
 
-#: xpressme_class.php:336
+#: xpressme_class.php:342
 msgid "Single Post Navi Setting"
 msgstr "シングルポストナビの設定"
 
-#: xpressme_class.php:341
-#: xpressme_class.php:386
+#: xpressme_class.php:347
+#: xpressme_class.php:392
 msgid "Adjustment of Navi link display position"
 msgstr "リンクの表示位置設定"
 
-#: xpressme_class.php:344
+#: xpressme_class.php:350
 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
 msgstr "以前の記事へのリンクを左に、より新しい記事へのリンクを右に表示"
 
-#: xpressme_class.php:345
+#: xpressme_class.php:351
 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
 msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示"
 
-#: xpressme_class.php:351
+#: xpressme_class.php:357
 msgid "Select Display name of PostNavi Link"
 msgstr "表示するリンクテキストを選択"
 
-#: xpressme_class.php:354
+#: xpressme_class.php:360
 msgid "Title of post"
 msgstr "投稿記事のタイトルを表示"
 
-#: xpressme_class.php:355
+#: xpressme_class.php:361
 msgid "Title of Navi"
 msgstr "ナビタイトルを表示"
 
-#: xpressme_class.php:361
+#: xpressme_class.php:367
 msgid "Display Navi Title of Old Post Link"
 msgstr "古い記事へのナビタイトルを設定"
 
-#: xpressme_class.php:368
+#: xpressme_class.php:374
 msgid "Display Navi Title of Newer Post Link"
 msgstr "より新しい記事へのナビタイトルを設定"
 
-#: xpressme_class.php:381
+#: xpressme_class.php:387
 msgid "Posts List Page Navi Setting"
 msgstr "ポストリストページナビの設定"
 
-#: xpressme_class.php:389
+#: xpressme_class.php:395
 msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
 msgstr "古いページへのリンクを左に、より新しいページへのリンクを右に表示"
 
-#: xpressme_class.php:390
+#: xpressme_class.php:396
 msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
 msgstr "より新しいページへのリンクを左に、古いページへのリンクを右に表示"
 
-#: xpressme_class.php:396
+#: xpressme_class.php:402
 msgid "Display Navi Title of Old Page Link"
 msgstr "古いページへのナビタイトルを設定"
 
-#: xpressme_class.php:403
+#: xpressme_class.php:409
 msgid "Display Navi Title of Newer Page Link"
 msgstr "より新しいページへのナビタイトルを設定"
 
-#: xpressme_class.php:416
+#: xpressme_class.php:422
 msgid "Dashboard feed Display Setting"
 msgstr "ダッシュボード　フィード表示設定"
 
-#: xpressme_class.php:422
+#: xpressme_class.php:428
 msgid "Display XPressMe Integration Kit Blog"
 msgstr "XPressME Integration Kit ブログを表示する。"
 
-#: xpressme_class.php:433
+#: xpressme_class.php:439
 msgid "Display XPressMe Integration Kit Forum"
 msgstr "XPressME Integration Kit フォーラムを表示する。"
 
-#: xpressme_class.php:450
+#: xpressme_class.php:456
 msgid "Role Setting at Login"
 msgstr "ログイン時の権限設定"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "XOOPS Groupe"
 msgstr "XOOPSグループ名"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "WordPress Role"
 msgstr "WordPressでの権限"
 
-#: xpressme_class.php:453
+#: xpressme_class.php:459
 msgid "Role is set at each login"
 msgstr "ログイン時、常に権限を更新する"
 
-#: xpressme_class.php:479
-#: xpressme_class.php:483
-#: xpressme_class.php:486
+#: xpressme_class.php:485
+#: xpressme_class.php:489
+#: xpressme_class.php:492
 msgid "Default Role of WordPress"
 msgstr "WordPressのデフォルト権限"
 
-#: xpressme_class.php:480
-#: xpressme_class.php:484
-#: xpressme_class.php:487
+#: xpressme_class.php:486
+#: xpressme_class.php:490
+#: xpressme_class.php:493
 msgid "Group User Doesn't Register"
 msgstr "ユーザ登録しない"
 
-#: xpressme_class.php:518
+#: xpressme_class.php:524
 msgid "WordPress MU cannot integrate the comments."
 msgstr "WordPress MUはコメント統合できません。"
 
-#: xpressme_class.php:520
+#: xpressme_class.php:526
 msgid "Do Not Comment Integration."
 msgstr "コメント統合しません。"
 
-#: xpressme_class.php:555
+#: xpressme_class.php:561
 msgid "Comment integration with D3Forum"
 msgstr "D3Forumとのコメント統合"
 
-#: xpressme_class.php:557
+#: xpressme_class.php:563
 msgid "Select the forum of D3Forum that does the comment integration from the following lists."
 msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。"
 
-#: xpressme_class.php:562
+#: xpressme_class.php:568
 msgid "Select the Type of display of D3Forum comment."
 msgstr "D3Forumの表示タイプを選択"
 
-#: xpressme_class.php:564
-#: xpressme_class.php:567
+#: xpressme_class.php:570
+#: xpressme_class.php:573
 msgid "Flat"
 msgstr "フラット"
 
-#: xpressme_class.php:565
-#: xpressme_class.php:568
+#: xpressme_class.php:571
+#: xpressme_class.php:574
 msgid "Threaded"
 msgstr "スレッド"
 
-#: xpressme_class.php:571
+#: xpressme_class.php:577
 msgid "Select the order of display of D3Forum comment."
 msgstr "D3Forumコメントの表示順を選択"
 
-#: xpressme_class.php:573
-#: xpressme_class.php:576
+#: xpressme_class.php:579
+#: xpressme_class.php:582
 msgid "DESC"
 msgstr "降順"
 
-#: xpressme_class.php:574
-#: xpressme_class.php:577
+#: xpressme_class.php:580
+#: xpressme_class.php:583
 msgid "ASC"
 msgstr "昇順"
 
-#: xpressme_class.php:580
+#: xpressme_class.php:586
 msgid "Number of displays of D3Forum comments."
 msgstr "D3Forumのコメント表示数"
 
-#: xpressme_class.php:583
+#: xpressme_class.php:589
 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
 msgstr "WordPressコメントとD3Forumポスト間の一括転送（エクスポート・インポート）"
 
-#: xpressme_class.php:584
+#: xpressme_class.php:590
 msgid "Export to D3Forum"
 msgstr "D3Forumへ一括エクスポート"
 
-#: xpressme_class.php:585
+#: xpressme_class.php:591
 msgid "Import from D3Forum"
 msgstr "D3Forumから一括インポート"
 
-#: xpressme_class.php:598
+#: xpressme_class.php:604
 msgid "Contents Excerpt Setting"
 msgstr "記事抜粋の設定"
 
-#: xpressme_class.php:603
+#: xpressme_class.php:609
 msgid "Is the excerpt display done with the archive of contents?"
 msgstr "記事のアーカイブで抜粋表示を行いますか？"
 
-#: xpressme_class.php:610
+#: xpressme_class.php:616
 msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
 msgstr "ASCII文字が含まれる比率が設定された値より大きい場合、ASCII文字コンテンツと判断します。"
 
-#: xpressme_class.php:617
+#: xpressme_class.php:623
 msgid "Excerpt length of word for ASCII contents"
 msgstr "ASCIIコンテンツの抜粋単語数"
 
-#: xpressme_class.php:624
+#: xpressme_class.php:630
 msgid "Excerpt length of character for multibyte contents"
 msgstr "マルチバイトコンテンツの抜粋文字数"
 
-#: xpressme_class.php:631
+#: xpressme_class.php:637
 msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
 msgstr "抜粋されていないコンテンツを読むためのリンクに表示されるテキスト(空白の場合リンクを表示しません)"
 
-#: xpressme_class.php:638
+#: xpressme_class.php:644
 msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
 msgstr "more タグ (&lt;!--more--&gt;)のリンクに表示されるテキスト"
 
-#: xpressme_class.php:650
+#: xpressme_class.php:656
 msgid "Display Mode Setting"
 msgstr "表示モード設定"
 
-#: xpressme_class.php:653
+#: xpressme_class.php:659
 msgid "Select the XPressME Display Mode."
 msgstr "XPressMEの表示モードの選択"
 
-#: xpressme_class.php:658
+#: xpressme_class.php:664
 msgid "Xoops Mode"
 msgstr "XOOPSモード"
 
-#: xpressme_class.php:662
+#: xpressme_class.php:668
 msgid "WordPress Mode"
 msgstr "WordPressモード"
 
-#: xpressme_class.php:666
+#: xpressme_class.php:672
 msgid "User select"
 msgstr "ユーザによる選択"
 
-#: xpressme_class.php:676
+#: xpressme_class.php:677
+msgid "Select the theme used in the XOOPS Mode."
+msgstr "XOOPSモードで使用するテーマを選択"
+
+#: xpressme_class.php:682
+msgid "Use WordPress Selected Themes"
+msgstr "WordPressで選択したテーマを使う"
+
+#: xpressme_class.php:700
 msgid "Header Meta Option"
 msgstr "ヘッダメタ　オプション"
 
-#: xpressme_class.php:681
+#: xpressme_class.php:705
 msgid "Select the Header keyword."
 msgstr "ヘッダで使用するキーワードの選択"
 
-#: xpressme_class.php:686
+#: xpressme_class.php:710
 msgid "Xoops KeyWord"
 msgstr "XOOPSのキーワード"
 
-#: xpressme_class.php:689
+#: xpressme_class.php:713
 msgid "WordPress KeyWord"
 msgstr "WordPressのキーワード"
 
-#: xpressme_class.php:692
+#: xpressme_class.php:716
 msgid "WordPress & Xoops KeyWord"
 msgstr "WordPressｊとXOOPSのキーワード"
 
-#: xpressme_class.php:698
+#: xpressme_class.php:722
 msgid "Select the Header Description."
 msgstr "ヘッダで使用するディスクリプション（説明）の選択"
 
-#: xpressme_class.php:703
+#: xpressme_class.php:727
 msgid "Xoops Description"
 msgstr "XOOPSのディスクリプション"
 
-#: xpressme_class.php:706
+#: xpressme_class.php:730
 msgid "WordPress Description"
 msgstr "WordPressのディスクリプション"
 
-#: xpressme_class.php:709
+#: xpressme_class.php:733
 msgid "WordPress & Xoops Description"
 msgstr "WordPressとXOOPSのディスクリプション"
 
-#: xpressme_class.php:715
+#: xpressme_class.php:739
 msgid "Select the Header Robots Index."
 msgstr "ヘッダで使用するロボットインデックスの選択"
 
-#: xpressme_class.php:720
+#: xpressme_class.php:744
 msgid "Xoops Robots Index"
 msgstr "XOOPSのロボットインデックス"
 
-#: xpressme_class.php:723
+#: xpressme_class.php:747
 msgid "WordPress Robots Index"
 msgstr "WordPressのロボットインデックス"
 
-#: xpressme_class.php:752
+#: xpressme_class.php:776
 #, php-format
 msgid "Unable to create directory %s. Is its parent directory writable by the server?"
Index: branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_class.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_class.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_class.php	(revision 406)
@@ -35,4 +35,5 @@
 	var $is_dashboard_blog_disp;
 	var $is_dashboard_forum_disp;
+	var $theme_select;
 	//constructor
 	function XPressME_Class()
@@ -47,4 +48,9 @@
 	function setDefault()
 	{
+		global $xoops_config;
+		if($xoops_config->is_wpmu)
+			$this->is_use_xoops_upload_path = false;
+		else
+			$this->is_use_xoops_upload_path = true;
 		$this->is_use_xoops_upload_path = true;
 		$this->is_theme_sidebar_disp = false;
@@ -79,4 +85,5 @@
 		$this->is_dashboard_blog_disp = true;
 		$this->is_dashboard_forum_disp = true;
+		$this->theme_select = 'use_wordpress_select';
 	}
 	
@@ -100,4 +107,7 @@
 	function SettingValueWrite($mode)
 	{
+		global $xoops_config;
+		if($xoops_config->is_wpmu) $this->is_use_xoops_upload_path = false;
+
 		$write_options = array (
 			'is_use_xoops_upload_path' => $this->is_use_xoops_upload_path ,
@@ -132,5 +142,6 @@
 			'meta_robot_type' => $this->meta_robot_type,
 			'is_dashboard_blog_disp' => $this->is_dashboard_blog_disp,
-			'is_dashboard_forum_disp' => $this->is_dashboard_forum_disp
+			'is_dashboard_forum_disp' => $this->is_dashboard_forum_disp,
+			'theme_select' => $this->theme_select
 		);
 		if ($mode == 'add_new') {
@@ -241,4 +252,7 @@
 								$set_value = __('Read the rest of this entry &raquo;', 'xpressme');
 								break;
+							case 'theme_select':
+								$set_value = 'use_wordpress_select';
+								break;
 								
 							default:
@@ -250,5 +264,7 @@
 		} // end of loop
 
-		global $xoops_db;
+		global $xoops_config;
+		if($xoops_config->is_wpmu) $this->is_use_xoops_upload_path = false;
+
 		$table = get_wp_prefix() . 'group_role';	
 //		$sql=  "SELECT * FROM $table";	
@@ -274,5 +290,5 @@
 	}
 	
-	function yes_no_radio_option($option_name,$option_desc,$yes = '',$no= ''){
+	function yes_no_radio_option($option_name,$option_desc,$yes = '',$no= '' , $disible=false){
 		if (empty( $yes ))  $yes = __('YES','xpressme') ;
 		if (empty( $no ))  $no = __('NO','xpressme') ;
@@ -283,5 +299,5 @@
 		$form .=  '<th><label for="images_to_link">' . $option_desc . "</label></th>\n";
 		$form .=  "<td>\n";
-		$form .=  $this->yes_no_radio_option_sub($option_name,$yes,$no);
+		$form .=  $this->yes_no_radio_option_sub($option_name,$yes,$no,$disible);
 		$form .=  "</td>\n";
 		$form .=  "</tr>\n";
@@ -290,16 +306,17 @@
 	
 	}
-	function yes_no_radio_option_sub($option_name,$yes = '',$no= ''){
+	function yes_no_radio_option_sub($option_name,$yes = '',$no= '',$disible=false){
+		if ($disible) $disible_str = ' disabled="disabled"'; else $disible_str = '';
+
 		if (empty( $yes ))  $yes = __('YES','xpressme') ;
 		if (empty( $no ))  $no = __('NO','xpressme') ;
 		$value = $this->{$option_name};
 		$ans_name = 'ch_' . $option_name;
-		
 		if ($value){
-			$form .= "<label><input type='radio' name='". $ans_name . "' value='1' checked='checked' />" . $yes ."</label><br />\n";
-			$form .= "<label><input type='radio' name='". $ans_name . "' value='0' />". $no . "</label>\n";
+			$form .= "<label><input type='radio' name='". $ans_name . "' value='1' checked='checked' $disible_str />" . $yes ."</label><br />\n";
+			$form .= "<label><input type='radio' name='". $ans_name . "' value='0' $disible_str />". $no . "</label>\n";
 		}else{
-			$form .= "<label><input type='radio' name='". $ans_name . "' value='1' />" . $yes . "</label><br />\n";
-			$form .= "<label><input type='radio' name='". $ans_name . "' value='0' checked='checked' />". $no ."</label>\n";
+			$form .= "<label><input type='radio' name='". $ans_name . "' value='1' $disible_str />" . $yes . "</label><br />\n";
+			$form .= "<label><input type='radio' name='". $ans_name . "' value='0' checked='checked' $disible_str />". $no ."</label>\n";
 		}
 	    return $form;
@@ -444,7 +461,8 @@
 	}
 
-	function groupe_role_option(){
+	function groupe_role_option($disible=false){
 		global $wp_roles , $xoops_db;
 		
+		if ($disible) $disible_str = ' disabled="disabled"'; else $disible_str = '';
 		$form = '';
 		$form .= '<tr><th><label for="role">' .__('Role Setting at Login', 'xpressme') . '</label></th>';
@@ -455,5 +473,5 @@
 			$form .= "<tr>";
 			$form .= "<td> $groupe->name </td>";
-			$form .= "<td>\n" . '<select name="role_gid_'.$groupe->groupid . '" id="role_gid_' . $groupe->groupid . '">' . "\n";
+			$form .= "<td>\n" . '<select name="role_gid_'.$groupe->groupid . '" id="role_gid_' . $groupe->groupid . '"' . $disible_str . '>' . "\n";;
 			$role_list = '';
 			$group_has_role = false;
@@ -497,4 +515,6 @@
 			$form .= "</tr>\n";	
 		}
+		if ($disible)
+			$form .= '<tr><p>' . __('Only the Admin can set Group Role Setting','xpressme') . "</p></tr>\n";
 		$form .= "</table></td></tr>\n";
 	    return $form;
@@ -668,4 +688,22 @@
 		$form .= "</select><br />\n";
 		
+		// Theme Select
+		$form .=  __('Select the theme used in the XOOPS Mode.', 'xpressme') ."\n";
+		$form .= '<select name="ch_theme_select">' . "\n";
+		
+		$form .= '<option value="use_wordpress_select" ';
+		if ($this->theme_select == 'use_wordpress_select') $form .= ' selected="selected"';
+		$form .= '>'.__('Use WordPress Selected Themes', 'xpressme') ."</option>\n";
+		
+		$themes = get_themes();
+		$theme_names = array_keys($themes);
+		natcasesort($theme_names);
+		foreach ($theme_names as $theme_name) {
+			if ($theme_name == 'My Themes') continue;
+			$form .= '<option value="' . $theme_name .'" ';
+			if ($this->theme_select == $theme_name) $form .= ' selected="selected"';
+			$form .= '>'.$theme_name ."</option>\n";
+		}
+		$form .= "</select><br />\n";
 		$form .= "</td></tr>\n";
 	    return $form;
Index: branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_widget_class.php
===================================================================
--- branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_widget_class.php	(revision 406)
+++ branches/XPressME_MU/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_widget_class.php	(revision 406)
@@ -0,0 +1,122 @@
+<?php
+/*
+ * Plugin Name: XPressME MENU
+ * Version: 1.0
+ * Plugin URI: http://jessealtman.com/2009/06/08/tutorial-wordpress-28-widget-api/
+ * Description: XPressME MENU widget using the the WordPress 2.8 widget API. This is meant strictly as a means of showing the new API using the <a href="http://jessealtman.com/2009/06/08/tutorial-wordpress-28-widget-api/">tutorial</a>.
+ * Author: toemon
+ * Author URI: http://ja.xpressme.info
+ */
+class XPress_Menu_Widget extends WP_Widget
+{
+	/**
+	* Declares the XPress_Menu_Widget class.
+	*
+	*/
+	function XPress_Menu_Widget(){
+		$widget_ops = array('classname' => 'widget_xpress', 'description' => __( "XPressME User Menu Widget") );
+		$control_ops = array('width' => 400, 'height' => 300);
+		$this->WP_Widget('XPress_Menu', __('XPressME MENU'), $widget_ops, $control_ops);
+	}
+
+	/**
+	* Displays the Widget
+	*
+	*/
+	function widget($args, $instance){
+		global $xpress_config,$xoops_config;
+
+		extract($args);
+		$title = apply_filters('widget_title', empty($instance['title']) ? '&nbsp;' : $instance['title']);
+
+		# Before the widget
+		echo $before_widget;
+
+		# The title
+		if ( $title )
+		echo $before_title . $title . $after_title;
+
+		# Make the XPressME MENU widget
+		echo '<ul>';
+		for($i = 0; $i < 10; $i++) {
+			$link_name = $instance['name' . $i];
+			$link_url = $instance['link' . $i];
+			if (!empty($link_name))	echo '<li><a href="' . $link_url . '">' . $link_name . '</a></li>';
+		}
+		echo '</ul>';
+		# After the widget
+		echo $after_widget;
+	}
+
+	/**
+	* Saves the widgets settings.
+	*
+	*/
+	function update($new_instance, $old_instance){
+		$instance = $old_instance;
+		$instance['title'] = strip_tags(stripslashes($new_instance['title']));
+		
+		for($i = 0; $i < 10; $i++) {
+			$instance['name'. $i] = strip_tags(stripslashes($new_instance['name'. $i]));
+			$instance['link' . $i] = strip_tags(stripslashes($new_instance['link'. $i]));
+		}
+
+		return $instance;
+	}
+
+	/**
+	* Creates the edit form for the widget.
+	*
+	*/
+	function form($instance){
+		global $xpress_config,$xoops_config;
+		//Defaults
+		$instance = wp_parse_args( (array) $instance, 
+		array(
+			'title'=> __('User Menu'),
+			'name0' => __('Site Home'),
+			'link0' => $xoops_config->xoops_url,
+			'name1' => '',
+			'link1' => '',
+			'name2' => '',
+			'link2' => '',
+			'name3' => '',
+			'link3' => '',
+			'name4' => '',
+			'link4' => '',
+			'name5' => '',
+			'link5' => '',
+			'name6' => '',
+			'link6' => '',
+			'name7' => '',
+			'link7' => '',
+			'name8' => '',
+			'link8' => '',
+			'name9' => '',
+			'link9' => ''
+		) );
+
+		$title = htmlspecialchars($instance['title']);
+
+		// Output the options
+		echo '<p><label for="' . $this->get_field_name('title') . '">'. "\n";
+		echo __('Title:') . '<input style="width: 200px;" id="' . $this->get_field_id('title') . '" name="' . $this->get_field_name('title') . '" type="text" value="' . $title . '" /></label></p>'. "\n";
+		echo '<label>' . __('Title') . '</label>' . '<label style="margin-left:120px;">' . __('URL') . '</label>' . "\n";
+		for($i = 0; $i < 10; $i++) {
+		echo '<p><input style="width: 100px;" id="' . $this->get_field_id('name' . $i) . '" name="' . $this->get_field_name('name' . $i) . '" type="text" value="' . $instance['name'. $i] . '" />:'. "\n";
+		echo '<input style="width: 280px;" id="' . $this->get_field_id('link' . $i) . '" name="' . $this->get_field_name('link' . $i) . '" type="text" value="' . $instance['link'. $i] . '" /></p>'. "\n";
+		}
+	}
+
+}// END class
+
+/**
+* Register Hello World widget.
+*
+* Calls 'widgets_init' action after the Hello World widget has been registered.
+*/
+function XPress_MenuInit() {
+	register_widget('XPress_Menu_Widget');
+}
+add_action('widgets_init', 'XPress_MenuInit');
+?>
Index: branches/XPressME_MU/xpressme_integration_kit/xoops_version.php
===================================================================
--- trunk/xpressme_integration_kit/xoops_version.php	(revision 389)
+++ branches/XPressME_MU/xpressme_integration_kit/xoops_version.php	(revision 406)
@@ -83,28 +83,35 @@
 $modversion['hasMain'] = 1;
 
-
-if(is_object($GLOBALS["xoopsUser"])){
-	global $current_user;
-	if (@$current_user->user_level > 0) {
-	$modversion['sub'][1]['name'] = constant( '_MI_XP2_MENU_POST_NEW');
-	if (wp_version_compare($wp_version, '>=','2.1'))
-		$modversion['sub'][1]['url'] = "wp-admin/post-new.php";
-	else
-		$modversion['sub'][1]['url'] = "wp-admin/post.php";
-	$modversion['sub'][2]['name'] = constant( '_MI_XP2_MENU_EDIT');
-	$modversion['sub'][2]['url'] = "wp-admin/edit.php";
-	$modversion['sub'][3]['name'] = constant( '_MI_XP2_MENU_ADMIN');
-	$modversion['sub'][3]['url'] = "wp-admin/";
+if (function_exists('get_bloginfo')){
+	//$add_url for wpmu multiblog
+	$pattern = '/.*\/' . $mydirname . '/';
+	$add_url = preg_replace($pattern,'',get_bloginfo('url'));
+	if (!empty($add_url)){
+	    $pattern = '/^\//';
+	    $add_url = preg_replace($pattern,'',$add_url) . '/';
 	}
-	if (@$current_user->user_level > 9) {
-	$modversion['sub'][4]['name'] = constant( '_MI_XP2_MENU_XPRESS');
-//	$modversion['sub'][4]['url'] = "wp-admin/options-general.php?page=xpressme_config";
-	$modversion['sub'][4]['url'] = "wp-admin/admin.php?page=xpressme\\xpressme.php";
+
+	if(is_object($GLOBALS["xoopsUser"])){
+		global $current_user , $xoops_config;
+		if (@$current_user->user_level > 0) {
+		$modversion['sub'][1]['name'] = constant( '_MI_XP2_MENU_POST_NEW');
+		if (wp_version_compare($wp_version, '>=','2.1'))
+			$modversion['sub'][1]['url'] = $add_url . "wp-admin/post-new.php";
+		else
+			$modversion['sub'][1]['url'] = $add_url . "wp-admin/post.php";
+		$modversion['sub'][2]['name'] = constant( '_MI_XP2_MENU_EDIT');
+		$modversion['sub'][2]['url'] = $add_url . "wp-admin/edit.php";
+		$modversion['sub'][3]['name'] = constant( '_MI_XP2_MENU_ADMIN');
+		$modversion['sub'][3]['url'] = $add_url . "wp-admin/";
+		}
+		if (@$current_user->user_level > 9) {
+			$modversion['sub'][4]['name'] = constant( '_MI_XP2_MENU_XPRESS');
+			$modversion['sub'][4]['url'] = $add_url . "wp-admin/admin.php?page=xpressme\\xpressme.php";
+		}
+		if($GLOBALS["xoopsUserIsAdmin"]){
+			$modversion['sub'][5]['name'] = constant( '_MI_XP2_MOD_ADMIN');
+			$modversion['sub'][5]['url'] = "admin/index.php";
+		}
 	}
-	if($GLOBALS["xoopsUserIsAdmin"]){
-		$modversion['sub'][5]['name'] = constant( '_MI_XP2_MOD_ADMIN');
-		$modversion['sub'][5]['url'] = "admin/index.php";
-	}
-
 }
 
