Index: trunk/extras/for_wordpress_mu/readme.txt
===================================================================
--- trunk/extras/for_wordpress_mu/readme.txt	(revision 314)
+++ trunk/extras/for_wordpress_mu/readme.txt	(revision 314)
@@ -0,0 +1,9 @@
+»ÝÌÆ±ëAWordPressMUÌXPressMEÍÀ±xÅ·B
+At present, the XPressME integration of WordPressMU is an experimental level. 
+
+WordPressMUÅeXg·éêÍsrcàÌt@CðAXPressMEW
+[Ì[gfBNg[ÉRs[µÄ­¾³¢B
+Please copy the file in src onto the root directory of the XPressME module when testing with WordPressMU. 
+
+CXg[OÉA.htaccesst@CÌ®«ð666ÉÏXµÄ­¾³¢B
+Before it installs it. Please change the attribute of the htaccess file to 666. 
Index: trunk/extras/for_wordpress_mu/src/.htaccess
===================================================================
--- trunk/extras/for_wordpress_mu/src/.htaccess	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/.htaccess	(revision 314)
@@ -0,0 +1,25 @@
+RewriteEngine On
+RewriteBase BASE/
+
+#uploaded files
+RewriteRule ^(.*/)?files/$ index.php [L]
+RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
+RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
+
+# add a trailing slash to /wp-admin
+RewriteCond %{REQUEST_URI} ^.*/wp-admin$
+RewriteRule ^(.+)$ $1/ [R=301,L]
+
+RewriteCond %{REQUEST_FILENAME} -f [OR]
+RewriteCond %{REQUEST_FILENAME} -d
+RewriteRule . - [L]
+RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
+RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
+RewriteRule . index.php [L]
+
+<IfModule mod_security.c>
+<Files async-upload.php>
+SecFilterEngine Off
+SecFilterScanPOST Off
+</Files>
+</IfModule>
Index: trunk/extras/for_wordpress_mu/src/include/xpress_mu_function.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/include/xpress_mu_function.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/include/xpress_mu_function.php	(revision 314)
@@ -0,0 +1,281 @@
+<?php
+if( ! function_exists( 'xpress_mu_install_defaults' ) ) :
+function xpress_mu_install_defaults($domain,$base,$site_name,$admin_user_id,$admin_user_name,$admin_email){
+		global $xoops_config,$wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles, $wp_query;
+		
+		// set up MU site tables
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'site_name', '" . $site_name . "')" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_email', '".$admin_email."')" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_user_id', '". $admin_user_id ."')" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'registration', 'none')" );
+		$wpdb->query( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, '$domain', '$base' )" );
+		$wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (1, 'Uncategorized', 'uncategorized', NOW())" );
+		$wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (2, 'Blogroll', 'blogroll', NOW())" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'upload_filetypes', 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'blog_upload_space', '10' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'fileupload_maxk', '1500' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'site_admins', '" . serialize( array( $admin_user_name ) ) . "' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'allowedthemes', '" . serialize( array( 'classic' => 1, 'default' => 1, 'xpress_default' => 1 ) ) . "' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'illegal_names', '" . serialize( array(  "www", "web", "root", "admin", "main", "invite", "administrator" ) ) . "' )" );
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'welcome_email', 'Dear User,
+
+Your new $site_name blog has been successfully set up at:
+BLOG_URL
+
+You can log in to the administrator account with the following information:
+Username: USERNAME
+Password: PASSWORD
+Login Here: BLOG_URLwp-login.php
+
+We hope you enjoy your new blog.
+Thanks!
+
+--The Team @ SITE_NAME')" );
+
+		$wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'first_post', 'Welcome to <a href=\"$site_url\">$site_name</a>. This is your first post. Edit or delete it, then start blogging!' )" );
+		$weblog_title = $site_name;
+
+
+		$current_site->domain = $domain;
+		$current_site->path = $base;
+		$current_site->site_name = $site_name;
+
+		update_blog_option( 1, 'template', 'xpress_mu_home');
+		update_blog_option( 1, 'stylesheet', 'xpress_mu_home');
+		
+		mu_create_blog( $domain, $base, $weblog_title, $user_id, array( 'blog_public' => 1, 'public' => 1 ) );
+}
+endif;
+
+if( ! function_exists( 'do_htaccess' ) ) :
+function do_htaccess( $oldfilename, $newfilename, $base, $url ) {
+	// remove ending slash from $base and $url
+	$htaccess = '';
+	if( substr($base, -1 ) == '/') {
+		$base = substr($base, 0, -1);
+	}
+
+	if( substr($url, -1 ) == '/') {
+		$url = substr($url, 0, -1);
+	}
+	$err = '';
+	if( is_file( $oldfilename ) ) {
+		$fp = @fopen( $oldfilename, "r" );
+		if( $fp ) {
+			while( !feof( $fp ) )
+			{
+				$htaccess .= fgets( $fp, 4096 );
+			}
+			fclose( $fp );
+			$htaccess = str_replace( "BASE", $base, $htaccess );
+			if( touch( $newfilename ) ) {
+				$fp = fopen( $newfilename, "w" );
+				if( $fp ) {
+					fwrite( $fp, $htaccess );
+					fclose( $fp );
+				} else {
+					$err = "could not open $newfilename for writing";
+				}
+			} else {
+				$err = "could not open $newfilename for writing";
+			}
+		} else {
+			$err = "could not open $oldfilename for reading";
+		}
+	} else {
+		$err = "$oldfilename not found";
+	}
+
+	if( $err != '' ) {
+		print "<h2>Warning!</h2>";
+		print "<p><strong>There was a problem creating the .htaccess file.</strong> </p>";
+		print "<p style='color: #900'>Error: ";
+		if( $err == "could not open $newfilename for writing" ) {
+			print "Could Not Write To $newfilename.";
+		} elseif( $err == "could not open $oldfilename for reading" ) {
+			print "I could not read from $oldfilename. ";
+		} elseif( $err == "$oldfilename not found" ) {
+			print "The file, $oldfilename, is missing.";
+		}
+		print "</p>";
+		filestats( $err );
+
+		print "<p>Please ensure that the webserver can write to this directory.</p>";
+		print "<p>If you use Cpanel then read <a href='http://mu.wordpress.org/forums/topic.php?id=99'>this post</a>. Cpanel creates files that I need to overwrite and you have to fix that.</p>";
+		print "<p>If all else fails then you'll have to create it by hand:";
+		print "<ul>
+			<li> Download htaccess.dist to your computer and open it in your favourite text editor.</li>
+			<li> Replace the following text:
+			<ul>
+			<li>BASE by '$base'</li>
+			<li>HOST by '$url'</li>
+			</ul>
+			</li>
+			<li> Rename htaccess.dist to .htaccess and upload it back to the same directory.</li>
+			</ul>";
+		die( "Installation Aborted!" );
+	}
+}
+endif;
+
+// this function is used to change wpmu_create_blog()
+// wpmu_create_blog() of wp_includes/wpmu_functions.php has the bug 
+// when install_blog_defaults is called.
+if( ! function_exists( 'mu_create_blog' ) ) :
+function mu_create_blog($domain, $path, $title, $user_id, $meta = '', $site_id = 1) {
+	global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles, $wp_query;
+	global $xoops_config;
+	global $base,$current_site, $dirs, $wpmu_version;
+
+	if(!is_object($wp_rewrite)){
+		$wp_rewrite   =& new WP_Rewrite();
+	}
+	
+	$domain = preg_replace( "/\s+/", '', sanitize_user( $domain, true ) );
+	if( constant( 'VHOST' ) == 'yes' )
+		$domain = str_replace( '@', '', $domain );
+	$title = strip_tags( $title );
+	$user_id = (int) $user_id;
+
+	if( empty($path) )
+		$path = '/';
+
+	// Check if the domain has been used already. We should return an error message.
+	if ( domain_exists($domain, $path, $site_id) )
+		return new WP_Error('blog_taken', __('Blog already exists.'));
+
+	if ( !defined("WP_INSTALLING") )
+		define( "WP_INSTALLING", true );
+
+	if ( ! $blog_id = insert_blog($domain, $path, $site_id) )
+		return new WP_Error('insert_blog', __('Could not create blog.'));
+
+	switch_to_blog($blog_id);
+
+	install_blog($blog_id, $title);
+
+	install_mu_blog_defaults($blog_id, $user_id);
+
+	add_user_to_blog($blog_id, $user_id, 'administrator');
+
+	if ( is_array($meta) ) foreach ($meta as $key => $value) {
+		if( $key == 'public' || $key == 'archived' || $key == 'mature' || $key == 'spam' || $key == 'deleted' || $key == 'lang_id' ) {
+			update_blog_status( $blog_id, $key, $value );
+		} else {
+			update_option( $key, $value );
+		}
+	}
+
+	add_option( 'WPLANG', get_site_option( 'WPLANG' ) );
+
+	update_option( 'blog_public', $meta['public'] );
+
+	if(get_usermeta( $user_id, 'primary_blog' ) == 1 )
+		update_usermeta( $user_id, 'primary_blog', $blog_id );
+
+
+	restore_current_blog();
+
+	do_action( 'wpmu_new_blog', $blog_id, $user_id );
+
+	return $blog_id;
+}
+endif;
+
+// this function is used to change install_blog_defaults()
+// When install_blog_defaults is called, $wp_rewrite is not object. 
+if( ! function_exists( 'install_mu_blog_defaults' ) ) :
+function install_mu_blog_defaults($blog_id, $user_id) {
+	global $wpdb, $wp_rewrite, $current_site, $table_prefix;
+	if(!is_object($wp_rewrite)){
+		$wp_rewrite   =& new WP_Rewrite();
+	}
+
+	$wpdb->suppress_errors();
+
+	// Cast for security
+	$user_id = (int) $user_id;
+	$blog_id = (int) $blog_id;
+
+	// Default links
+	$wpdb->insert( $wpdb->links,  array('link_url' => 'http://wordpress.com/', 'link_name' => 'WordPress.com', 'link_category' => '1356', 'link_owner' => $user_id, 'link_rss' => 'http://wordpress.com/feed/') );
+	$wpdb->insert( $wpdb->links,  array('link_url' => 'http://wordpress.org/', 'link_name' => 'WordPress.org', 'link_category' => '1356', 'link_owner' => $user_id, 'link_rss' => 'http://wordpress.org/development/feed/') );
+	$wpdb->insert( $wpdb->term_relationships, array('object_id' => 1, 'term_taxonomy_id' => 2));
+	$wpdb->insert( $wpdb->term_relationships, array('object_id' => 2, 'term_taxonomy_id' => 2));
+
+	// First post
+	$now = date('Y-m-d H:i:s');
+	$now_gmt = gmdate('Y-m-d H:i:s');
+	$first_post = get_site_option( 'first_post' );
+	if( $first_post == false ) {
+		$first_post = stripslashes( __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' ) );
+	}
+	$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
+	) );	
+	$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();
+
+	// Default comment
+	$wpdb->insert( $wpdb->comments, array(
+		'comment_post_ID' => '1', 
+		'comment_author' => __('Mr WordPress'), 
+		'comment_author_email' => '',
+		'comment_author_url' => 'http://' . $current_site->domain . $current_site->path, 
+		'comment_author_IP' => '127.0.0.1', 
+		'comment_date' => $now,
+		'comment_date_gmt' => $now_gmt, 
+		'comment_content' => __("Hi, this is a comment.<br />To delete a comment, just log in, and view the posts' comments, there you will have the option to edit or delete them.") 
+	) );
+	
+	$user = new WP_User($user_id);
+	$wpdb->update( $wpdb->options, array('option_value' => $user->user_email), array('option_name' => 'admin_email') );
+
+	// Remove all perms except for the login user.
+	$wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id != %d AND meta_key = %s", $user_id, $table_prefix.'user_level') );
+	$wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id != %d AND meta_key = %s", $user_id, $table_prefix.'capabilities') );
+	
+	// Delete any caps that snuck into the previously active blog. (Hardcoded to blog 1 for now.) TODO: Get previous_blog_id.
+	if ( !is_site_admin( $user->user_login ) && $user_id != 1 )
+		$wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->usermeta WHERE user_id = %d AND meta_key = %s", $user_id, $wpdb->base_prefix.'1_capabilities') );
+
+	$wpdb->suppress_errors( false );
+}
+endif;
+
+?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/404.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/404.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/404.php	(revision 314)
@@ -0,0 +1,29 @@
+<?php get_header(); ?>
+
+       <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+		<h2 class="center"><?php _e('Error 404 - Not Found', 'xpress'); ?></h2>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/MFCE03.tmp
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/MFCE03.tmp	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/MFCE03.tmp	(revision 314)
@@ -0,0 +1,646 @@
+
+@charset "utf-8";
+/*
+Theme Name: XPressME
+Theme URI: http://www.toemon.com/
+Description: XOOPSモジュール「XPressME」 WordPressモード用テーマ
+Version: 0.2 ALPHA
+Author: KURO
+Author URI: http://xoops-fan.com/
+Tags: XPressME,toemon,KURO
+
+*/
+
+
+
+/* Begin Typography & Colors */
+#xpress_page {
+	background-color: white;
+	border: 1px solid #959596;
+	text-align: left;
+	}
+
+#xpress_content {
+	font-size: 1.0em
+	}
+
+.widecolumn .entry p {
+	font-size: 1.05em;
+	}
+
+.narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry {
+	line-height: 1.4em;
+	}
+
+.widecolumn {
+	line-height: 1.6em;
+	}
+
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	text-align: center;
+	}
+
+.alt {
+	background-color: #f8f8f8;
+	border-top: 1px solid #ddd;
+	border-bottom: 1px solid #ddd;
+	}
+
+small {
+	font-family: Arial, Helvetica, Sans-Serif;
+	font-size: 0.9em;
+	line-height: 1.5em;
+	}
+
+h1, h2, h3 {
+	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	font-weight: bold;
+	}
+
+h1 {
+	font-size: 2.0em;
+	text-align: center;
+	}
+
+#xpress_headerimg .description {
+	font-size: 1.2em;
+	text-align: center;
+	}
+
+h2 {
+	font-size: 1.6em;
+	}
+
+h2.pagetitle {
+	font-size: 1.6em;
+	}
+
+.xpress_sidebar h2 {
+	font-family: 'Lucida Grande', Verdana, Sans-Serif;
+	font-size: 0.9em;
+	}
+
+h3 {
+	font-size: 1.3em;
+	}
+
+h1, h1 a, h1 a:hover, h1 a:visited, #xpress_headerimg .description {
+	text-decoration: none;
+	color: white;
+	}
+
+h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
+	color: #333;
+	}
+
+h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, .xpress_sidebar h2, #wp-calendar caption, cite {
+	text-decoration: none;
+	}
+
+.entry p a:visited {
+	color: #b85b5a;
+	}
+
+.commentlist li, #commentform input, #commentform textarea {
+	font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+.commentlist li {
+	font-weight: bold;
+	}
+
+.commentlist li .avatar { 
+	float: right;
+	border: 1px solid #eee;
+	padding: 2px;
+	background: #fff;
+	}
+
+.commentlist cite, .commentlist cite a {
+	font-weight: bold;
+	font-style: normal;
+	font-size: 1.1em;
+	}
+
+.commentlist p {
+	font-weight: normal;
+	line-height: 1.5em;
+	text-transform: none;
+	}
+
+#commentform p {
+	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+.commentmetadata {
+	font-weight: normal;
+	}
+
+.xpress_sidebar {
+	font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+small, .xpress_sidebar ul ul li, .xpress_sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
+	color: #777;
+	}
+
+code {
+	font: 1.1em 'Courier New', Courier, Fixed;
+	}
+
+acronym, abbr, span.caps
+{
+	font-size: 0.9em;
+	letter-spacing: .07em;
+	}
+
+a, h2 a:hover, h3 a:hover {
+	color: #06c;
+	text-decoration: none;
+	}
+
+a:hover {
+	color: #147;
+	text-decoration: underline;
+	}
+
+#wp-calendar #prev a, #wp-calendar #next a {
+	font-size: 9pt;
+	}
+
+#wp-calendar a {
+	text-decoration: none;
+	}
+
+#wp-calendar caption {
+	font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	text-align: center;
+	}
+
+#wp-calendar th {
+	font-style: normal;
+	text-transform: capitalize;
+	}
+/* End Typography & Colors */
+
+
+
+/* Begin Structure */
+#xpress_page {
+	background-color: white;
+	padding: 0;
+	width: 100%;
+	margin: 0;
+	border: 1px solid #959596;
+	}
+
+#xpress_header {
+	background-color: #73a0c5;
+	margin: 1px 1px 0;
+	padding: 0;
+	height: 100px;
+	}
+
+#xpress_headerimg {
+	margin: 0;
+	height: 100%;
+	width: 100%;
+	}
+	
+#xpress_wrap {
+	float: left;
+	width: 100%;
+	margin-right: -205px;
+	}
+
+#xpress_content {
+	padding: 10px 15px 20px;
+	}
+	
+#xpress_content.narrowcolumn {
+	margin-right: 205px;
+	}
+	
+#xpress_content.widecolumn {
+	max-width: 500px;
+	margin: 0 auto;
+	}
+	
+.post hr {
+	display: block;
+	}
+	
+#xpress_content .post {
+	max-width: 500px;
+	margin: 0 auto 40px;
+	}	
+
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	padding-top: 5px;
+	}
+
+.widecolumn .postmetadata {
+	margin: 30px 0;
+	}
+
+.widecolumn .smallattachment {
+	text-align: center;
+	float: left;
+	width: 128px;
+	margin: 5px 5px 5px 0px;
+}
+
+.widecolumn .attachment {
+	text-align: center;
+	margin: 5px 0px;
+}
+
+.postmetadata {
+	clear: both;
+}
+
+.clear {
+	clear: both;
+}
+
+#xpress_footer {
+	padding: 0;
+	margin: 0 auto;
+	width: 100%;
+	clear: both;
+	}
+
+#xpress_footer p {
+	margin: 0;
+	padding: 20px 0;
+	text-align: center;
+	}
+/* End Structure */
+
+
+/*	Begin Headers */
+h1 {
+	padding-top: 20px;
+	margin: 0;
+	}
+
+h2 {
+	margin: 30px 0 0;
+	}
+
+h2.pagetitle {
+	margin-top: 30px;
+	text-align: center;
+}
+
+.xpress_sidebar h2 {
+	margin: 5px 0 0;
+	padding: 0;
+	}
+
+h3 {
+	padding: 0;
+	margin: 30px 0 0;
+	}
+
+h3.xpress_comments {
+	padding: 0;
+	margin: 40px auto 20px ;
+	}
+/* End Headers */
+
+
+
+/* Begin Images */
+p img {
+	padding: 0;
+	max-width: 100%;
+	}
+
+/*	Using 'class="alignright"' on an image will (who would've
+	thought?!) align the image to the right. And using 'class="centered',
+	will of course center the image. This is much better than using
+	align="center", being much more futureproof (and valid) */
+
+img.centered {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+	}
+
+img.alignright {
+	padding: 4px;
+	margin: 0 0 2px 7px;
+	display: inline;
+	}
+
+img.alignleft {
+	padding: 4px;
+	margin: 0 7px 2px 0;
+	display: inline;
+	}
+
+.alignright {
+	float: right;
+	}
+
+.alignleft {
+	float: left
+	}
+/* End Images */
+
+
+
+/* Begin Lists
+
+	Special stylized non-IE bullets
+	Do not work in Internet Explorer, which merely default to normal bullets. */
+
+html>body .entry ul {
+	margin-left: 0px;
+	padding: 0 0 0 30px;
+	list-style: none;
+	padding-left: 10px;
+	text-indent: -10px;
+	}
+
+html>body .entry li {
+	margin: 7px 0 8px 10px;
+	}
+
+.entry ul li:before, .xpress_sidebar ul ul li:before {
+	content: "\00BB \0020";
+	}
+
+.entry ol {
+	padding: 0 0 0 35px;
+	margin: 0;
+	}
+
+.entry ol li {
+	margin: 0;
+	padding: 0;
+	}
+
+.postmetadata ul, .postmetadata li {
+	display: inline;
+	list-style-type: none;
+	list-style-image: none;
+	}
+
+.xpress_sidebar ul, .xpress_sidebar ul ol {
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_sidebar ul li {
+	list-style-type: none;
+	list-style-image: none;
+	margin-bottom: 15px;
+	}
+
+.xpress_sidebar ul p, .xpress_sidebar ul select {
+	margin: 5px 0 8px;
+	}
+
+.xpress_sidebar ul ul, .xpress_sidebar ul ol {
+	margin: 5px 0 0 10px;
+	}
+
+.xpress_sidebar ul ul ul, .xpress_sidebar ul ol {
+	margin: 0 0 0 10px;
+	}
+
+ol li, .xpress_sidebar ul ol li {
+	list-style: decimal outside;
+	}
+
+.xpress_sidebar ul ul li, .xpress_sidebar ul ol li {
+	margin: 3px 0 0;
+	padding: 0;
+	}
+/* End Entry Lists */
+
+
+
+/* Begin Form Elements */
+.xpress_sidebar #searchform {
+	margin: 10px auto;
+	padding: 5px 3px;
+	text-align: center;
+	}
+
+.xpress_sidebar #searchform #s {
+	width: 108px;
+	padding: 2px;
+	}
+
+.xpress_sidebar #searchsubmit {
+	padding: 1px;
+	}
+
+.entry form { /* This is mainly for password protected posts, makes them look better. */
+	text-align:center;
+	}
+
+select {
+	width: 130px;
+	}
+
+#xpress_commentform input {
+	width: 170px;
+	padding: 2px;
+	margin: 5px 5px 1px 0;
+	}
+
+#xpress_commentform textarea {
+	width: 100%;
+	padding: 2px;
+	}
+
+#xpress_commentform #xpress_submit {
+	margin: 0;
+	float: right;
+	}
+/* End Form Elements */
+
+
+
+/* Begin Comments*/
+.alt {
+	margin: 0;
+	padding: 10px;
+	}
+
+.xpress_commentlist {
+	padding: 0;
+/*	text-align: justify; */
+	}
+
+.xpress_commentlist li {
+	margin: 15px 0 3px;
+	padding: 5px 10px 3px;
+	list-style: none;
+	}
+
+.xpress_commentlist p {
+	margin: 10px 5px 10px 0;
+	}
+
+#xpress_commentform p {
+	margin: 5px 0;
+	}
+
+.nocomments {
+	text-align: center;
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_commentmetadata {
+	margin: 0;
+	display: block;
+	}
+/* End Comments */
+
+
+
+/* Begin Sidebar */
+#xpress_page .xpress_sidebar {
+	float: right;
+	display:inline;
+	margin:0 15px 0 0;
+	padding: 20px 0 10px;
+	width: 190px;
+	}
+
+.xpress_sidebar form {
+	margin: 0;
+	}
+/* End Sidebar */
+
+
+
+/* Begin Calendar */
+#wp-calendar {
+	empty-cells: show;
+	margin: 10px auto 0;
+	width: 155px;
+	}
+
+#wp-calendar #next a {
+	padding-right: 10px;
+	text-align: right;
+	}
+
+#wp-calendar #prev a {
+	padding-left: 10px;
+	text-align: left;
+	}
+
+#wp-calendar a {
+	display: block;
+	}
+
+#wp-calendar caption {
+	text-align: center;
+	width: 100%;
+	}
+
+#wp-calendar td {
+	padding: 3px 0;
+	text-align: center;
+	}
+
+#wp-calendar td.pad:hover { /* Doesn't work in IE */
+	background-color: #fff; }
+/* End Calendar */
+
+
+
+/* Begin Various Tags & Classes */
+acronym, abbr, span.caps {
+	cursor: help;
+	}
+
+acronym, abbr {
+	border-bottom: 1px dashed #999;
+	}
+
+blockquote {
+	margin: 15px 30px 0 10px;
+	padding-left: 20px;
+	border-left: 5px solid #ddd;
+	}
+
+blockquote cite {
+	margin: 5px 0 0;
+	display: block;
+	}
+
+.center {
+	text-align: center;
+	}
+
+.hidden {
+	display: none;
+	}
+
+hr {
+	display: none;
+	}
+
+a img {
+	border: none;
+	}
+
+.xpress_navigation {
+	display: block;
+	text-align: center;
+	margin-top: 10px;
+	margin-bottom: 60px;
+	}
+/* End Various Tags & Classes*/
+
+
+
+/* Captions */
+.aligncenter,
+div.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-caption {
+	border: 1px solid #ddd;
+	text-align: center;
+	background-color: #f3f3f3;
+	padding-top: 4px;
+	margin: 10px;
+	-moz-border-radius: 3px;
+	-khtml-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+.wp-caption img {
+	margin: 0;
+	padding: 0;
+	border: 0 none;
+}
+
+.wp-caption p.wp-caption-text {
+	font-size: 11px;
+	line-height: 17px;
+	padding: 0 4px 5px;
+	margin: 0;
+}
+/* End captions */
+
+
+/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.
+	It won't be a stylish marriage, I can't afford a carriage.
+	But you'll look sweet upon the seat of a bicycle built for two." */
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/archives.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/archives.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/archives.php	(revision 314)
@@ -0,0 +1,32 @@
+<?php
+/*
+Template Name: Archives
+*/
+?>
+
+<?php get_header(); ?>
+
+<div id="xpress_content" class="widecolumn">
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+<?php include (get_template_directory() . '/searchform.php'); ?>
+
+	<h2><?php _e('Archives by Month:', 'xpress'); ?></h2>
+	<ul>
+		<?php wp_get_archives('type=monthly'); ?>
+	</ul>
+
+	<h2><?php _e('Archives by Subject:', 'xpress'); ?></h2>
+	<ul>
+		 <?php wp_list_categories(); ?>
+	</ul>
+
+</div>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments-popup.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments-popup.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments-popup.php	(revision 314)
@@ -0,0 +1,116 @@
+<?php
+/* Don't remove these lines. */
+add_filter('comment_text', 'popuplinks');
+while ( have_posts()) : the_post();
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+     <title><?php printf(__('%1$s - Comments on %2$s', 'xpress'), get_option('blogname'), the_title('','',false)); ?></title>
+
+	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
+	<style type="text/css" media="screen">
+		@import url( <?php bloginfo('stylesheet_url'); ?> );
+		body { margin: 3px; }
+	</style>
+
+</head>
+<body id="xpress_commentspopup">
+
+<h1 id="xpress_header"><a href="" title="<?php echo get_option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1>
+
+<h2 id="xpress_comments"><?php _e('Comments', 'xpress'); ?></h2>
+
+<p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.', 'xpress'); ?></a></p>
+
+<?php if ('open' == $post->ping_status) { ?>
+<p><?php printf(__('The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em>%s</em>', 'xpress'), get_trackback_url()); ?></p>
+<?php } ?>
+
+<?php
+// this line is WordPress' motor, do not delete it.
+$commenter = wp_get_current_commenter();
+extract($commenter);
+$comments = get_approved_comments($id);
+$post = get_post($id);
+if (!empty($post->post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+	echo(get_the_password_form());
+} else { ?>
+
+<?php if ($comments) { ?>
+<ol id="xpress_commentlist">
+<?php foreach ($comments as $comment) { ?>
+	<li id="comment-<?php comment_ID() ?>">
+	<?php comment_text() ?>
+	<p><cite><?php comment_type(__('Comment', 'xpress'), __('Trackback', 'xpress'), __('Pingback', 'xpress')); ?> <?php printf(__('by %1$s &#8212; %2$s @ <a href="#comment-%3$s">%4$s</a>', 'xpress'), get_comment_author_link(), get_comment_date(), get_comment_ID(), get_comment_time()); ?></cite></p>
+	</li>
+
+<?php } // end for each comment ?>
+</ol>
+<?php } else { // this is displayed if there are no comments so far ?>
+	<p><?php _e('No comments yet.', 'xpress'); ?></p>
+<?php } ?>
+
+<?php if ('open' == $post->comment_status) { ?>
+<h2><?php _e('Leave a comment', 'xpress'); ?></h2>
+<p><?php printf(__('Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code>%s</code>', 'xpress'), allowed_tags()); ?></p>
+
+<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
+<?php if ( $user_ID ) : ?>
+	<p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out &raquo;</a>', 'xpress'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity, get_option('siteurl') . '/wp-login.php?action=logout'); ?></p>
+<?php else : ?>
+	<p>
+	  <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" />
+	   <label for="author"><?php _e('Name', 'xpress'); ?></label>
+	<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+	<input type="hidden" name="redirect_to" value="<?php echo attribute_escape($_SERVER["REQUEST_URI"]); ?>" />
+	</p>
+
+	<p>
+	  <input type="text" name="email" id="xpress_email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" />
+	   <label for="email"><?php _e('E-mail', 'xpress'); ?></label>
+	</p>
+
+	<p>
+	  <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" />
+	   <label for="url"><?php _e('<abbr title="Universal Resource Locator">URL</abbr>', 'xpress'); ?></label>
+	</p>
+<?php endif; ?>
+
+	<p>
+	  <label for="comment"><?php _e('Your Comment', 'xpress'); ?></label>
+	<br />
+	  <textarea name="comment" id="xpress_comment" cols="70" rows="4" tabindex="4"></textarea>
+	</p>
+
+	<p>
+	  <input name="submit" type="submit" tabindex="5" value="<?php _e('Say It!' , 'xpress'); ?>" />
+	</p>
+	<?php do_action('comment_form', $post->ID); ?>
+</form>
+<?php } else { // comments are closed ?>
+<p><?php _e('Sorry, the comment form is closed at this time.', 'xpress'); ?></p>
+<?php }
+} // end password check
+?>
+
+<div><strong><a href="javascript:window.close()"><?php _e('Close this window.', 'xpress'); ?></a></strong></div>
+
+<?php // if you delete this the sky will fall on your head
+endwhile;
+?>
+
+<!-- // this is just the end of the motor - don't touch that line either :) -->
+<?php //} ?>
+<p class="credit"><?php timer_stop(1); ?> <cite><?php printf(__('Powered by <a href="%s" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>WordPress</strong></a>', 'xpress'), 'http://wordpress.org/'); ?></cite></p>
+<?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?>
+<script type="text/javascript">
+<!--
+document.onkeypress = function esc(e) {
+	if(typeof(e) == "undefined") { e=event; }
+	if (e.keyCode == 27) { self.close(); }
+}
+// -->
+</script>
+</body>
+</html>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/comments.php	(revision 314)
@@ -0,0 +1,77 @@
+<?php // Do not delete these lines
+	if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
+		die ('Please do not load this page directly. Thanks!');
+	
+	if ( post_password_required() ) { ?>
+		<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'xpress'); ?></p> 
+	<?php
+		return;
+	}
+?>
+
+<!-- You can start editing here. -->
+
+<?php if ( have_comments() ) : ?>
+	<?php if ( ! empty($comments_by_type['comment']) ) : ?>
+		<h3 id="xpress_comments"><?php comments_number(__('No Responses', 'xpress'), __('One Response', 'xpress'), __('% Responses', 'xpress'));?> <?php printf(__('to &#8220;%s&#8221;', 'xpress'), the_title('', '', false)); ?></h3>
+		<div id="xpress_commentlist">
+			<?php wp_list_comments('type=comment&style=div'); ?>
+		</div>
+	<?php endif; ?>
+	
+	<div class="navigation">
+		<div class="alignleft"><?php previous_comments_link() ?></div>
+		<div class="alignright"><?php next_comments_link() ?></div>
+	</div>
+<?php else : // this is displayed if there are no comments so far ?>
+
+	<?php if ('open' == $post->comment_status) : ?>
+		<!-- If comments are open, but there are no comments. -->
+	<?php else : // comments are closed ?>
+		<!-- If comments are closed. -->
+		<p class="nocomments"><?php _e('Comments are closed.' , 'xpress'); ?></p>
+	<?php endif; ?>
+<?php endif; ?>
+
+<?php if ('open' == $post->comment_status) : ?>
+	<div id="xpress-respond">
+		<h3><?php comment_form_title( __('Leave a Reply', 'xpress'), __('Leave a Reply for %s' , 'xpress') ); ?></h3>
+	</div>
+			
+	<div id="cancel-comment-reply"> 
+		<small><?php cancel_comment_reply_link() ?></small>
+	</div> 
+	
+	<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
+		<p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'xpress'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>
+	<?php else : ?>
+		<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
+			<div id="xpress-comment-user">
+				<?php if ( $user_ID ) : ?>
+					<p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'xpress'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account', 'xpress'); ?>"><?php _e('Log out &raquo;', 'xpress'); ?></a></p>
+				<?php else : ?>
+					<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
+					<label for="author"><small><?php _e('Name', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p>
+
+					<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
+					<label for="email"><small><?php _e('Mail (will not be published)', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p>
+
+					<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
+					<label for="url"><small><?php _e('Website', 'xpress'); ?></small></label></p>
+				<?php endif; ?>
+			</div>
+
+			<div id="xpress-comment-form">
+				<!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'xpress'), allowed_tags()); ?></small></p>-->
+
+				<textarea name="comment" id="comment" cols="100" rows="5" tabindex="4" style="width:100%"></textarea>
+				<div class ="xpress-comment-submit">
+					<input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment', 'xpress'); ?>" />
+				</div>
+				<?php comment_id_fields(); ?> 	
+				<?php do_action('comment_form', $post->ID); ?>
+			</div>
+		</form>
+	<?php endif; // If registration required and not logged in ?>
+
+<?php endif; // if you delete this the sky will fall on your head ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/footer.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/footer.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/footer.php	(revision 314)
@@ -0,0 +1,18 @@
+<hr class="xpress-border"></hr>
+
+<div id="xpress_footer">
+	<div class="xpress_rss">
+		<?php printf(__('%1$s and %2$s.', 'xpress'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'xpress') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'xpress') . '</a>'); ?>
+	</div>
+		<!-- <?php printf(__('%d queries. %s seconds.', 'xpress'), get_num_queries(), timer_stop(0, 3)); ?> -->
+	<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
+		<div class="xpress_credit"><?php echo xpress_credit('echo=0'). ' (' . xpress_convert_time('echo=0&format=' . __('%.3f sec.', 'xpress')) . ')'; ?></div>
+</div>
+</div>
+
+<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/xpress/ -->
+<?php /* "Just what do you think you're doing Dave?" */ ?>
+
+		<?php wp_footer(); ?>
+</body>
+</html>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/functions.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/functions.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/functions.php	(revision 314)
@@ -0,0 +1,418 @@
+<?php
+if ( function_exists('register_sidebar') )
+    register_sidebar(array(
+        'before_widget' => '<li id="%1$s" class="widget %2$s">',
+        'after_widget' => '</li>',
+        'before_title' => '<h2 class="widgettitle">',
+        'after_title' => '</h2>',
+    ));
+
+load_theme_textdomain('xpress');
+
+function xpress_head() {
+	$head = "<style type='text/css'>\n<!--";
+	$output = '';
+	if ( xpress_header_image() ) {
+		$url =  xpress_header_image_url() ;
+		$output .= "#header { background: url('$url') no-repeat bottom center; }\n";
+	}
+	if ( false !== ( $color = xpress_header_color() ) ) {
+		$output .= "#headerimg h1 a, #headerimg h1 a:visited, #headerimg .description { color: $color; }\n";
+	}
+	if ( false !== ( $display = xpress_header_display() ) ) {
+		$output .= "#headerimg { display: $display }\n";
+	}
+	$foot = "--></style>\n";
+	if ( '' != $output )
+		echo $head . $output . $foot;
+}
+
+add_action('wp_head', 'xpress_head');
+
+function xpress_header_image() {
+	return apply_filters('xpress_header_image', get_option('xpress_header_image'));
+}
+
+function xpress_upper_color() {
+	if (strpos($url = xpress_header_image_url(), 'header-img.php?') !== false) {
+		parse_str(substr($url, strpos($url, '?') + 1), $q);
+		return $q['upper'];
+	} else
+		return '69aee7';
+}
+
+function xpress_lower_color() {
+	if (strpos($url = xpress_header_image_url(), 'header-img.php?') !== false) {
+		parse_str(substr($url, strpos($url, '?') + 1), $q);
+		return $q['lower'];
+	} else
+		return '4180b6';
+}
+
+function xpress_header_image_url() {
+	if ( $image = xpress_header_image() )
+		$url = get_template_directory_uri() . '/images/' . $image;
+	else
+		$url = get_template_directory_uri() . '/images/xpressheader.jpg';
+
+	return $url;
+}
+
+function xpress_header_color() {
+	return apply_filters('xpress_header_color', get_option('xpress_header_color'));
+}
+
+function xpress_header_color_string() {
+	$color = xpress_header_color();
+	if ( false === $color )
+		return 'white';
+
+	return $color;
+}
+
+function xpress_header_display() {
+	return apply_filters('xpress_header_display', get_option('xpress_header_display'));
+}
+
+function xpress_header_display_string() {
+	$display = xpress_header_display();
+	return $display ? $display : 'inline';
+}
+
+add_action('admin_menu', 'xpress_add_theme_page');
+
+function xpress_add_theme_page() {
+	if ( isset( $_GET['page'] ) && $_GET['page'] == basename(__FILE__) ) {
+		if ( isset( $_REQUEST['action'] ) && 'save' == $_REQUEST['action'] ) {
+			check_admin_referer('xpress-header');
+			if ( isset($_REQUEST['njform']) ) {
+				if ( isset($_REQUEST['defaults']) ) {
+					delete_option('xpress_header_image');
+					delete_option('xpress_header_color');
+					delete_option('xpress_header_display');
+				} else {
+					if ( '' == $_REQUEST['njfontcolor'] )
+						delete_option('xpress_header_color');
+					else {
+						$fontcolor = preg_replace('/^.*(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['njfontcolor']);
+						update_option('xpress_header_color', $fontcolor);
+					}
+					if ( preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njuppercolor'], $uc) && preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njlowercolor'], $lc) ) {
+						$uc = ( strlen($uc[0]) == 3 ) ? $uc[0]{0}.$uc[0]{0}.$uc[0]{1}.$uc[0]{1}.$uc[0]{2}.$uc[0]{2} : $uc[0];
+						$lc = ( strlen($lc[0]) == 3 ) ? $lc[0]{0}.$lc[0]{0}.$lc[0]{1}.$lc[0]{1}.$lc[0]{2}.$lc[0]{2} : $lc[0];
+						update_option('xpress_header_image', "header-img.php?upper=$uc&lower=$lc");
+					}
+
+					if ( isset($_REQUEST['toggledisplay']) ) {
+						if ( false === get_option('xpress_header_display') )
+							update_option('xpress_header_display', 'none');
+						else
+							delete_option('xpress_header_display');
+					}
+				}
+			} else {
+
+				if ( isset($_REQUEST['headerimage']) ) {
+					check_admin_referer('xpress-header');
+					if ( '' == $_REQUEST['headerimage'] )
+						delete_option('xpress_header_image');
+					else {
+						$headerimage = preg_replace('/^.*?(header-img.php\?upper=[0-9a-fA-F]{6}&lower=[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['headerimage']);
+						update_option('xpress_header_image', $headerimage);
+					}
+				}
+
+				if ( isset($_REQUEST['fontcolor']) ) {
+					check_admin_referer('xpress-header');
+					if ( '' == $_REQUEST['fontcolor'] )
+						delete_option('xpress_header_color');
+					else {
+						$fontcolor = preg_replace('/^.*?(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['fontcolor']);
+						update_option('xpress_header_color', $fontcolor);
+					}
+				}
+
+				if ( isset($_REQUEST['fontdisplay']) ) {
+					check_admin_referer('xpress-header');
+					if ( '' == $_REQUEST['fontdisplay'] || 'inline' == $_REQUEST['fontdisplay'] )
+						delete_option('xpress_header_display');
+					else
+						update_option('xpress_header_display', 'none');
+				}
+			}
+			//print_r($_REQUEST);
+			wp_redirect("themes.php?page=functions.php&saved=true");
+			die;
+		}
+		add_action('admin_head', 'xpress_theme_page_head');
+	}
+	add_theme_page(__('Customize Header', 'xpress'), __('Header Image and Color', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_page');
+}
+
+function xpress_theme_page_head() {
+?>
+<script type="text/javascript" src="../wp-includes/js/colorpicker.js"></script>
+<script type='text/javascript'>
+// <![CDATA[
+	function pickColor(color) {
+		ColorPicker_targetInput.value = color;
+		kUpdate(ColorPicker_targetInput.id);
+	}
+	function PopupWindow_populate(contents) {
+		contents += '<br /><p style="text-align:center;margin-top:0px;"><input type="button" class="button-secondary" value="<?php echo attribute_escape(__('Close Color Picker', 'xpress')); ?>" onclick="cp.hidePopup(\'prettyplease\')"></input></p>';
+		this.contents = contents;
+		this.populated = false;
+	}
+	function PopupWindow_hidePopup(magicword) {
+		if ( magicword != 'prettyplease' )
+			return false;
+		if (this.divName != null) {
+			if (this.use_gebi) {
+				document.getElementById(this.divName).style.visibility = "hidden";
+			}
+			else if (this.use_css) {
+				document.all[this.divName].style.visibility = "hidden";
+			}
+			else if (this.use_layers) {
+				document.layers[this.divName].visibility = "hidden";
+			}
+		}
+		else {
+			if (this.popupWindow && !this.popupWindow.closed) {
+				this.popupWindow.close();
+				this.popupWindow = null;
+			}
+		}
+		return false;
+	}
+	function colorSelect(t,p) {
+		if ( cp.p == p && document.getElementById(cp.divName).style.visibility != "hidden" )
+			cp.hidePopup('prettyplease');
+		else {
+			cp.p = p;
+			cp.select(t,p);
+		}
+	}
+	function PopupWindow_setSize(width,height) {
+		this.width = 162;
+		this.height = 210;
+	}
+
+	var cp = new ColorPicker();
+	function advUpdate(val, obj) {
+		document.getElementById(obj).value = val;
+		kUpdate(obj);
+	}
+	function kUpdate(oid) {
+		if ( 'uppercolor' == oid || 'lowercolor' == oid ) {
+			uc = document.getElementById('uppercolor').value.replace('#', '');
+			lc = document.getElementById('lowercolor').value.replace('#', '');
+			hi = document.getElementById('headerimage');
+			hi.value = 'header-img.php?upper='+uc+'&lower='+lc;
+			document.getElementById('header').style.background = 'url("<?php echo get_template_directory_uri(); ?>/images/'+hi.value+'") center no-repeat';
+			document.getElementById('advuppercolor').value = '#'+uc;
+			document.getElementById('advlowercolor').value = '#'+lc;
+		}
+		if ( 'fontcolor' == oid ) {
+			document.getElementById('header').style.color = document.getElementById('fontcolor').value;
+			document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value;
+		}
+		if ( 'fontdisplay' == oid ) {
+			document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+		}
+	}
+	function toggleDisplay() {
+		td = document.getElementById('fontdisplay');
+		td.value = ( td.value == 'none' ) ? 'inline' : 'none';
+		kUpdate('fontdisplay');
+	}
+	function toggleAdvanced() {
+		a = document.getElementById('jsAdvanced');
+		if ( a.style.display == 'none' )
+			a.style.display = 'block';
+		else
+			a.style.display = 'none';
+	}
+	function kDefaults() {
+		document.getElementById('headerimage').value = '';
+		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#69aee7';
+		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#4180b6';
+		document.getElementById('header').style.background = 'url("<?php echo get_template_directory_uri(); ?>/images/xpressheader.jpg") center no-repeat';
+		document.getElementById('header').style.color = '#FFFFFF';
+		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '';
+		document.getElementById('fontdisplay').value = 'inline';
+		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+	}
+	function kRevert() {
+		document.getElementById('headerimage').value = '<?php echo js_escape(xpress_header_image()); ?>';
+		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#<?php echo js_escape(xpress_upper_color()); ?>';
+		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#<?php echo js_escape(xpress_lower_color()); ?>';
+		document.getElementById('header').style.background = 'url("<?php echo js_escape(xpress_header_image_url()); ?>") center no-repeat';
+		document.getElementById('header').style.color = '';
+		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '<?php echo js_escape(xpress_header_color_string()); ?>';
+		document.getElementById('fontdisplay').value = '<?php echo js_escape(xpress_header_display_string()); ?>';
+		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+	}
+	function kInit() {
+		document.getElementById('jsForm').style.display = 'block';
+		document.getElementById('nonJsForm').style.display = 'none';
+	}
+	addLoadEvent(kInit);
+// ]]>
+</script>
+<style type='text/css'>
+	#headwrap {
+		text-align: center;
+	}
+	#xpress-header {
+		font-size: 80%;
+	}
+	#xpress-header .hibrowser {
+		width: 780px;
+		height: 260px;
+		overflow: scroll;
+	}
+	#xpress-header #hitarget {
+		display: none;
+	}
+	#xpress-header #header h1 {
+		font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
+		font-weight: bold;
+		font-size: 4em;
+		text-align: center;
+		padding-top: 70px;
+		margin: 0;
+	}
+
+	#xpress-header #header .description {
+		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
+		font-size: 1.2em;
+		text-align: center;
+	}
+	#xpress-header #header {
+		text-decoration: none;
+		color: <?php echo xpress_header_color_string(); ?>;
+		padding: 0;
+		margin: 0;
+		height: 200px;
+		text-align: center;
+		background: url('<?php echo xpress_header_image_url(); ?>') center no-repeat;
+	}
+	#xpress-header #headerimg {
+		margin: 0;
+		height: 200px;
+		width: 100%;
+		display: <?php echo xpress_header_display_string(); ?>;
+	}
+	#jsForm {
+		display: none;
+		text-align: center;
+	}
+	#jsForm input.submit, #jsForm input.button, #jsAdvanced input.button {
+		padding: 0px;
+		margin: 0px;
+	}
+	#advanced {
+		text-align: center;
+		width: 620px;
+	}
+	html>body #advanced {
+		text-align: center;
+		position: relative;
+		left: 50%;
+		margin-left: -380px;
+	}
+	#jsAdvanced {
+		text-align: right;
+	}
+	#nonJsForm {
+		position: relative;
+		text-align: left;
+		margin-left: -370px;
+		left: 50%;
+	}
+	#nonJsForm label {
+		padding-top: 6px;
+		padding-right: 5px;
+		float: left;
+		width: 100px;
+		text-align: right;
+	}
+	.defbutton {
+		font-weight: bold;
+	}
+	.zerosize {
+		width: 0px;
+		height: 0px;
+		overflow: hidden;
+	}
+	#colorPickerDiv a, #colorPickerDiv a:hover {
+		padding: 1px;
+		text-decoration: none;
+		border-bottom: 0px;
+	}
+</style>
+<?php
+}
+
+function xpress_theme_page() {
+	if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Options saved.', 'xpress').'</strong></p></div>';
+?>
+<div class='wrap'>
+	<div id="xpress-header">
+	<h2><?php _e('Header Image and Color', 'xpress'); ?></h2>
+		<div id="headwrap">
+			<div id="header">
+				<div id="headerimg">
+					<h1><?php bloginfo('name'); ?></h1>
+					<div class="description"><?php bloginfo('description'); ?></div>
+				</div>
+			</div>
+		</div>
+		<br />
+		<div id="nonJsForm">
+			<form method="post" action="">
+				<?php wp_nonce_field('xpress-header'); ?>
+				<div class="zerosize"><input type="submit" name="defaultsubmit" value="<?php echo attribute_escape(__('Save', 'xpress')); ?>" /></div>
+					<label for="njfontcolor"><?php _e('Font Color:', 'xpress'); ?></label><input type="text" name="njfontcolor" id="njfontcolor" value="<?php echo attribute_escape(xpress_header_color()); ?>" /> <?php printf(__('Any CSS color (%s or %s or %s)', 'xpress'), '<code>red</code>', '<code>#FF0000</code>', '<code>rgb(255, 0, 0)</code>'); ?><br />
+					<label for="njuppercolor"><?php _e('Upper Color:', 'xpress'); ?></label><input type="text" name="njuppercolor" id="njuppercolor" value="#<?php echo attribute_escape(xpress_upper_color()); ?>" /> <?php printf(__('HEX only (%s or %s)', 'xpress'), '<code>#FF0000</code>', '<code>#F00</code>'); ?><br />
+				<label for="njlowercolor"><?php _e('Lower Color:', 'xpress'); ?></label><input type="text" name="njlowercolor" id="njlowercolor" value="#<?php echo attribute_escape(xpress_lower_color()); ?>" /> <?php printf(__('HEX only (%s or %s)', 'xpress'), '<code>#FF0000</code>', '<code>#F00</code>'); ?><br />
+				<input type="hidden" name="hi" id="hi" value="<?php echo attribute_escape(xpress_header_image()); ?>" />
+				<input type="submit" name="toggledisplay" id="toggledisplay" value="<?php echo attribute_escape(__('Toggle Text', 'xpress')); ?>" />
+				<input type="submit" name="defaults" value="<?php echo attribute_escape(__('Use Defaults', 'xpress')); ?>" />
+				<input type="submit" class="defbutton" name="submitform" value="&nbsp;&nbsp;<?php _e('Save', 'xpress'); ?>&nbsp;&nbsp;" />
+				<input type="hidden" name="action" value="save" />
+				<input type="hidden" name="njform" value="true" />
+			</form>
+		</div>
+		<div id="jsForm">
+			<form style="display:inline;" method="post" name="hicolor" id="hicolor" action="<?php echo attribute_escape($_SERVER['REQUEST_URI']); ?>">
+				<?php wp_nonce_field('xpress-header'); ?>
+	<input type="button" class="button-secondary" onclick="tgt=document.getElementById('fontcolor');colorSelect(tgt,'pick1');return false;" name="pick1" id="pick1" value="<?php echo attribute_escape(__('Font Color', 'xpress')); ?>"></input>
+		<input type="button" class="button-secondary" onclick="tgt=document.getElementById('uppercolor');colorSelect(tgt,'pick2');return false;" name="pick2" id="pick2" value="<?php echo attribute_escape(__('Upper Color', 'xpress')); ?>"></input>
+		<input type="button" class="button-secondary" onclick="tgt=document.getElementById('lowercolor');colorSelect(tgt,'pick3');return false;" name="pick3" id="pick3" value="<?php echo attribute_escape(__('Lower Color', 'xpress')); ?>"></input>
+				<input type="button" class="button-secondary" name="revert" value="<?php echo attribute_escape(__('Revert', 'xpress')); ?>" onclick="kRevert()" />
+				<input type="button" class="button-secondary" value="<?php echo attribute_escape(__('Advanced', 'xpress')); ?>" onclick="toggleAdvanced()" />
+				<input type="hidden" name="action" value="save" />
+				<input type="hidden" name="fontdisplay" id="fontdisplay" value="<?php echo attribute_escape(xpress_header_display()); ?>" />
+				<input type="hidden" name="fontcolor" id="fontcolor" value="<?php echo attribute_escape(xpress_header_color()); ?>" />
+				<input type="hidden" name="uppercolor" id="uppercolor" value="<?php echo attribute_escape(xpress_upper_color()); ?>" />
+				<input type="hidden" name="lowercolor" id="lowercolor" value="<?php echo attribute_escape(xpress_lower_color()); ?>" />
+				<input type="hidden" name="headerimage" id="headerimage" value="<?php echo attribute_escape(xpress_header_image()); ?>" />
+				<p class="submit"><input type="submit" name="submitform" class="defbutton" value="<?php echo attribute_escape(__('Update Header &raquo;', 'xpress')); ?>" onclick="cp.hidePopup('prettyplease')" /></p>
+			</form>
+			<div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div>
+			<div id="advanced">
+				<form id="jsAdvanced" style="display:none;" action="">
+					<?php wp_nonce_field('xpress-header'); ?>
+					<label for="advfontcolor"><?php _e('Font Color (CSS):', 'xpress'); ?> </label><input type="text" id="advfontcolor" onchange="advUpdate(this.value, 'fontcolor')" value="<?php echo attribute_escape(xpress_header_color()); ?>" /><br />
+					<label for="advuppercolor"><?php _e('Upper Color (HEX):');?> </label><input type="text" id="advuppercolor" onchange="advUpdate(this.value, 'uppercolor')" value="#<?php echo attribute_escape(xpress_upper_color()); ?>" /><br />
+					<label for="advlowercolor"><?php _e('Lower Color (HEX):'); ?> </label><input type="text" id="advlowercolor" onchange="advUpdate(this.value, 'lowercolor')" value="#<?php echo attribute_escape(xpress_lower_color()); ?>" /><br />
+					<input type="button" class="button-secondary" name="default" value="<?php echo attribute_escape(__('Select Default Colors', 'xpress')); ?>" onclick="kDefaults()" /><br />
+					<input type="button" class="button-secondary" onclick="toggleDisplay();return false;" name="pick" id="pick" value="<?php echo attribute_escape(__('Toggle Text Display', 'xpress')); ?>"></input><br />
+				</form>
+			</div>
+		</div>
+	</div>
+</div>
+<?php } ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/header.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/header.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/header.php	(revision 314)
@@ -0,0 +1,47 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" <?php if (function_exists('language_attributes')) { language_attributes(); }?>>
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
+
+<title><?php bloginfo('name');
+if ( is_single() ) {
+	_e('&raquo; Blog Archive', 'xpress');
+}
+wp_title(); ?></title>
+
+<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
+<link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'xpress'), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
+<link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'xpress'), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" />
+<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
+<?php
+// comment-replay.js load  @since 2.7.0
+if (function_exists('wp_enqueue_script')) { // not function Ver2.0
+	if ( is_singular() ){  //not function Ver2.0
+		wp_enqueue_script( 'comment-reply' );
+	}
+}
+?>
+<?php wp_head(); ?>
+</head>
+<body>
+<div id="xpress_page">
+<div id="xpress-header-bar">
+	<div id="xpress-header-bar-top">
+		<div class="xpress-header-title">
+			<?php  if (xpress_selected_author_id('echo=0')) echo get_avatar(xpress_selected_author_id('echo=0'),$size = '32'); ?>
+			<a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a>
+		</div>
+		<div class="xpress-conditional-title">
+			&nbsp; <?php xpress_conditional_title();?> 
+		</div>
+	</div>
+	<div class="xpress-description">
+		<?php bloginfo('description'); ?>
+	</div>
+	<div class="xpress-operation-link">
+		<a href="<?php echo get_option('home'); ?>/"><?php _e('Mein Page','xpress')?></a> 
+		<?php if(xpress_is_contributor()) { echo ' | ' ; xpress_post_new_link('link_title='. __('Post New','xpress'). '&echo=1'); }?>
+	</div>
+</div>
+<hr class="xpress-border"></hr>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/home.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/home.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/home.php	(revision 314)
@@ -0,0 +1,111 @@
+<?php get_header(); ?>
+
+<div id="content" class="widecolumn">			
+	<h3><?php _e('Site News', 'xpress'); ?></h3>
+	<ul>
+		<?php 
+		query_posts('showposts=7');
+		if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+		<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
+		<?php endwhile; ?><?php endif; ?>
+	</ul>
+	<br />	
+	<h3><?php _e('Blogs List', 'xpress'); ?></h3>
+	<?php
+	$blog_list = get_blog_list( 0, 'all' );
+	echo "<ul>\n";
+	foreach ($blog_list AS $blog) {
+		$url =  'http://' .$blog['domain'] .$blog['path'];
+		$blog_name = get_blog_option( $blog['blog_id'], 'blogname' );
+		$post_count = $blog['postcount'];
+		
+		echo  "<li><a href=\" $url \"> $blog_name </a>  (" . __('post count','xpress') . ":$post_count) </li>";
+	}
+	echo "</ul>\n";
+	?> 
+	<br />
+		
+<?php
+	$date_format = get_settings('date_format');
+	$blog_count = get_blog_count();
+	if ($blog_count > 1){
+		echo '<h3>' . __('New Entries', 'xpress') . "</h3>\n";
+
+		$blog_list = get_blog_list();
+		echo "<ul>\n";
+		for ($i = 0; $i < $blog_count; $i++){
+    		$blog_id = $blog_list[$i]['blog_id'];
+			if ($blog_id == 1) continue;
+        	$output_blogs = '<li><a href="' .
+            get_blog_option($blog_id,'siteurl') . '">' .
+            get_blog_option($blog_id,'blogname') .
+            '</a></li>';
+        	echo $output_blogs;
+
+			$wpdb->set_blog_id($blog_id);
+			query_posts("showposts=3&post_status=publish");
+			if (have_posts()){
+				echo "<ul>\n";
+				while(have_posts()){
+					the_post();
+        			echo '<li>';
+        			echo '<a href="' . $post->guid . '">' . $post->post_title . "</a>\n(";
+        			the_time($date_format);
+        			echo ")</li>\n";
+        		}
+				echo "</ul>\n";
+			}
+		}
+		$wpdb->set_blog_id(1);
+
+		echo "</ul>\n";
+	}
+?>
+
+	<h3><?php _e('Updated Blogs', 'xpress'); ?></h3>
+	<?php
+	$blogs = get_last_updated();
+	if( is_array( $blogs ) ) {
+		?>
+		<ul>
+		<?php foreach( $blogs as $details ) {
+			?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
+		}
+		?>
+		</ul>
+		<?php
+	}
+	?>
+	<br />	
+	<?php	
+		$current_uid = get_current_user_id();
+		if (!empty($current_uid)) {
+			$user_info = get_userdata($current_uid);
+			$display_name = $user_info->display_name;
+			echo '<h3>';
+			printf(__('Howdy %s', 'xpress'),$display_name);
+			echo "</h3>\n";
+			echo "<ul>\n";
+		
+			$user_blogs = get_blogs_of_user($current_uid);
+			if( is_array($user_blogs) ) {
+				echo '<li>' . __('Your Blogs list','xpress') ;
+					echo "<ul>\n";
+					foreach( $user_blogs as $blog ) {
+						$url =  'http://' .$blog->domain .$blog->path;
+						$blog_name = $blog->blogname;
+						echo  "<li><a href=\" $url \"> $blog_name </a></li>";
+					}
+					echo "</ul>\n";			
+				echo "</li>\n";
+				wp_register();
+			}
+			echo '<li> <a href="wp-signup.php">' . __('Create a new blog','xpress') .  "</a></li>\n";
+			echo "</ul>\n";			
+		}
+
+	?>
+
+</div>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/image.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/image.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/image.php	(revision 314)
@@ -0,0 +1,64 @@
+<?php get_header(); ?>
+
+	<div id="xpress_content" class="widecolumn">
+
+  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+
+		<div class="post" id="post-<?php the_ID(); ?>">
+			<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <?php the_title(); ?></h2>
+			<div class="entry">
+				<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p> 
+				<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
+
+				<?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'xpress') . '</p>'); ?>
+
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'xpress') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+
+				<div class="navigation">
+					<div class="alignleft"><?php previous_image_link() ?></div>
+					<div class="alignright"><?php next_image_link() ?></div>
+				</div>
+				<br class="clear" />
+
+				<p class="postmetadata alt">
+					<small>
+						<?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', 'xpress'),  get_the_time(__('l, F jS, Y', 'xpress')), get_the_time(), get_the_category_list(', ')); ?>
+						<?php the_taxonomies(); ?>
+						<?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "xpress"), get_post_comments_feed_link()); ?> 
+
+						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Both Comments and Pings are open ?>
+							<?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'xpress'), trackback_url(false)); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open ?>
+							<?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'xpress'), trackback_url(false)); ?>
+
+						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Comments are open, Pings are not ?>
+							<?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'xpress'); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open ?>
+							<?php _e('Both comments and pings are currently closed.', 'xpress'); ?>
+
+						<?php } edit_post_link(__('Edit this entry.', 'xpress'),'',''); ?>
+
+					</small>
+				</p>
+
+			</div>
+
+		</div>
+
+	<?php comments_template(); ?>
+
+	<?php endwhile; else: ?>
+
+		<p><?php _e('Sorry, no posts matched your criteria.', 'xpress'); ?></p>
+
+<?php endif; ?>
+
+	</div>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/images/header-img.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/images/header-img.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/images/header-img.php	(revision 314)
@@ -0,0 +1,77 @@
+<?php
+
+$img = 'kubrickheader.jpg';
+
+// If we don't have image processing support, redirect.
+if ( ! function_exists('imagecreatefromjpeg') )
+	die(header("Location: kubrickheader.jpg"));
+
+// Assign and validate the color values
+$default = false;
+$vars = array('upper'=>array('r1', 'g1', 'b1'), 'lower'=>array('r2', 'g2', 'b2'));
+foreach ( $vars as $var => $subvars ) {
+	if ( isset($_GET[$var]) ) {
+		foreach ( $subvars as $index => $subvar ) {
+			$length = strlen($_GET[$var]) / 3;
+			$v = substr($_GET[$var], $index * $length, $length);
+			if ( $length == 1 ) $v = '' . $v . $v;
+			$$subvar = hexdec( $v );
+			if ( $$subvar < 0 || $$subvar > 255 )
+				$default = true;
+		}
+	} else {
+		$default = true;
+	}
+}
+
+if ( $default )
+	list ( $r1, $g1, $b1, $r2, $g2, $b2 ) = array ( 105, 174, 231, 65, 128, 182 );
+
+// Create the image
+$im = imagecreatefromjpeg($img);
+
+// Get the background color, define the rectangle height
+$white = imagecolorat( $im, 15, 15 );
+$h = 182;
+
+// Define the boundaries of the rounded edges ( y => array ( x1, x2 ) )
+$corners = array(
+	0 => array ( 25, 734 ),
+	1 => array ( 23, 736 ),
+	2 => array ( 22, 737 ),
+	3 => array ( 21, 738 ),
+	4 => array ( 21, 738 ),
+	177 => array ( 21, 738 ),
+	178 => array ( 21, 738 ),
+	179 => array ( 22, 737 ),
+	180 => array ( 23, 736 ),
+	181 => array ( 25, 734 ),
+	);
+
+// Blank out the blue thing
+for ( $i = 0; $i < $h; $i++ ) {
+	$x1 = 19;
+	$x2 = 740;
+	imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white );
+}
+
+// Draw a new color thing
+for ( $i = 0; $i < $h; $i++ ) {
+	$x1 = 20;
+	$x2 = 739;
+	$r = ( $r2 - $r1 != 0 ) ? $r1 + ( $r2 - $r1 ) * ( $i / $h ) : $r1;
+	$g = ( $g2 - $g1 != 0 ) ? $g1 + ( $g2 - $g1 ) * ( $i / $h ) : $g1;
+	$b = ( $b2 - $b1 != 0 ) ? $b1 + ( $b2 - $b1 ) * ( $i / $h ) : $b1;
+	$color = imagecolorallocate( $im, $r, $g, $b );
+	if ( array_key_exists($i, $corners) ) {
+		imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white );
+		list ( $x1, $x2 ) = $corners[$i];
+	}
+	imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $color );
+}
+
+//die;
+header("Content-Type: image/jpeg");
+imagejpeg($im, '', 92);
+imagedestroy($im);
+?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/index.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/index.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/index.php	(revision 314)
@@ -0,0 +1,73 @@
+<?php get_header(); ?>
+
+		
+<div id="xpress_wrap">				
+	<?php
+		if(xpress_is_theme_sidebar_disp()) {
+			echo '<div id="xpress_content" class="narrowcolumn">';	
+		} else {
+			echo '<div id="xpress_content" class="narrowcolumn_nonside">';
+		}	
+	?>				
+		<?php if (have_posts()) : ?>
+			<div class="xpress-navi-bar">
+				<?php if(function_exists('wp_pagenavi')) : ?>			
+					<div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div>
+				<?php else : ?>
+					<div class="alignleft"><?php xpress_left_arrow_posts_link('echo=1'); ?></div>
+					<div class="alignright"><?php xpress_right_arrow_posts_link('echo=1'); ?></div>
+				<?php endif; ?>
+			</div>
+				
+			<?php while (have_posts()) : the_post(); ?>
+
+				<div class="xpress-post" id="post-<?php the_ID(); ?>">
+					<div class ="xpress-post-header">
+						<?php if (function_exists('hotDates')) { hotDates(); }?>
+						<div class ="xpress-post-title">
+							<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
+						</div>
+					</div>
+					<div class="xpress-post-entry">
+						<?php xpress_the_content('more_link_text=' . __('Read the rest of this entry &raquo;', 'xpress') ); ?>
+					</div>
+					<div class="xpress-link-pages"><?php wp_link_pages() ?></div>
+					<div class ="xpress-post-footer">
+					<?php
+						the_time('Y/m/d l');
+						echo ' - ';
+						the_author_posts_link();
+						echo ' (' . xpress_post_views_count('post_id=' . $post->ID . '&format=' . __('Views :%d', 'xpress'). '&echo=0') . ')'; 
+						echo ' | ';
+						// echo the_tags(__('Tags:', 'xpress') . ' ', ', ', ' | ');
+						printf(__('Posted in %s', 'xpress'), get_the_category_list(', '));
+						echo ' | ';
+						edit_post_link(__('Edit', 'xpress'), '', ' | ');
+						comments_popup_link(__('No Comments &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') );
+					?>
+					</div>
+				</div>
+
+			<?php endwhile; ?>
+				
+			<div class="xpress-navi-bar">
+				<?php if(function_exists('wp_pagenavi')) : ?>			
+					<div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div>
+				<?php else : ?>
+					<div class="alignleft"><?php xpress_left_arrow_posts_link('echo=1'); ?></div>
+					<div class="alignright"><?php xpress_right_arrow_posts_link('echo=1'); ?></div>
+				<?php endif; ?>
+			</div>
+				
+		<?php else : ?>
+
+			<h2 class="center"><?php _e('Not Found', 'xpress'); ?></h2>
+			<p class="center"><?php _e('Sorry, but you are looking for something that isn&#8217;t here.', 'xpress'); ?></p>
+			<?php include (get_template_directory() . "/searchform.php"); ?>
+
+		<?php endif; ?>
+	</div>
+</div>
+<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/ja.po
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/ja.po	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/ja.po	(revision 314)
@@ -0,0 +1,711 @@
+# WordPress 用日本語リソース (UTF-8) 
+# Japanese (UTF-8) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# このファイルは WordPress 本体と同じライセンスのもと配布されています。
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress 日本語版作成チーム / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  誤字脱字誤訳、あるいはよりよい訳などありましたら以下までぜひお知らせください。
+#  また、翻訳、校正、コミットをお手伝いしていただける方も随時募集中です。
+#  連絡先 / Contact: wpja.team@gmail.com (件名か内容に「日本語リソース」と入れてください)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2009-05-21 17:20+0900\n"
+"Last-Translator: toemon <toychee@toemon.com>\n"
+"Language-Team: toemon <info@toemon.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\xpress_mu_home\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:22
+msgid "Error 404 - Not Found"
+msgstr "エラー 404 - 見つかりませんでした"
+
+#: archives.php:20
+msgid "Archives by Month:"
+msgstr "月別のアーカイブ:"
+
+#: archives.php:25
+msgid "Archives by Subject:"
+msgstr "カテゴリー別アーカイブ:"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s へのコメント"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "コメント"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "コメント"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "トラックバック"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "ピンバック"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "コメントはまだありません。"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "コメントをどうぞ"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>"
+
+#: comments-popup.php:64
+#: comments.php:54
+msgid "Name"
+msgstr "お名前"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "メールアドレス"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "コメント"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "送信する !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "コメントフォームは現在閉鎖中です。"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "このウインドウを閉じる。"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: comments.php:6
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。"
+
+#: comments.php:16
+msgid "No Responses"
+msgstr "コメント はありません"
+
+#: comments.php:16
+msgid "One Response"
+msgstr "コメント 1 件"
+
+#: comments.php:16
+msgid "% Responses"
+msgstr "コメント % 件"
+
+#: comments.php:16
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:32
+msgid "Comments are closed."
+msgstr "現在コメントは受け付けていません。"
+
+#: comments.php:38
+msgid "Leave a Reply"
+msgstr "コメントをどうぞ"
+
+#: comments.php:38
+#, php-format
+msgid "Leave a Reply for %s"
+msgstr "%s にコメントする"
+
+#: comments.php:46
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:51
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:51
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:51
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:54
+#: comments.php:57
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:57
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:60
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:65
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:69
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: footer.php:5
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:5
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:5
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:7
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d 個のクエリと %s 秒を要しました。"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "ヘッダーのカスタマイズ"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "設定を保存しました。"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ブログアーカイブ"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS フィード"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom フィード"
+
+#: header.php:43
+msgid "Mein Page"
+msgstr "メインページ"
+
+#: header.php:44
+msgid "Post New"
+msgstr "新規投稿"
+
+#: home.php:4
+msgid "Site News"
+msgstr "サイトニュース"
+
+#: home.php:13
+msgid "Blogs List"
+msgstr "ブログリスト"
+
+#: home.php:22
+msgid "post count"
+msgstr "投稿数"
+
+#: home.php:32
+msgid "New Entries"
+msgstr "新着情報"
+
+#: home.php:65
+msgid "Updated Blogs"
+msgstr "最近更新があったブログ"
+
+#: home.php:86
+#, php-format
+msgid "Howdy %s"
+msgstr "こんにちは %s さん"
+
+#: home.php:92
+msgid "Your Blogs list"
+msgstr "あなたのブログリスト"
+
+#: home.php:103
+msgid "Create a new blog"
+msgstr "新しいブログを作成する"
+
+#: image.php:13
+#: index.php:32
+#: single.php:28
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:29
+msgid "Pages:"
+msgstr "ページ:"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。"
+
+#: image.php:25
+#: sidebar.php:24
+msgid "l, F jS, Y"
+msgstr "Y 年 n 月 j 日 l"
+
+#: 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 "この投稿へのコメントは <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 "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<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 "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。"
+
+#: image.php:39
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。"
+
+#: image.php:43
+msgid "Both comments and pings are currently closed."
+msgstr "現在コメント、トラックバックともに受け付けておりません。"
+
+#: image.php:45
+#: page.php:34
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: image.php:58
+#: single.php:85
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:28
+#: single.php:23
+#: blocks/recent_posts_content_block_theme.php:113
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: index.php:40
+#: single.php:38
+#: blocks/recent_posts_content_block_theme.php:125
+#, php-format
+msgid "Views :%d"
+msgstr "閲覧 :%d"
+
+#: index.php:43
+#: single.php:41
+#: blocks/recent_posts_content_block_theme.php:128
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:45
+#: single.php:43
+#: blocks/recent_posts_content_block_theme.php:130
+msgid "Edit"
+msgstr "編集"
+
+#: index.php:46
+#: single.php:44
+#: blocks/recent_posts_content_block_theme.php:131
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: index.php:46
+#: single.php:44
+#: blocks/recent_posts_content_block_theme.php:131
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: index.php:46
+#: single.php:44
+#: blocks/recent_posts_content_block_theme.php:131
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: index.php:46
+#: single.php:44
+#: blocks/recent_posts_content_block_theme.php:131
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: index.php:64
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: index.php:65
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:18
+msgid "Links:"
+msgstr "リンク:"
+
+#: page.php:27
+msgid "Read the rest of this page &raquo;"
+msgstr "このページの続きを読む &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "検索:"
+
+#: searchform.php:4
+#: blocks/search_block_theme.php:13
+msgid "Search"
+msgstr "検索"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "作成者"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+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 "<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 "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。"
+
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y 年 n 月"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "ページ"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "アーカイブ"
+
+#: sidebar.php:51
+#: sidebar.php:53
+msgid "Categories"
+msgstr "カテゴリー"
+
+#: sidebar.php:62
+msgid "Meta"
+msgstr "メタ情報"
+
+#: sidebar.php:66
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する"
+
+#: sidebar.php:66
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:67
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:67
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:68
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:49
+msgid "No Trackback/Pingback"
+msgstr "トラックバック・ピンバックはありません"
+
+#: single.php:49
+msgid "One Trackback/Pingback"
+msgstr "トラックバック・ピンバック 1 件"
+
+#: single.php:49
+msgid "% TrackBack/Pingback"
+msgstr "トラックバック・ピンバック % 件"
+
+#: single.php:53
+#, php-format
+msgid "You can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることができます。"
+
+#: single.php:55
+msgid "Pinging is currently not allowed."
+msgstr "トラックバック / ピンバックは現在受け付けていません。"
+
+#: blocks/archives_block_theme.php:13
+msgid "Select Yearly"
+msgstr "年を選択"
+
+#: blocks/archives_block_theme.php:16
+#: blocks/archives_block_theme.php:28
+msgid "Select Monthly"
+msgstr "月を選択"
+
+#: blocks/archives_block_theme.php:19
+msgid "Select Weekly"
+msgstr "週を選択"
+
+#: blocks/archives_block_theme.php:22
+msgid "Select Daily"
+msgstr "日を選択"
+
+#: blocks/archives_block_theme.php:25
+msgid "Select Post"
+msgstr "記事を選択"
+
+#: blocks/authors_block_theme.php:26
+msgid "All Authors"
+msgstr "全ての投稿者"
+
+#: blocks/enhanced_block_theme.php:11
+msgid "The include file name to display it is not set."
+msgstr "表示を行うためのインクルードファイル名が設定されていません。"
+
+#: blocks/enhanced_block_theme.php:13
+#, php-format
+msgid "File %s not exist."
+msgstr "ファイル %s が見つかりません。"
+
+#: blocks/enhanced_block_theme.php:19
+msgid "PHP code error"
+msgstr "PHPコードにエラーがあります。"
+
+#: blocks/meta_block_theme.php:24
+msgid "Posts RSS"
+msgstr "投稿の RSS"
+
+#: blocks/meta_block_theme.php:27
+msgid "Comments RSS"
+msgstr "コメント のRSS"
+
+#: blocks/meta_block_theme.php:39
+msgid "Add New"
+msgstr "新規投稿"
+
+#: blocks/meta_block_theme.php:47
+msgid "Site Admin"
+msgstr "WordPress管理"
+
+#: blocks/meta_block_theme.php:53
+msgid "User Profile"
+msgstr "ユーザープロファイル"
+
+#: blocks/meta_block_theme.php:61
+#: blocks/meta_block_theme.php:66
+msgid "Subscription management"
+msgstr "メール購読の設定"
+
+#: blocks/meta_block_theme.php:74
+msgid "ReadMe"
+msgstr "ReadMe表示"
+
+#: blocks/meta_block_theme.php:79
+msgid "Themes"
+msgstr "テーマ選択"
+
+#: blocks/popular_posts_block_theme.php:109
+#: blocks/recent_posts_content_block_theme.php:65
+#: blocks/recent_posts_list_block_theme.php:67
+msgid "Tags:"
+msgstr "タグ:"
+
+#: blocks/popular_posts_block_theme.php:135
+#: blocks/recent_posts_content_block_theme.php:102
+#: blocks/recent_posts_list_block_theme.php:93
+msgid "Comments (0)"
+msgstr "コメントはありません"
+
+#: blocks/popular_posts_block_theme.php:135
+#: blocks/recent_posts_content_block_theme.php:102
+#: blocks/recent_posts_list_block_theme.php:93
+msgid "Comments (1)"
+msgstr "1件のコメント"
+
+#: blocks/popular_posts_block_theme.php:135
+#: blocks/recent_posts_content_block_theme.php:102
+#: blocks/recent_posts_list_block_theme.php:93
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/popular_posts_block_theme.php:144
+#, php-format
+msgid "views: %d"
+msgstr "閲覧 :%d回"
+
+#: blocks/recent_comments_block_theme.php:73
+#, fuzzy, php-format
+msgid "%1$s on %2$s"
+msgstr "%1$s と %2$s"
+
+#: blocks/recent_posts_content_block_theme.php:75
+msgid "more"
+msgstr "続きを読む"
+
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/links.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/links.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/links.php	(revision 314)
@@ -0,0 +1,25 @@
+<?php
+/*
+Template Name: Links
+*/
+?>
+
+<?php get_header(); ?>
+
+<div id="xpress_content" class="widecolumn">
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+<h2><?php _e('Links:', 'xpress'); ?></h2>
+<ul>
+<?php wp_list_bookmarks(); ?>
+</ul>
+
+</div>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/page.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/page.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/page.php	(revision 314)
@@ -0,0 +1,41 @@
+<?php get_header(); ?>
+
+   <div id="xpress_wrap">
+	   
+	<?php if(xpress_is_theme_sidebar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+		<div class="post" id="post-<?php the_ID(); ?>">
+		<?php if (function_exists('hotDates')) { hotDates(); }?>
+		<h2><?php the_title(); ?></h2>
+			<div class="entry">
+				<?php the_content('<p class="serif">' . __('Read the rest of this page &raquo;', 'xpress') . '</p>'); ?>
+
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'xpress') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+
+			</div>
+		</div>
+		<?php endwhile; endif; ?>
+	<?php edit_post_link(__('Edit this entry.', 'xpress'), '<p>', '</p>'); ?>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/rtl.css
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/rtl.css	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/rtl.css	(revision 314)
@@ -0,0 +1,106 @@
+/*
+Theme name: WordPress Default - kubrick -
+Editors: Navid Kashani
+Persian Wordpress Project : wp-persian.com
+*/
+body, .commentlist li, #commentform input, #commentform textarea, #commentform p, #sidebar, #wp-calendar caption  {
+	font-family:tahoma, arial;
+}
+#page {
+	text-align:right;
+	direction:rtl;
+}
+h1, h2, h3, #sidebar h2 {
+	font-family:arial, tahoma;
+}
+.commentlist li .avatar {
+	float:left;
+}
+#header {
+	margin:0 1px 0 0;
+}
+.narrowcolumn {
+	float:right;
+	padding: 0 45px 20px 0;
+}
+.widecolumn {
+	margin: 5px 150px 0 0;
+}
+.widecolumn .smallattachment {
+	margin: 5px 0 5px 5px;
+}
+.postmetadata {
+	clear:right;
+}
+#sidebar {
+	margin-left: 0;
+	margin-right: 545px;
+}
+img.alignright {
+	margin: 0 7px 2px 0;
+}
+
+img.alignleft {
+	margin: 0 0 2px 7px;
+}
+
+.alignright {
+	float: left;
+}
+
+.alignleft {
+	float: right;
+}
+code {
+	display:block;
+	direction:ltr;
+	text-align:left;
+}
+acronym, abbr, span.caps {
+	letter-spacing:0; /* fix opera bug */
+}
+html>body .entry ul {
+	padding:0 10px 0 0;
+	text-indent:10px;
+}
+html>body .entry li {
+	margin: 7px 10px 8px 0;
+}
+.entry ol {
+	padding: 0 35px 0 0;
+}
+#sidebar ul ul, #sidebar ul ol {
+	margin: 5px 10px 0 0;
+}
+#sidebar ul ul ul, #sidebar ul ol {
+	margin: 0 10px 0 0;
+}
+#commentform input {
+	margin: 5px 0 1px 5px;
+}
+#commentform #submit {
+	float:left;
+}
+.commentlist p {
+	margin: 10px 0 10px 5px;
+}
+#wp-calendar #next a {
+	padding-right:0;
+	padding-left:10px;
+	text-align:left;
+}
+#wp-calendar #prev a {
+	padding-left:0;
+	padding-right:10px;
+	text-align:right;
+}
+blockquote {
+	margin: 15px 10px 0 30px;
+	padding-left: 0;
+	padding-right: 20px;
+	border-left: 0 none;
+	border-right: 5px solid #ddd;
+}
+#email, #url {
+	direction:ltr;
+}
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/searchform.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/searchform.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/searchform.php	(revision 314)
@@ -0,0 +1,6 @@
+<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
+<label class="hidden" for="s"><?php _e('Search for:', 'xpress'); ?></label>
+<div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
+<input type="submit" id="searchsubmit" value="<?php _e('Search', 'xpress'); ?>" />
+</div>
+</form>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/sidebar.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/sidebar.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/sidebar.php	(revision 314)
@@ -0,0 +1,75 @@
+	<div id="xpress_sidebar">
+		<ul>
+			<?php 	/* Widgetized sidebar, if you have the plugin installed. */
+					if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
+			<li>
+				<?php include (get_template_directory() . '/searchform.php'); ?>
+			</li>
+
+			<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
+			<li><h2><?php _e('Author', 'xpress'); ?></h2>
+			<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
+			</li>
+			-->
+
+			<?php if ( is_404() || is_category() || is_day() || is_month() ||
+						is_year() || is_search() || is_paged() ) {
+			?> <li>
+
+			<?php /* If this is a 404 page */ if (is_404()) { ?>
+			<?php /* If this is a category archive */ } elseif (is_category()) { ?>
+			<p><?php printf(__('You are currently browsing the archives for the %s category.', 'xpress'), single_cat_title('', false)); ?></p>
+
+			<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for the day %3$s.', 'xpress'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('l, F jS, Y', 'xpress'))); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for %3$s.', 'xpress'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('F, Y', 'xpress'))); ?></p>
+
+			<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for the year %3$s.', 'xpress'), get_bloginfo('url'), get_bloginfo('name'), get_the_time('Y')); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
+			<p><?php printf(__('You have searched the <a href="%1$s/">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.', 'xpress'), get_bloginfo('url'), get_bloginfo('name'), get_search_query()); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives.', 'xpress'), get_bloginfo('url'), get_bloginfo('name')); ?></p>
+
+			<?php } ?>
+
+			</li> <?php }?>
+
+			<?php wp_list_pages('title_li=<h2>' . __('Pages', 'xpress') . '</h2>' ); ?>
+
+			<li><h2><?php _e('Archives', 'xpress'); ?></h2>
+				<ul>
+				<?php wp_get_archives('type=monthly'); ?>
+				</ul>
+			</li>
+            
+            <?php if(function_exists('wp_list_categories')) : ?>
+			<?php wp_list_categories('show_count=1&title_li=<h2>' . __('Categories', 'xpress') . '</h2>'); ?>
+			<?php else : ?>
+			<li><h2><?php _e('Categories', 'xpress'); ?></h2>
+			<ul><?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?></ul></li>
+			<?php endif; ?>
+
+
+			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
+            <?php if(function_exists('wp_list_bookmarks')) : ?>
+				<?php wp_list_bookmarks(); ?>
+			<?php endif; ?>
+				<li><h2><?php _e('Meta', 'xpress'); ?></h2>
+				<ul>
+					<?php wp_register(); ?>
+					<li><?php wp_loginout(); ?></li>
+					<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional', 'xpress'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>', 'xpress'); ?></a></li>
+					<li><a href="http://gmpg.org/xfn/"><abbr title="<?php _e('XHTML Friends Network', 'xpress'); ?>"><?php _e('XFN', 'xpress'); ?></abbr></a></li>
+					<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'xpress'); ?>">WordPress</a></li>
+					<?php wp_meta(); ?>
+				</ul>
+				</li>
+			<?php } ?>
+			<?php endif; ?>
+		</ul>
+	</div>
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/single.php
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/single.php	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/single.php	(revision 314)
@@ -0,0 +1,92 @@
+<?php get_header(); ?>
+
+<div id="xpress_wrap">				
+	<?php
+		if(xpress_is_theme_sidebar_disp()) {
+			echo '<div id="xpress_content" class="narrowcolumn">';	
+		} else {
+			echo '<div id="xpress_content" class="narrowcolumn_nonside">';
+		}	
+	?>				
+		<?php if (have_posts()) : ?>
+				
+			<?php while (have_posts()) : the_post(); ?>
+				<div class="xpress-navi-bar">
+					<div class="alignleft"><?php xpress_left_arrow_post_link('ehoo=1'); ?></div>
+					<div class="alignright"><?php xpress_right_arrow_post_link('ehoo=1'); ?></div>
+				</div>
+
+				<div class="xpress-post" id="post-<?php the_ID(); ?>">
+					<div class ="xpress-post-header">
+						<?php if (function_exists('hotDates')) { hotDates(); }?>
+						<div class ="xpress-post-title">
+							<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
+						</div>
+					</div>
+							
+					<div class="xpress-post-entry">
+						<?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'xpress') . '</p>'); ?>
+					</div>
+							
+					<div class="xpress-link-pages"><?php wp_link_pages() ?></div>
+						
+					<div class ="xpress-post-footer">
+						<?php
+							the_time('Y/m/d l');
+							echo ' - ';
+							the_author_posts_link();
+							echo ' (' . xpress_post_views_count('post_id=' . $post->ID . '&format=' . __('Views :%d', 'xpress'). '&echo=0') . ')'; 
+							echo ' | ';
+							// echo the_tags(__('Tags:', 'xpress') . ' ', ', ', ' | ');
+							printf(__('Posted in %s', 'xpress'), get_the_category_list(', '));
+							echo ' | ';
+							edit_post_link(__('Edit', 'xpress'), '', ' | ');
+							comments_popup_link(__('No Comments &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') );
+						?>
+					</div>
+							
+					<div id ="xpress-pings-block">
+						<h3><?php xpress_pings_number('zero=' . __('No Trackback/Pingback', 'xpress'). '&one='. __('One Trackback/Pingback', 'xpress'). '&more=' . __('% TrackBack/Pingback', 'xpress')) ?></h3>
+						<p class="xpress_pings_status"><small>
+						<?php
+							if ('open' == $post->ping_status) {
+								printf(__('You can <a href="%s" rel="trackback">trackback</a> from your own site.', 'xpress'), trackback_url(false));
+							} else {
+								_e('Pinging is currently not allowed.', 'xpress'); 
+							}
+						?>
+						</small></p>
+						<?php xpress_pings_list('echo=1') ?>					
+					</div>
+							
+					<div id ="xpress-comments-block">
+						<?php comments_template('', true); ?>
+					</div>
+				</div>
+				
+				<div class="xpress-navi-bar">
+					<div class="alignleft"><?php xpress_left_arrow_post_link('ehoo=1') ?></div>
+					<div class="alignright"><?php xpress_right_arrow_post_link('ehoo=1') ?></div>
+				</div>
+
+
+			<?php endwhile; ?>
+				
+			<div class="xpress-navi-bar">
+				<?php if(function_exists('wp_pagenavi')) : ?>			
+					<div class="xpress_pagenavi"><?php wp_pagenavi(); ?></div>
+				<?php else : ?>
+					<div class="alignleft"><?php xpress_left_arrow_posts_link('echo=1'); ?></div>
+					<div class="alignright"><?php xpress_right_arrow_posts_link('echo=1'); ?></div>
+				<?php endif; ?>
+			</div>
+				
+		<?php else : ?>
+			<p><?php _e('Sorry, no posts matched your criteria.', 'xpress'); ?></p>
+		<?php endif; ?>
+	</div>
+</div>
+<?php if(xpress_is_theme_sidebar_disp()) get_sidebar(); ?>
+
+<?php get_footer(); ?>
+
Index: trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/style.css
===================================================================
--- trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/style.css	(revision 314)
+++ trunk/extras/for_wordpress_mu/src/wp-content/themes/xpress_mu_home/style.css	(revision 314)
@@ -0,0 +1,750 @@
+/*
+Theme Name: XPressMU HOME Themes
+Theme URI: http://trac.xpressme.info/XPressME
+Description: The theme for XPressMU (XPressME included WordPress MU)
+Version: 1.6
+Author: toemon
+Author URI: http://www.toemon.com/
+Tags: none color, xpressme default, variable width, two columns, widgets
+
+*/
+
+#xpress_page {
+	padding: 0;
+	width: 100%;
+	margin: 0;
+	text-align:left;
+	}
+	
+#xpress_page .clear {
+	clear: both;
+}
+
+#xpress_page h1 {
+	padding-top: 20px;
+	margin: 0 0 5px;
+	font-size: 18px;
+	}
+	
+#xpress_page h2 {
+	font-size: 16px;
+	}
+
+#xpress_page h3 {
+	padding: 0;
+	margin: 0;
+	}
+	
+#xpress_page h3 {
+	font-size: 14px;
+	}
+	
+#xpress_page small {
+	font-family: Arial, Helvetica, Sans-Serif;
+	color: #777;
+	font-size: 0.8em;
+	line-height: 1.5em;
+	}
+	
+#xpress_page code {
+	font-size: 1.1em;
+	}
+
+#xpress_page select {
+	width: 130px;
+	}
+
+#xpress_page .hidden {
+	display: none;
+	}
+
+
+#xpress_page a img {
+	border: none;
+	}
+	
+#xpress_page .center {
+	text-align: center;
+	}
+
+
+#xpress_wrap {
+	float: left;
+	width: 100%;
+	margin-right: -205px;
+	}
+	
+#xpress_content {
+	font-size: 1.0em;
+	padding: 0px;
+	}
+	
+#xpress_content.narrowcolumn {
+	margin-right: 200px;
+	}
+
+
+/* Begin Header Menu */
+
+#xpress-header-bar {
+	clear: both;
+}
+#xpress-header-bar-top {
+	height: 32px;
+	margin-bottom: 16px;
+	}
+#xpress-header-bar-top img{
+	vertical-align: top;
+}
+#xpress-header-bar #xpress-header-bar-top .xpress-header-title {
+	float: left;
+	font-size: 16px;
+}
+#xpress-header-bar #xpress-header-bar-top .xpress-conditional-title {
+	font-size: 14px;
+	margin-bottom: 20px;
+
+}
+
+#xpress-header-bar .xpress-description {
+	clear: both;
+	font-size: 12px;
+	float: left;
+}
+
+#xpress-header-bar .xpress-operation-link {
+	font-size: 12px;
+	text-align: right;
+}
+/* End Header Menu */
+
+
+/* Begin Border line */
+.xpress-border {
+	clear: both;
+	display: block;
+	}
+/* End Border lin */
+
+
+/* Begin Navi */
+.xpress-navi-bar {
+	clear: both;
+	display: block;
+	}
+	
+.xpress_pagenavi {
+	display: block;
+	margin: 0 auto;
+	padding: 5px 0;
+	text-align: right;
+}
+/* End Navi */
+
+
+/* Begin Post */
+.xpress-post {
+	width: 100%;
+	margin: 0px;
+	padding-top:20px;
+	clear: both;
+	}
+.xpress-post h2 {
+	margin: 0;
+	}
+.xpress-post hr {
+	display: block;
+	}
+	
+.xpress-post .xpress-post-header{
+	text-align: left;
+	font-size: 0.8em;
+
+	}
+
+.xpress-post .xpress-post-entry {
+	clear: both;
+	padding-left: 20px;
+
+}
+
+.xpress-post .xpress-link-pages {
+	padding-top:10px;
+	clear: both;
+	text-align: center;
+}
+
+.xpress-post .xpress-post-footer{
+	text-align: right;
+	font-size: 0.8em;
+	margin-bottom: 10px;
+}
+/* End post */
+
+
+/* Begin Pings */
+#xpress-pings-block {
+	margin-top: 0px;
+	margin-bottom: 0px;
+	margin-left: 5px;
+	margin-right: 5px;
+	padding-top:0px;
+	padding-left:20px;
+	padding-right:5px;
+	padding-bottom:0px;
+	clear: both;
+	}
+#xpress_pingslist ol{
+	font-size: 1em;
+	list-style-image:none;
+	list-style-position:inside;
+	list-style-type:none;
+	}
+#xpress_pingslist li{
+	margin: 0px;
+	padding-top: 0px;
+	padding-bottom: 0px;
+	padding-left: 5px;
+	padding-right: 1px;
+	font-size: 1em;
+	list-style-image:none;
+	list-style-position:inside;
+	list-style-type:none;
+	}
+.xpress_pings_status {
+	text-align: center;xpress_pings_status
+	margin: 0;
+	padding: 0;
+	}
+/* End pings */
+
+
+/* Begin Comment */
+#xpress-comments-block {
+	margin-top: 0px;
+	margin-bottom: 5px;
+	margin-left: 5px;
+	margin-right: 5px;
+	padding-top:0px;
+	padding-left:20px;
+	padding-right:5px;
+	padding-bottom:10px;
+	clear: both;
+	}
+
+#xpress_commentlist {
+	margin: 0px;
+	padding-left: 20px;
+	}
+
+#xpress_commentlist ol{
+	font-size: 1em;
+	list-style-image:none;
+	list-style-position:inside;
+	list-style-type:none;
+	}
+	
+#xpress_commentlist li{
+	margin: 0px;
+	padding-top: 5px;
+	padding-bottom: 0px;
+	padding-left: 5px;
+	padding-right: 1px;
+	font-size: 1em;
+	list-style-image:none;
+	list-style-position:inside;
+	list-style-type:none;
+	}
+	
+#xpress_commentlist .even {
+	background:#F4F4F4 none repeat scroll 0 0;
+	margin-top: 4px;
+	padding-top: 0px;
+	padding-bottom: 4px;
+	padding-left: 10px;
+	padding-right:0px
+	}
+
+#xpress_commentlist .odd {
+	background:#EFEFEF none repeat scroll 0 0;
+	margin-top: 4px;
+	padding-top: 0px;
+	padding-bottom: 4px;
+	padding-left: 10px;
+	padding-right:0px
+	}
+	
+#xpress_commentlist .avatar { 
+	float: right;
+	border: 1px solid #eee;
+	padding: 2px;
+	background: #efefef;
+	}
+
+#xpress_commentlist cite, .commentlist cite a {
+	font-weight: bold;
+	font-style: normal;
+	font-size: 1.1em;
+	}
+
+#xpress-comment-form {
+	margin: 0px;
+	padding-top: 0px;
+	padding-bottom: 0px;
+	padding-left: 20px;
+	padding-right: 5px;
+	font-size: 18px;
+
+}
+
+#xpress-respond {
+	margin: 0px;
+	padding-top: 10px;
+	padding-bottom: 5px;
+	padding-left: 0px;
+	padding-right: 0px;
+}
+
+#xpress-comment-user {
+	margin: 0px;
+	padding-top: 0px;
+	padding-bottom: 0px;
+	padding-left: 20px;
+	padding-right: 0px;
+}
+
+#xpress-comment-form .xpress-comment-submit{
+	margin: 0px;
+	padding-top: 5px;
+	padding-bottom: 0px;
+	padding-left: 0px;
+	padding-right: 0px;
+	font-size: 12px;
+
+}
+
+.nocomments {
+	text-align: center;
+	margin: 0;
+	padding: 0;
+	}
+/* End Comments */
+
+
+/* Begin Footer Title */
+#xpress_footer {
+	padding-top: 0px;
+	margin: 0 auto;
+	width: 100%;
+	clear: both;
+	text-align: center;
+	}
+#xpress_footer p {
+	font-size: 0.9em;
+}	
+
+#xpress_footer .xpress_rss {
+	margin: 0;
+	padding: 0;
+	text-align: right;
+	}
+
+#xpress_footer .xpress_credit {
+	margin: 0;
+	padding: 0;
+	text-align: center;
+	font-size: 10px;
+	color: #BDBDBD;
+	}
+	
+#xpress_footer .xpress_credit a {
+	font-size: 10px;
+	color: #BDBDBD;
+	}
+/* End Footer Title */
+
+
+/* Begin Sidebar */
+#xpress_sidebar {
+	float: right;
+	display:inline;
+	margin-top: 0px;
+	margin-bottom: 0px;
+	margin-left: 10px;
+	margin-right: 0px;
+	padding-top: 0px;
+	padding-bottom: 0px;
+	padding-left: 100px
+	padding-right: 0px
+	font-size: 0.8em;
+	width: 180px;
+	}
+	
+#xpress_sidebar h2 {
+	margin: 5px 0 0;
+	padding: 0;
+	font-size: 14px;
+	}
+
+#xpress_sidebar form {
+	margin: 0;
+	}
+
+#xpress_sidebar ul ul li:before {
+	content: "\00BB \0020";
+	}
+
+#xpress_sidebar ul, #xpress_sidebar ul ol {
+	margin: 0;
+	padding: 0;
+	list-style-type: none;
+	list-style-image: none;
+	list-style: none;
+	list-style-position:inside;
+	}
+
+#xpress_sidebar ul li {
+	list-style-type: none;
+	list-style-image: none;
+	margin-bottom: 15px;
+	}
+
+#xpress_sidebar ul p, #xpress_sidebar ul select {
+	margin: 5px 0 8px;
+	}
+
+#xpress_sidebar ul ul, #xpress_sidebar ul ol {
+	margin: 5px 0 0 10px;
+	}
+
+#xpress_sidebar ul ul ul, #xpress_sidebar ul ol {
+	margin: 0 0 0 10px;
+	}
+
+
+#xpress_sidebar ul ul li, #xpress_sidebar ul ol li {
+	margin: 3px 0 0;
+	padding: 0;
+	}
+
+#xpress_sidebar #searchform {
+	margin: 0px ;
+	padding: 0px;
+	text-align: left;
+	}
+
+#xpress_sidebar #searchform #s {
+	width: 108px;
+	padding: 2px;
+	}
+
+#xpress_sidebar #searchsubmit {
+	padding: 1px;
+	}
+/* End Sidebar */
+
+
+/* Begin Calendar */
+#wp-calendar {
+	empty-cells: show;
+	margin: 10px auto 0;
+	width: 155px;
+	}
+
+#wp-calendar #next a {
+	padding-right: 10px;
+	text-align: right;
+	font-size: 9pt;
+	}
+
+#wp-calendar #prev a {
+	padding-left: 10px;
+	text-align: left;
+	font-size: 9pt;
+	}
+
+#wp-calendar a {
+	display: block;
+	text-decoration: none;
+	}
+
+#wp-calendar caption {
+	text-align: center;
+	width: 100%;
+	font: bold 1.3em;
+	}
+
+#wp-calendar td {
+	padding: 3px 0;
+	text-align: center;
+	}
+
+#wp-calendar td.pad:hover { /* Doesn't work in IE */
+	background-color: #fff; }
+
+#wp-calendar th {
+	font-style: normal;
+	text-transform: capitalize;
+	}
+/* End Calendar */
+	
+
+
+/* Nocheck Under css */
+
+
+.widecolumn .entry {
+	font-size: 1.05em;
+	}
+
+.narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry {
+	line-height: 1.4em;
+	}
+	
+p.postmeta{
+	line-height: 1.2em;
+	font-size: 0.9em;
+	}
+
+
+#xpress_headerimg .description {
+	font-size: 1.2em;
+	}
+
+
+.xpress_pagetitle {
+	font-size: 1.5em;
+	font-weight: bold;
+	}
+	
+.xpress_commentmetadata {
+	font-size: 11px;
+	font-weight: normal;
+	}
+
+.postmetadata {
+	font-size: 0.9em;
+	}
+
+
+
+acronym, abbr, span.caps
+{
+	font-size: 0.9em;
+	letter-spacing: .07em;
+	}
+
+p{
+	margin:0;
+	padding:0;
+}
+	
+.widecolumn { 
+	width: 500px; /*width of single page*/
+	margin: 0 auto;
+	}	
+
+.entry {
+	clear:both;
+	padding:10px 0 0;
+	}
+	
+.entry p{
+	padding: 5px 0;
+	}
+
+p.postmeta{
+	padding-top: 20px;
+	}
+	
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	padding-top: 10px;
+	/*text-align:center;*//*postmeta of index page*/
+	}
+
+.widecolumn .postmetadata {
+	margin: 30px 0;
+	padding:5px 10px;
+	}
+
+.widecolumn .smallattachment {
+	text-align: center;
+	float: left;
+	width: 128px;
+	margin: 5px 5px 5px 0px;
+}
+
+.widecolumn .attachment {
+	text-align: center;
+	margin: 5px 0px;
+}
+
+
+/* End Headers */
+
+/* Begin Images */
+
+/*	Using 'class="alignright"' on an image will (who would've
+	thought?!) align the image to the right. And using 'class="centered',
+	will of course center the image. This is much better than using
+	align="center", being much more futureproof (and valid) */
+
+img.centered {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+	}
+
+img.alignright {
+	padding: 4px;
+	margin: 0 0 2px 7px;
+	display: inline;
+	}
+
+img.alignleft {
+	padding: 4px;
+	margin: 0 7px 2px 0;
+	display: inline;
+	}
+
+.alignright {
+	float: right;
+	}
+
+.alignleft {
+	float: left
+	}
+/* End Images */
+
+
+
+/* Begin Lists
+
+	Special stylized non-IE bullets
+	Do not work in Internet Explorer, which merely default to normal bullets. */
+
+html>body .entry ul {
+	margin-left: 0px;
+	padding: 0 0 0 30px;
+	list-style: none;
+	padding-left: 10px;
+	text-indent: -10px;
+	}
+
+html>body .entry li {
+	margin: 7px 0 8px 10px;
+	}
+
+.entry ul li:before{
+	content: "\00BB \0020";
+	}
+	
+.entry ol {
+	padding: 0 0 0 35px;
+	margin: 0;
+	}
+
+.entry ol li {
+	margin: 0;
+	padding: 0;
+	}
+
+.postmetadata ul, .postmetadata li {
+	display: inline;
+	list-style-type: none;
+	list-style-image: none;
+	}
+
+
+.entry form { /* This is mainly for password protected posts, makes them look better. */
+	text-align:center;
+	}
+
+	
+
+
+
+
+
+
+
+
+
+
+/* Begin Various Tags & Classes */
+acronym, abbr, span.caps {
+	cursor: help;
+	}
+
+acronym, abbr {
+	border-bottom: 1px dashed #999;
+	}
+
+blockquote {
+	margin: 15px 30px 0 10px;
+	padding-left: 20px;
+	border-left: 5px solid #ddd;
+	}
+
+blockquote cite {
+	margin: 5px 0 0;
+	display: block;
+	}
+
+.xpress_single_navigation {
+	display:block;
+	width: 500px;
+	margin: 0 auto;	
+	}
+	
+.xpress_index_navigation {
+	display:block;
+	width: 100%;
+	margin: 0 auto;	
+	}
+	
+
+/* End Various Tags & Classes*/
+
+
+
+/* Captions */
+.aligncenter,
+div.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-caption {
+	border: 1px solid #ddd;
+	text-align: center;
+	background-color: #f3f3f3;
+	padding-top: 4px;
+	margin: 10px;
+	-moz-border-radius: 3px;
+	-khtml-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+.wp-caption img {
+	margin: 0;
+	padding: 0;
+	border: 0 none;
+}
+
+.wp-caption p.wp-caption-text {
+	font-size: 11px;
+	line-height: 17px;
+	padding: 0 4px 5px;
+	margin: 0;
+}
+.dateblock{
+	margin:-12px 0 0 -5px!important;
+	}
+
+.nocomments, .postmetadata, blockquote, strike {
+	color: #777;
+	}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/admin.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/admin.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/admin.php	(revision 314)
@@ -0,0 +1,40 @@
+<?php
+if( ! defined( 'XP2_ADMIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_ADMIN_LANG_INCLUDED' , 1 ) ;
+	
+// altsys
+	define('_MD_A_MYMENU_MYTPLSADMIN','¥Æ¥ó¥×¥ì¡¼¥È´ÉÍý');
+	define('_MD_A_MYMENU_MYBLOCKSADMIN','¥Ö¥í¥Ã¥¯´ÉÍý/¥¢¥¯¥»¥¹¸¢¸Â');
+	define('_MD_A_MYMENU_MYLANGADMIN','¸À¸ìÄê¿ô´ÉÍý');
+	define('_MD_A_MYMENU_MYPREFERENCES','°ìÈÌÀßÄê');
+
+	define("_AM_XP2_SYSTEM_INFO","¥·¥¹¥Æ¥à¾ðÊó");
+	define("_AM_XP2_XOOPS_CONFIG_INFO","XPressME¤¬XOOPS¤è¤ê¼èÆÀ¤·¤¿ÀßÄêÃÍ");
+	define("_AM_XP2_PLUGIN","WordPress¤Ç»ÈÍÑÃæ¤Î¥×¥é¥°¥¤¥ó");
+	define("_AM_XP2_BLOCK_STATS","¥Ö¥í¥Ã¥¯¥¹¥Æ¡¼¥¿¥¹");
+	define("_AM_XP2_STATS","Åý·×");
+	define("_AM_XP2_CATEGORIES","¥«¥Æ¥´¥ê¡¼¿ô");
+	define("_AM_XP2_ARTICLES","µ­»ö¿ô");
+	define("_AM_XP2_AUTHORS","Åê¹Æ¼Ô¿ô");
+	define("_AM_XP2_SYS_REPORT","¥ì¥Ý¡¼¥È·Á¼°¤ÇÉ½¼¨");
+	define("_AM_XP2_SYS_NORMAL","¥Î¡¼¥Þ¥ë·Á¼°¤ÇÉ½¼¨");
+
+// Block Check	
+	define("_AM_XP2_BLOCK_OK","¥Ö¥í¥Ã¥¯¤ÏÀµ¾ï¤Ç¤¹¡£");
+	define("_AM_XP2_BLOCK_NG","°Û¾ï¥Ö¥í¥Ã¥¯¤¬¤¢¤ê¤Þ¤¹¡£");
+	define("_AM_XP2_BLOCK_REPAIR_HOWTO","°Ê²¼¤Î¼ê½ç¤Ë½¾¤Ã¤Æ¥Ö¥í¥Ã¥¯¤ò½¤Àµ¤·¤Æ¤¯¤À¤µ¤¤¡£");
+	define("_AM_XP2_BLOCK_REPAIR_STEP1","¥¹¥Æ¥Ã¥× 1");
+	define("_AM_XP2_BLOCK_REMOVE","¥Ö¥í¥Ã¥¯¤òºï½ü");
+	define("_AM_XP2_BLOCK_REMOVE_NOTE","Ãí°Õ: ¥â¥¸¥å¡¼¥ë¤Î¥Ö¥í¥Ã¥¯¤¬¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é<b>ºï½ü</b>¤µ¤ì¤Þ¤¹¡£");
+	define("_AM_XP2_BLOCK_REPAIR_STEP2","¥¹¥Æ¥Ã¥× 2");
+	define("_AM_XP2_BLOCK_UPDATE","¥â¥¸¥å¡¼¥ë¤ò¥¢¥Ã¥×¥Ç¡¼¥È¤·¤Æ¡¢¥Ö¥í¥Ã¥¯¤òºÆ¹½ÃÛ¤·¤Þ¤¹¡£");
+	define("_AM_XP2_TO_MODELE_UPDATE","¥â¥¸¥å¡¼¥ë¥¢¥Ã¥×¥Ç¡¼¥È¤Ø");
+	define("_AM_XP2_BLOCK_REPAIR_STEP3","¥¹¥Æ¥Ã¥× 3");
+	define("_AM_XP2_BLOCK_ADMIN_SETTING","¥Ö¥í¥Ã¥¯¤ÎÇÛÃÖ¤È¥¢¥¯¥»¥¹¸¢¸Â¤òºÆÀßÄê¤·¤Þ¤¹¡£");
+	define("_AM_XP2_BLOCK_TO_SETTING","¥Ö¥í¥Ã¥¯¸¢¸Â¤ÎÀßÄê¤Ø");
+	define("_AM_XP2_USER_META_KEY","¥æ¡¼¥¶¡¼¥á¥¿¾ðÊó");
+	define("_AM_XP2_USER_META_NONE","¥æ¡¼¥¶¡¼¥ì¥Ù¥ë¤ËÉ¬Í×¤Ê¥á¥¿¥­¡¼¤¬¤¢¤ê¤Þ¤»¤ó");
+	define("_AM_XP2_USER_META_ERR","¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤Î°Û¤Ê¤ë %s ¤È¤¤¤¦¥á¥¿¥­¡¼¤¬ %d ¤Ä¤¢¤ê¤Þ¤¹¡£");
+	define("_AM_XP2_USER_META_OK","¥æ¡¼¥¶¡¼¥á¥¿¥­¡¼¤ÏÀµ¾ï¤Ç¤¹");	
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/blocks.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/blocks.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/blocks.php	(revision 314)
@@ -0,0 +1,133 @@
+<?php
+if( ! defined( 'XP2_BLOCK_LANG_INCLUDED' ) ) {
+	define( 'XP2_BLOCK_LANG_INCLUDED' , 1 ) ;
+// general	
+	define("_MB_XP2_COUNT",'É½¼¨¿ô');
+	define("_MB_XP2_COUNT_ZERO_ALL",'É½¼¨¿ô(0¤Î¾ì¹çÁ´¤Æ¤òÉ½¼¨)');
+	define("_MB_XP2_LENGTH","Ä¹¤µ");
+	define("_MB_XP2_ALL","¤¹¤Ù¤Æ");
+	define("_MB_XP2_BLOCK_CACHE_ERR","¥­¥ã¥Ã¥·¥å¤¬Â¸ºß¤·¤Þ¤»¤ó¡£<br />ºÇ½é¤Ë%s¥â¥¸¥å¡¼¥ë¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡£");
+	define("_MB_XP2_SHOW_NUM_OF_POST","¥¨¥ó¥È¥ê¡¼¿ô¤ÎÉ½¼¨");
+	define("_MB_XP2_SHOW_DROP_DOWN","¥É¥í¥Ã¥×¥À¥¦¥ó¥ê¥¹¥È¤ÇÉ½¼¨");
+	define("_MB_XP2_HIDE_EMPTY","¥¨¥ó¥È¥ê¡¼¤Î¤Ê¤¤¹àÌÜ¤ò¥ê¥¹¥È°ìÍ÷¤«¤é½ü¤¯");
+	define("_MB_XP2_TITLE","¥¿¥¤¥È¥ë");
+	define("_MB_XP2_PUBLISH_DATE","Åê¹ÆÆüÉÕ");
+	define("_MB_XP2_SORT_ORDER","ÊÂ¤ÓÂØ¤¨½ç½ø");
+	define("_MB_XP2_SORT_ASC","¾º½ç");
+	define("_MB_XP2_SORT_DESC","¹ß½ç");
+	define("_MB_XP2_SHOW_DATE_SELECT","ÆüÉÕ¤ÎÉ½¼¨");
+	define("_MB_XP2_SHOW_DATE_NONE","É½¼¨¤·¤Ê¤¤");
+	define("_MB_XP2_SHOW_POST_DATE","ºîÀ®Æü¤òÉ½¼¨");
+	define("_MB_XP2_SHOW_MODIFY_DATE","ºÇ½ª¹¹¿·Æü¤òÉ½¼¨");
+	define("_MB_XP2_SHOW_DATE","ÆüÉÕ¤òÉ½¼¨¤¹¤ë");
+	define("_MB_XP2_DATE_FORMAT","ÆüÉÕ¤Î¥Õ¥©¡¼¥Þ¥Ã¥È(¶õÇò¤Î¾ì¹çWordPress¤Ç¤ÎÀßÄê¤¬Å¬ÍÑ¤µ¤ì¤Þ¤¹)");
+	define("_MB_XP2_TIME_FORMAT","»þ¹ï¤Î¥Õ¥©¡¼¥Þ¥Ã¥È(¶õÇò¤Î¾ì¹çWordPress¤Ç¤ÎÀßÄê¤¬Å¬ÍÑ¤µ¤ì¤Þ¤¹)");
+	define("_MB_XP2_FLAT","¥Õ¥é¥Ã¥È");
+	define("_MB_XP2_LIST","¥ê¥¹¥È");
+	define("_MB_XP2_FILE_NAME","¥Õ¥¡¥¤¥ëÌ¾");
+	
+// recent comment block	
+	define("_MB_XP2_COMM_DISP_AUTH","¥³¥á¥ó¥ÈÅê¹Æ¼Ô¤òÉ½¼¨¤¹¤ë");
+	define("_MB_XP2_COMM_DISP_TYPE","¥³¥á¥ó¥È¥¿¥¤¥×¤òÉ½¼¨¤¹¤ë");
+	define("_MB_XP2_COM_TYPE","É½¼¨¤¹¤ë¥³¥á¥ó¥È¤Î¥¿¥¤¥×¤òÁªÂò");
+	define("_MB_XP2_COMMENT","¥³¥á¥ó¥È");
+	define("_MB_XP2_TRUCKBACK","¥È¥é¥Ã¥¯¥Ð¥Ã¥¯");
+	define("_MB_XP2_PINGBACK","¥Ô¥ó¥Ð¥Ã¥¯");
+	
+// recent posts content
+	define("_MB_XP2_P_EXCERPT","µ­»ö¤ò³µÍ×¤ÇÉ½¼¨¤¹¤ë");
+	define("_MB_XP2_P_EXCERPT_SIZE","µ­»ö¤Î³µÍ×Ê¸»ú¿ô");
+	define("_MB_XP2_CATS_SELECT","ÂÐ¾Ý¤Î¥«¥Æ¥´¥ê¡¼ÁªÂò");
+	define("_MB_XP2_TAGS_SELECT","ÂÐ¾Ý¤Î¥¿¥°ÁªÂò(Ê£¿ô¤¢¤ë¾ì¹ç¤Ï¥«¥ó¥Þ¶èÀÚ¤ê¤ÇÆþÎÏ");
+	
+// recent posts list	
+	define("_MB_XP2_REDNEW_DAYS","ÀÖ¤ÎNew¥Þ¡¼¥¯¤òÉ½¼¨¤¹¤ëÆü¿ô");
+	define("_MB_XP2_GREENNEW_DAYS","ÎÐ¤ÎNew¥Þ¡¼¥¯¤òÉ½¼¨¤¹¤ëÆü¿ô");	
+
+// calender		
+	define("_MB_XP2_SUN_COLOR","ÆüÍËÆü¤ÎÉ½¼¨¿§");
+	define("_MB_XP2_SAT_COLOR","ÅÚÍËÆü¤ÎÉ½¼¨¿§");
+	
+// popular		
+	define("_MB_XP2_MONTH_RANGE","»ØÄê·î¿ôÆâ¤Î¤â¤Î¤òÉ½¼¨(0;»ØÄê¤Ê¤·)");
+	
+// archives
+	define("_MB_XP2_ARC_TYPE","¥¢¡¼¥«¥¤¥Ö¥¿¥¤¥×");
+	define("_MB_XP2_ARC_YEAR","Ç¯ÊÌ¥¢¡¼¥«¥¤¥Ö");
+	define("_MB_XP2_ARC_MONTH","·îÊÌ¥¢¡¼¥«¥¤¥Ö");
+	define("_MB_XP2_ARC_WEEK","½µÊÌ¥¢¡¼¥«¥¤¥Ö");
+	define("_MB_XP2_ARC_DAY","ÆüÊÌ¥¢¡¼¥«¥¤¥Ö");
+	define("_MB_XP2_ARC_POST","¸ÄÊÌµ­»ö¥¢¡¼¥«¥¤¥Ö");
+
+// authors	
+	define("_MB_XP2_EXCLUEDEADMIN","¥ê¥¹¥È°ìÍ÷¤«¤é´ÉÍý¿Í¤ò½ü¤¯");
+	define("_MB_XP2_SHOW_FULLNAME","Ãø¼ÔÌ¾¤ò¥Õ¥ë¥Í¡¼¥à¤ÇÉ½¼¨");
+
+// page 	
+	define("_MB_XP2_PAGE_ORDERBY","¥Ú¡¼¥¸¥ê¥¹¥È¤Î¥½¡¼¥È¹àÌÜ");
+	define("_MB_XP2_PAGE_TITLE","¥¿¥¤¥È¥ëÌ¾½ç");
+	define("_MB_XP2_PAGE_MENU_ORDER","¥Ú¡¼¥¸½ç");
+	define("_MB_XP2_PAGE_POST_DATE","ºîÀ®Æü½ç");
+	define("_MB_XP2_PAGE_POST_MODIFY","ºÇ½ª¹¹¿·Æü½ç");
+	define("_MB_XP2_PAGE_ID","¥Ú¡¼¥¸ ID½ç");
+	define("_MB_XP2_PAGE_AUTHOR","ºîÀ®¼ÔID ½ç");
+	define("_MB_XP2_PAGE_SLUG","¥Ú¡¼¥¸¥¹¥é¥Ã¥°½ç");
+	define("_MB_XP2_PAGE_EXCLUDE","¥ê¥¹¥È¤«¤é½ü³°¤¹¤ë¥Ú¡¼¥¸ID ¤ò¥«¥ó¥Þ¶èÀÚ¤ê¤Ç¾º½ç¤Ë»ØÄê¡£");
+	define("_MB_XP2_PAGE_EXCLUDE_TREE","¥ê¥¹¥È¤«¤é½ü³°¤¹¤ë¥Ú¡¼¥¸ID ¤ò»ØÄê(»Ò¥Ú¡¼¥¸¤â½ü³°¤µ¤ì¤Þ¤¹)¡£");
+	define("_MB_XP2_PAGE_INCLUDE","»ØÄê¤·¤¿¥Ú¡¼¥¸ID ¤Î¤ß¥ê¥¹¥È¤ËÉ½¼¨¡£¥«¥ó¥Þ¶èÀÚ¤ê¤Ç¾º½ç¤Ë»ØÄê");
+	define("_MB_XP2_PAGE_DEPTH","¥Ú¡¼¥¸³¬ÁØ¤Î¤É¤Î¥ì¥Ù¥ë¤Þ¤Ç¤ò¥ê¥¹¥È¤Ë½ÐÎÏ¤¹¤ë¤«¤ò»ØÄê¡£ (0=Á´¿Æ»Ò¥Ú¡¼¥¸¤ò½ÐÎÏ¡Ë");
+	define("_MB_XP2_PAGE_CHILD_OF","»ØÄêID¤Î¥Ú¡¼¥¸¤ò¿Æ¤È¤¹¤ë³¬ÁØ¤Î¥Ú¡¼¥¸¤ò¥ê¥¹¥È¤ËÉ½¼¨¤·¤Þ¤¹¡£(0=Á´¿Æ»Ò¥Ú¡¼¥¸¤ò½ÐÎÏ¡Ë");
+	define("_MB_XP2_PAGE_HIERARCHICAL","»Ò¥Ú¡¼¥¸¤ò¥ê¥¹¥ÈÉ½¼¨¤¹¤ë¤È¤­¡¢¥¤¥ó¥Ç¥ó¥È¡Ê»ú²¼¤²¡Ë¤¹¤ë¡£");
+	define("_MB_XP2_PAGE_META_KEY","¤³¤³¤Ëµ­½Ò¤·¤¿¥«¥¹¥¿¥à¥Õ¥£¡¼¥ë¥É¥­¡¼¤ò»ý¤Ä¥Ú¡¼¥¸¤À¤±¤òÉ½¼¨¤·¤Þ¤¹¡£");
+	define("_MB_XP2_PAGE_META_VALUE","¤³¤³¤Ëµ­½Ò¤·¤¿¥«¥¹¥¿¥à¥Õ¥£¡¼¥ë¥ÉÃÍ¤ò»ý¤Ä¥Ú¡¼¥¸¤À¤±¤òÉ½¼¨¤·¤Þ¤¹¡£");
+	
+// Search
+	define("_MB_XP2_SEARCH_LENGTH","¸¡º÷BOX¤ÎÄ¹¤µ");
+	
+// tag cloud
+	define("_MB_XP2_CLOUD_SMALLEST",'ºÇ¾¯»ÈÍÑ¿ô¤Î¥¿¥°¤ÎÉ½¼¨¤Ë»È¤¦¥Õ¥©¥ó¥È¥µ¥¤¥º');
+	define("_MB_XP2_CLOUD_LARGEST",'ºÇÂ¿»ÈÍÑ¿ô¤Î¥¿¥°¤ÎÉ½¼¨¤Ë»È¤¦¥Õ¥©¥ó¥È¥µ¥¤¥º');
+	define("_MB_XP2_CLOUD_UNIT","¥Õ¥©¥ó¥È¥µ¥¤¥º¤ÎÃ±°Ì¡£pt, px, em, % Åù");
+	define("_MB_XP2_CLOUD_NUMBER","¥¯¥é¥¦¥É¤ËÉ½¼¨¤¹¤ë¥¿¥°¿ô¡£[0] ¤ò»ØÄê¤¹¤ë¤ÈÁ´¥¿¥°¤òÉ½¼¨");
+	define("_MB_XP2_CLOUD_FORMAT","¥¯¥é¥¦¥ÉÉ½¼¨¤Î¥Õ¥©¡¼¥Þ¥Ã¥È");
+	define("_MB_XP2_CLOUD_ORDERBY","¥¿¥°¤ÎÉ½¼¨½ç¤È¤¹¤ë¹àÌÜ");
+	define("_MB_XP2_CLOUD_ORDER","¥½¡¼¥È½ç¡Ê¥é¥ó¥À¥à¤ÏWordPress2.5°Ê¾å¤Ç»ØÄê²ÄÇ½¡Ë");
+	define("_MB_XP2_CLOUD_EXCLUDE","½ü³°¤¹¤ë¥¿¥°¤Î term_id ¤ò¥«¥ó¥Þ¶èÀÚ¤ê¤Ç»ØÄê");
+	define("_MB_XP2_CLOUD_INCLUDE","É½¼¨ÂÐ¾Ý¤È¤¹¤ë¥¿¥°¤Î term_id ¤ò¥«¥ó¥Þ¶èÀÚ¤ê¤Ç»ØÄê¡¢¶õÇò»þ¤ÏÁ´¥¿¥°ÂÐ¾Ý");
+	define("_MB_XP2_RAND","¥é¥ó¥À¥à");
+	define("_MB_XP2_TAG_NAME","¥¿¥°Ì¾");
+	define("_MB_XP2_TAG_COUNT","»ÈÍÑ²ó¿ô");
+	
+// Categorie
+	define("_MB_XP2_CAT_ALL_STR","Á´¥«¥Æ¥´¥ê¤Ø¤Î¥ê¥ó¥¯¤ò¼¨¤¹Ê¸»ú¤ò»ØÄê¤·¤Þ¤¹¡£(¶õÇò»þ¤ÏÉ½¼¨¤Ê¤·¡Ë");
+	define("_MB_XP2_CAT_ORDERBY","¥«¥Æ¥´¥ê¤Î¥½¡¼¥È¹àÌÜ");
+	define("_MB_XP2_CAT_NAME","¥«¥Æ¥´¥êÌ¾");
+	define("_MB_XP2_CAT_COUNT","¥«¥Æ¥´¥ê¤ÎÅê¹Æ¿ô");
+	define("_MB_XP2_CAT_ID","¥«¥Æ¥´¥êID");
+	define("_MB_XP2_SHOW_LAST_UPDATE","³Æ¥«¥Æ¥´¥ê¤ËÂ°¤¹¤ëÅê¹Æ¤ÎºÇ½ª¹¹¿·Æü¤òÉ½¼¨¤¹¤ë¡£");
+	define("_MB_XP2_CAT_HIDE_EMPTY","Åê¹Æ¤Î¤Ê¤¤¥«¥Æ¥´¥ê¤òÈóÉ½¼¨¤Ë¤¹¤ë¡£");
+	define("_MB_XP2_DESC_FOR_TITLE","¥«¥Æ¥´¥ê¤Î³µÍ×¤ò¥ê¥ó¥¯¤Î title Â°À­¤ËÁÞÆþ¤¹¤ë¡£");
+	define("_MB_XP2_CAT_EXCLUDE","¥ê¥¹¥È¤«¤é½ü³°¤¹¤ë¥«¥Æ¥´¥êID ¤ò¥«¥ó¥Þ¶èÀÚ¤ê¤Ç¾º½ç¤Ë»ØÄê¡£");
+	define("_MB_XP2_CAT_INCLUDE","»ØÄê¤·¤¿¥«¥Æ¥´¥êID ¤Î¤ß¥ê¥¹¥È¤ËÉ½¼¨¡£¥«¥ó¥Þ¶èÀÚ¤ê¤Ç¾º½ç¤Ë»ØÄê");
+	define("_MB_XP2_CAT_HIERARCHICAL","¥µ¥Ö¥«¥Æ¥´¥ê¡¼¤òÉ½¼¨¤¹¤ë¤È¤­¡¢¥¤¥ó¥Ç¥ó¥È¡Ê»ú²¼¤²¡Ë¤¹¤ë¡£");
+	define("_MB_XP2_CAT_DEPTH","¥«¥Æ¥´¥ê³¬ÁØ¤Î¤É¤Î¥ì¥Ù¥ë¤Þ¤Ç¤ò¥ê¥¹¥È¤Ë½ÐÎÏ¤¹¤ë¤«¤ò»ØÄê¡£ (0=Á´¿Æ»Ò¥«¥Æ¥´¥ê¤ò½ÐÎÏ¡Ë");
+	
+// meta 
+	define("_MB_XP2_META_WP_LINK","WordPress¥µ¥¤¥È¤Ø¤Î¥ê¥ó¥¯¤òÉ½¼¨");
+	define("_MB_XP2_META_XOOPS_LINK","Xoops¥µ¥¤¥È¤Ø¤Î¥ê¥ó¥¯¤òÉ½¼¨");
+	define("_MB_XP2_META_POST_RSS","Åê¹Æ¤ÎRSS¤òÉ½¼¨");
+	define("_MB_XP2_META_COMMENT_RSS","¥³¥á¥ó¥È¤ÎRSS¤òÉ½¼¨");
+	define("_MB_XP2_META_POST_NEW","¿·µ¬Åê¹Æ¤òÉ½¼¨");
+	define("_MB_XP2_META_ADMIN","¥µ¥¤¥È¤Î´ÉÍý¤òÉ½¼¨");
+	define("_MB_XP2_META_README","ReadMe¤òÉ½¼¨");
+	define("_MB_XP2_META_CH_STYLE","É½¼¨¥â¡¼¥ÉÀÚÂØ¤òÉ½¼¨");
+
+// widget 
+	define("_MB_XP2_SELECT_WIDGET","É½¼¨¤¹¤ë¥¦¥£¥¸¥§¥Ã¥È¤òÁªÂò (Ê£¿ôÁªÂò²Ä)");
+	define("_MB_XP2_NO_WIDGET","WordPressÂ¦¤ÇÉ½¼¨¤¹¤ë¥¦¥£¥¸¥§¥Ã¥È¤¬ÁªÂò¤µ¤ì¤Æ¤¤¤Þ¤»¤ó");
+	
+// custom 
+	define("_MB_XP2_ENHACED_FILE","¥«¥¹¥¿¥à¥Ö¥í¥Ã¥¯¤òÉ½¼¨¤¹¤ë¥Õ¥¡¥¤¥ëÌ¾¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£");
+	define("_MB_XP2_MAKE_ENHACED_FILE","¤³¤³¤Ç»ØÄê¤·¤¿¥Õ¥¡¥¤¥ë¤ò¥Æ¡¼¥ÞÆâ¤Î¥Ö¥í¥Ã¥¯¥Ç¥£¥ì¥¯¥È¥ê¡¼¤ËºîÀ®¤·¤Æ¤¯¤À¤µ¤¤¡£");
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/index.html
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/index.html	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/index.html	(revision 314)
@@ -0,0 +1,1 @@
+ <script>history.go(-1);</script>
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+Åê¹Æ¼Ô[{XPRESS_AUTH_NAME}]¤µ¤ó¤Îµ­»ö[{XPRESS_POST_TITLE}]¤Ë¿·¤·¤¤¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/author_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+Åê¹Æ¼Ô[{XPRESS_AUTH_NAME}]¤µ¤ó¤Îµ­»ö[{XPRESS_POST_TITLE}]¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+¥«¥Æ¥´¥ê¡¼[{XPRESS_CAT_TITLE}]Æâ¤Ë¤¢¤ëµ­»ö[{XPRESS_POST_TITLE}]¤Ë¿·¤·¤¤¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/category_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+¥«¥Æ¥´¥ê¡¼[{XPRESS_CAT_TITLE}]¤Ëµ­»ö"{XPRESS_POST_TITLE}"¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+{X_MODULE}¥â¥¸¥å¡¼¥ë¤Ë¤ª¤¤¤Æµ­»ö¡Ö{XPRESS_POST_TITLE}¡×¤Ë¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤·¤¿¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+{X_MODULE}¥â¥¸¥å¡¼¥ë¤Ë¤ª¤¤¤Æ¿·µ¬Åê¹Æ¡Ö{XPRESS_POST_TITLE}¡×¤¬¤¢¤ê¤Þ¤·¤¿¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_waiting.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_waiting.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/global_waiting.tpl	(revision 314)
@@ -0,0 +1,3 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+{X_MODULE}¥â¥¸¥å¡¼¥ë¤Ë¤ª¤¤¤ÆÍ×¾µÇ§¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤·¤¿¡£
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_editpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_editpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_editpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+{X_SITENAME}{X_MODULE}¤Î
+¡Ö{POST_TITLE}¡×¤Ë¤Æµ­»öÆâÍÆ¤ÎÊÑ¹¹¤¬¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
+
+¤³¤Îµ­»ö¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/mail_template/post_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}¤µ¤ó¡¢¤³¤ó¤Ë¤Á¤Ï
+
+»ØÄê¤µ¤ì¤¿µ­»ö[{XPRESS_POST_TITLE}]¤Ë¿·¤·¤¤¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤ê¤Þ¤¹¡£
+
+¤³¤ÎÅê¹Æ¤ò¸«¤ë¤Ë¤Ï²¼µ­URL¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¯¤À¤µ¤¤¡§
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/main.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/main.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/main.php	(revision 314)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XP2_MAIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_MAIN_LANG_INCLUDED' , 1 ) ;
+
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/modinfo.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/modinfo.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/language/japanese/modinfo.php	(revision 314)
@@ -0,0 +1,89 @@
+<?php
+if( ! defined( 'XP2_MODINFO_LANG_INCLUDED' ) ) {
+	define( 'XP2_MODINFO_LANG_INCLUDED' , 1 ) ;
+
+	// The name of this module admin menu
+	define("_MI_XP2_MENU_SYS_INFO","¥·¥¹¥Æ¥à¾ðÊó");
+	define("_MI_XP2_MENU_BLOCK_ADMIN","¥Ö¥í¥Ã¥¯¸¢¸Â");
+	define("_MI_XP2_MENU_BLOCK_CHECK","¥Ö¥í¥Ã¥¯¥Á¥§¥Ã¥¯");
+	define("_MI_XP2_MENU_WP_ADMIN","WordPress´ÉÍý");
+	
+	// The name of this module
+	define("_MI_XP2_NAME","¥Ö¥í¥°");
+
+	// A brief description of this module
+	define("_MI_XP2_DESC","WordPressME¤òXOOPS¥â¥¸¥å¡¼¥ë²½¤·¤¿¤â¤Î¤Ç¤¹¡£");
+
+	// Sub menu titles
+	define("_MI_XP2_MENU_POST_NEW","¿·µ¬Åê¹Æ");
+	define("_MI_XP2_MENU_EDIT","ÊÔ½¸");
+	define("_MI_XP2_MENU_ADMIN","WordPress´ÉÍý");
+	define("_MI_XP2_MENU_XPRESS","XPressMEÀßÄê");
+	define("_MI_XP2_MENU_TO_MODULE","¥â¥¸¥å¡¼¥ë¤Ø");
+
+	// Block Name
+	define("_MI_XP2_BLOCK_COMMENTS","ºÇ¶á¤Î¥³¥á¥ó¥È");
+	define("_MI_XP2_BLOCK_CONTENT","ºÇ¶á¤Îµ­»öÆâÍÆ");
+	define("_MI_XP2_BLOCK_POSTS","ºÇ¶á¤Îµ­»ö");
+	define("_MI_XP2_BLOCK_CALENDER","¥«¥ì¥ó¥À¡¼");
+	define("_MI_XP2_BLOCK_POPULAR","¿Íµ¤µ­»ö¥ê¥¹¥È");
+	define("_MI_XP2_BLOCK_ARCHIVE","¥¢¡¼¥«¥¤¥Ö");
+	define("_MI_XP2_BLOCK_AUTHORS","Åê¹Æ¼Ô");
+	define("_MI_XP2_BLOCK_PAGE","¥Ú¡¼¥¸");
+	define("_MI_XP2_BLOCK_SEARCH","¸¡º÷");
+	define("_MI_XP2_BLOCK_TAG","¥¿¥°¥¯¥é¥¦¥É");
+	define("_MI_XP2_BLOCK_CATEGORY","¥«¥Æ¥´¥ê¡¼");
+	define("_MI_XP2_BLOCK_META","¥á¥¿¾ðÊó");
+	define("_MI_XP2_BLOCK_SIDEBAR","¥µ¥¤¥É¥Ð¡¼");
+	define("_MI_XP2_BLOCK_WIDGET","¥¦¥£¥¸¥§¥Ã¥È");
+	define("_MI_XP2_BLOCK_ENHANCED","³ÈÄ¥¥Ö¥í¥Ã¥¯");
+	
+	// Notify Categories
+	define('_MI_XP2_NOTCAT_GLOBAL', '¥Ö¥í¥°Á´ÂÎ');
+	define('_MI_XP2_NOTCAT_GLOBALDSC', '¥Ö¥í¥°Á´ÂÎ¤Ë¤ª¤±¤ëÄÌÃÎ¥ª¥×¥·¥ç¥ó');
+	define('_MI_XP2_NOTCAT_CAT', 'ÁªÂòÃæ¤Î¥«¥Æ¥´¥ê');
+	define('_MI_XP2_NOTCAT_CATDSC', 'ÁªÂòÃæ¤Î¥«¥Æ¥´¥ê¤ËÂÐ¤¹¤ëÄÌÃÎ¥ª¥×¥·¥ç¥ó');
+	define('_MI_XP2_NOTCAT_AUTHOR', 'ÁªÂòÃæ¤ÎÅê¹Æ¼Ô'); 
+	define('_MI_XP2_NOTCAT_AUTHORDSC', 'ÁªÂòÃæ¤ÎÅê¹Æ¼Ô¤ËÂÐ¤¹¤ëÄÌÃÎ¥ª¥×¥·¥ç¥ó');
+	define('_MI_XP2_NOTCAT_POST', 'É½¼¨Ãæ¤Îµ­»ö'); 
+	define('_MI_XP2_NOTCAT_POSTDSC', 'É½¼¨Ãæ¤Îµ­»ö¤ËÂÐ¤¹¤ëÄÌÃÎ¥ª¥×¥·¥ç¥ó');
+
+	// Each Notifications
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITING', '¾µÇ§ÂÔ¤Á');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGCAP', '¾µÇ§¤òÍ×¤¹¤ëÅê¹Æ¡¦ÊÔ½¸¤¬¹Ô¤ï¤ì¤¿¾ì¹ç¤ËÄÌÃÎ¤·¤Þ¤¹¡£´ÉÍý¼ÔÀìÍÑ');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGSBJ', '[{X_SITENAME}] {X_MODULE}: ¾µÇ§ÂÔ¤Á');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOST', 'µ­»öÅê¹Æ');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTCAP', '¤³¤Î¥Ö¥í¥°Á´ÂÎ¤Î¤¤¤º¤ì¤«¤Ëµ­»ö¤ÎÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]µ­»ö: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENT', '¥³¥á¥ó¥ÈÅê¹Æ');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTCAP', '¤³¤Î¥Ö¥í¥°Á´ÂÎ¤Î¤¤¤º¤ì¤«¤Ë¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]¥³¥á¥ó¥È: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWPOST', 'ÁªÂò¥«¥Æ¥´¥ê¤Ø¤Îµ­»öÅê¹Æ');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTCAP', '¤³¤Î¥«¥Æ¥´¥ê¤Ëµ­»öÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]µ­»ö: "{XPRESS_POST_TITLE}" (¾ò·ï:¥«¥Æ¥´¥ê="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENT', 'ÁªÂò¥«¥Æ¥´¥ê¤Ø¤Î¥³¥á¥ó¥ÈÅê¹Æ');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTCAP', '¤³¤Î¥«¥Æ¥´¥ê¤Ë¥³¥á¥ó¥ÈÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]¥³¥á¥ó¥È: (µ­»ö"{XPRESS_POST_TITLE}") (¾ò·ï:¥«¥Æ¥´¥ê="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWPOST', 'ÁªÂòÅê¹Æ¼Ô¤Ë¤è¤ëµ­»öÅê¹Æ');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTCAP', '¤³¤ÎÅê¹Æ¼Ô¤«¤éµ­»öÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]µ­»ö: "{XPRESS_POST_TITLE}" (¾ò·ï:Åê¹Æ¼Ô="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENT', 'ÁªÂòÅê¹Æ¼Ôµ­»ö¤Ø¤Î¥³¥á¥ó¥ÈÅê¹Æ');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTCAP', '¤³¤ÎÅê¹Æ¼Ô¤Ë¤è¤ëµ­»ö¤Ø¥³¥á¥ó¥ÈÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]¥³¥á¥ó¥È: (µ­»ö"{XPRESS_POST_TITLE}") (¾ò·ï:Åê¹Æ¼Ô="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_POST_EDITPOST', 'µ­»öÊÑ¹¹');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTCAP', 'É½¼¨Ãæ¤Îµ­»ö¤ËÊÑ¹¹¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTSBJ', '[{XPRESS_BLOG_NAME}]µ­»ö: "{XPRESS_POST_TITLE}"ÊÑ¹¹ (¾ò·ï:µ­»ö»ØÄê)');
+
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENT', 'µ­»ö¤Ø¤Î¥³¥á¥ó¥ÈÅê¹Æ');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTCAP', 'É½¼¨Ãæ¤Îµ­»ö¤Ë¥³¥á¥ó¥È¤ÎÅê¹Æ¤¬¤¢¤Ã¤¿¾ì¹ç¤ËÄÌÃÎ¤¹¤ë');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]¥³¥á¥ó¥È: (µ­»ö"{XPRESS_POST_TITLE}") (¾ò·ï:µ­»ö»ØÄê)');
+
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php	(revision 314)
@@ -0,0 +1,140 @@
+<?php
+require_once dirname( __FILE__ ).'/include/xpress_debug_log.php' ;
+require_once dirname( __FILE__ ).'/class/config_from_xoops.class.php' ;
+$xoops_config = new ConfigFromXoops;
+require_once dirname( __FILE__ ).'/include/set_cash_cookie_path.php' ;
+
+/**
+ * mb_language() sets language. If language  is omitted, it returns current language as string.
+ * language setting is used for encoding e-mail messages. 
+ * Valid languages are "Japanese", "ja","English","en" and "uni" (UTF-8). 
+ * mb_send_mail() uses this setting to encode e-mail.
+ * Language and its setting is ISO-2022-JP/Base64 for Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for English. 
+ */
+ if (function_exists("mb_language")) mb_language('Japanese');
+ if (function_exists("mb_internal_encoding")) mb_internal_encoding('EUC-JP');
+
+
+// ** MySQL settings - You can get this info from your web host ** //
+// Do not change  'DB_NAME','DB_USER','DB_PASSWORD' & 'DB_HOST'
+// because copies a set value of XOOPS. 
+
+/** Do not change. The name of the database for WordPress */
+define('DB_NAME', $xoops_config->xoops_db_name);
+
+/** Do not change. MySQL database username */
+define('DB_USER', $xoops_config->xoops_db_user);
+
+/** Do not change. MySQL database password */
+define('DB_PASSWORD', $xoops_config->xoops_db_pass);
+
+/** Do not change. MySQL hostname */
+define('DB_HOST', $xoops_config->xoops_db_host);
+	
+/** Database Charset to use in creating database tables. */
+//define('DB_CHARSET', 'utf8');
+
+/** The Database Collate type. Don't change this if in doubt. */
+define('DB_COLLATE', '');
+
+//define('WP_DEBUG' ,true);
+
+/**#@+
+ * Authentication Unique Keys.
+ *
+ * Change these to different unique phrases!
+ * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
+ *
+ * @since 2.6.0
+ */
+define('AUTH_KEY', 'put your unique phrase here');
+define('SECURE_AUTH_KEY', 'put your unique phrase here');
+define('LOGGED_IN_KEY', 'put your unique phrase here');
+define('NONCE_KEY', 'put your unique phrase here');
+
+if ($xoops_config->is_wpmu){	//for WordPressMU
+	define('VHOST', 'no'); 
+	$base = $xoops_config->mu_path_current_site;
+	define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site );
+	define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site );
+	define('SITE_ID_CURRENT_SITE', 1);
+	define('BLOGID_CURRENT_SITE', '1' );
+
+	define('AUTH_SALT', 'put your unique phrase here');
+	define('LOGGED_IN_SALT', 'put your unique phrase here');
+	define('SECURE_AUTH_SALT', 'put your unique phrase here');
+}
+
+/**
+ * WordPress Database Table prefix.
+ *
+ * You can have multiple installations in one database if you give each a unique
+ * prefix. Only numbers, letters, and underscores please!
+ */
+// Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 
+$table_prefix  = $xoops_config->module_db_prefix;
+
+/**
+ * WordPress Localized Language, defaults to Japanese.
+ *
+ * Change this to localize WordPress.  A corresponding MO file for the chosen
+ * language must be installed to wp-content/languages. For example, install
+ * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
+ * language support.
+ *
+ * Example:
+ * define ('WPLANG', '');		// language support to English
+ */
+define ('WPLANG', 'ja_EUC');		// language support to Japanese
+
+/* That's all, stop editing! Happy blogging. */
+
+/** WordPress absolute path to the Wordpress directory. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+require_once( ABSPATH .'/include/request_url.php');
+if (is_xpress_index_page_call()){
+	require_once $xoops_config->xoops_mainfile_path; //It is necessary to execute it for the user attestation before wp-settings.php. 
+	require_once(ABSPATH.'wp-settings.php');
+	wp();
+	
+	if (!function_exists('is_wordpress_style')){	// When the XPressME plug-in is invalid
+		require_once dirname( __FILE__ ).'/include/xpress_active_plugin.php' ;
+		xpress_pulugin_activation('xpressme/xpressme.php');
+		// reloaded 
+		header('Location: ' . $xoops_config->module_url . '/');
+		
+		$err_str = "The activation of the XPressME plugin was executed.<br />\n";
+		$err_str .= "Because the XPressME plugin was invalid.<br />\n";
+		$err_str .= "Please do the rereading seeing on the page.\n";			
+		die($err_str);
+	}
+
+	ob_start();	
+		if($xoops_config->is_wp20 )
+			require_once dirname( __FILE__ ).'/include/old_template-loader.php' ;
+		else
+			require_once( ABSPATH . WPINC . '/template-loader.php' );
+		$wp_output = ob_get_contents();
+	ob_end_clean();
+	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
+	if (is_wordpress_style() || is_feed()) {
+		echo $wp_output;
+	} else {
+		require_once( ABSPATH .'/include/xpress_render.php' );
+		xpress_render($wp_output);
+	}
+
+	//When there is no block cache, and an optional block is different, cache is refreshed. 
+	//When adding, and changing and deleting Post & Comment, block cache is refreshed by add_action at any time. 
+	// This Function in xpressme plugin
+	require_once( ABSPATH .'/include/xpress_block_render.php' );	
+	xpress_unnecessary_block_cache_delete($xoops_config->module_name);
+	if (is_home()) xpress_block_cache_refresh($xoops_config->module_name);
+	exit();		// The return to wp-blog-header.php is stolen here
+}
+if (is_admin_post_call()) require_once $xoops_config->xoops_mainfile_path;
+if (is_xpress_comments_post_call()) require_once $xoops_config->xoops_mainfile_path;
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: trunk/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 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/wp-content/plugins/xpressme/language/xpressme-ja_EUC.po	(revision 314)
@@ -0,0 +1,485 @@
+msgid ""
+msgstr ""
+"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-07-03 13:14+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-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\XPressME_Project\\SVN\\trunk\\xpressme_integration_kit\\wp-content\\plugins\\xpressme\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SourceCharset: euc-jp\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: xpressme.php:33
+msgid "XPressME Settings"
+msgstr "XPressMEÀßÄê"
+
+#: xpressme_class.php:51
+#: xpressme_class.php:202
+msgid "Older Post"
+msgstr "Á°¤ÎÅê¹Æ¤Ø"
+
+#: xpressme_class.php:52
+#: xpressme_class.php:204
+msgid "Newer Post"
+msgstr "¼¡¤ÎÅê¹Æ¤Ø"
+
+#: xpressme_class.php:54
+#: xpressme_class.php:207
+msgid "Older Entries"
+msgstr "Á°¥Ú¡¼¥¸¤Ø"
+
+#: xpressme_class.php:55
+#: xpressme_class.php:209
+msgid "Newer Entries"
+msgstr "¼¡¥Ú¡¼¥¸¤Ø"
+
+#: xpressme_class.php:69
+msgid "more"
+msgstr "Â³¤­¤òÆÉ¤à"
+
+#: xpressme_class.php:264
+#: xpressme_class.php:280
+#: xpressme_class.php:719
+#: xpressme_class.php:724
+#: xpressme_class.php:730
+#: xpressme_class.php:741
+#: xpressme_class.php:747
+msgid "YES"
+msgstr "¤Ï¤¤"
+
+#: xpressme_class.php:265
+#: xpressme_class.php:281
+#: xpressme_class.php:720
+#: xpressme_class.php:725
+#: xpressme_class.php:731
+#: xpressme_class.php:742
+#: xpressme_class.php:748
+msgid "NO"
+msgstr "¤¤¤¤¤¨"
+
+#: xpressme_class.php:323
+msgid "Single Post Navi Setting"
+msgstr "¥·¥ó¥°¥ë¥Ý¥¹¥È¥Ê¥Ó¤ÎÀßÄê"
+
+#: xpressme_class.php:328
+#: xpressme_class.php:373
+msgid "Adjustment of Navi link display position"
+msgstr "¥ê¥ó¥¯¤ÎÉ½¼¨°ÌÃÖÀßÄê"
+
+#: xpressme_class.php:331
+msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
+msgstr "°ÊÁ°¤Îµ­»ö¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
+
+#: xpressme_class.php:332
+msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
+msgstr "¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¸Å¤¤µ­»ö¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
+
+#: xpressme_class.php:338
+msgid "Select Display name of PostNavi Link"
+msgstr "É½¼¨¤¹¤ë¥ê¥ó¥¯¥Æ¥­¥¹¥È¤òÁªÂò"
+
+#: xpressme_class.php:341
+msgid "Title of post"
+msgstr "Åê¹Æµ­»ö¤Î¥¿¥¤¥È¥ë¤òÉ½¼¨"
+
+#: xpressme_class.php:342
+msgid "Title of Navi"
+msgstr "¥Ê¥Ó¥¿¥¤¥È¥ë¤òÉ½¼¨"
+
+#: xpressme_class.php:348
+msgid "Display Navi Title of Old Post Link"
+msgstr "¸Å¤¤µ­»ö¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
+
+#: xpressme_class.php:355
+msgid "Display Navi Title of Newer Post Link"
+msgstr "¤è¤ê¿·¤·¤¤µ­»ö¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
+
+#: xpressme_class.php:368
+msgid "Posts List Page Navi Setting"
+msgstr "¥Ý¥¹¥È¥ê¥¹¥È¥Ú¡¼¥¸¥Ê¥Ó¤ÎÀßÄê"
+
+#: xpressme_class.php:376
+msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
+msgstr "¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
+
+#: xpressme_class.php:377
+msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
+msgstr "¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òº¸¤Ë¡¢¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤ò±¦¤ËÉ½¼¨"
+
+#: xpressme_class.php:383
+msgid "Display Navi Title of Old Page Link"
+msgstr "¸Å¤¤¥Ú¡¼¥¸¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
+
+#: xpressme_class.php:390
+msgid "Display Navi Title of Newer Page Link"
+msgstr "¤è¤ê¿·¤·¤¤¥Ú¡¼¥¸¤Ø¤Î¥Ê¥Ó¥¿¥¤¥È¥ë¤òÀßÄê"
+
+#: xpressme_class.php:405
+msgid "Role Setting at Login"
+msgstr "¥í¥°¥¤¥ó»þ¤Î¸¢¸ÂÀßÄê"
+
+#: xpressme_class.php:408
+msgid "XOOPS Groupe"
+msgstr "XOOPS¥°¥ë¡¼¥×Ì¾"
+
+#: xpressme_class.php:408
+msgid "WordPress Role"
+msgstr "WordPress¤Ç¤Î¸¢¸Â"
+
+#: xpressme_class.php:408
+msgid "Role is set at each login"
+msgstr "¥í¥°¥¤¥ó»þ¡¢¾ï¤Ë¸¢¸Â¤ò¹¹¿·¤¹¤ë"
+
+#: xpressme_class.php:434
+#: xpressme_class.php:438
+#: xpressme_class.php:441
+msgid "Default Role of WordPress"
+msgstr "WordPress¤Î¥Ç¥Õ¥©¥ë¥È¸¢¸Â"
+
+#: xpressme_class.php:435
+#: xpressme_class.php:439
+#: xpressme_class.php:442
+msgid "Group User Doesn't Register"
+msgstr "¥æ¡¼¥¶ÅÐÏ¿¤·¤Ê¤¤"
+
+#: xpressme_class.php:473
+msgid "WordPress MU cannot integrate the comments."
+msgstr "WordPress MU¤Ï¥³¥á¥ó¥ÈÅý¹ç¤Ç¤­¤Þ¤»¤ó¡£"
+
+#: xpressme_class.php:475
+msgid "Do Not Comment Integration."
+msgstr "¥³¥á¥ó¥ÈÅý¹ç¤·¤Þ¤»¤ó¡£"
+
+#: xpressme_class.php:510
+msgid "Comment integration with D3Forum"
+msgstr "D3Forum¤È¤Î¥³¥á¥ó¥ÈÅý¹ç"
+
+#: xpressme_class.php:512
+msgid "Select the forum of D3Forum that does the comment integration from the following lists."
+msgstr "°Ê²¼¤Î¥ê¥¹¥È¤«¤é¥³¥á¥ó¥ÈÅý¹ç¤ò¤¹¤ëD3Forum¤Î¥Õ¥©¡¼¥é¥à¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme_class.php:516
+msgid "Select the Type of display of D3Forum comment."
+msgstr "D3Forum¤ÎÉ½¼¨¥¿¥¤¥×¤òÁªÂò"
+
+#: xpressme_class.php:518
+#: xpressme_class.php:521
+msgid "Flat"
+msgstr "¥Õ¥é¥Ã¥È"
+
+#: xpressme_class.php:519
+#: xpressme_class.php:522
+msgid "Threaded"
+msgstr "¥¹¥ì¥Ã¥É"
+
+#: xpressme_class.php:525
+msgid "Select the order of display of D3Forum comment."
+msgstr "D3Forum¥³¥á¥ó¥È¤ÎÉ½¼¨½ç¤òÁªÂò"
+
+#: xpressme_class.php:527
+#: xpressme_class.php:530
+msgid "DESC"
+msgstr "¹ß½ç"
+
+#: xpressme_class.php:528
+#: xpressme_class.php:531
+msgid "ASC"
+msgstr "¾º½ç"
+
+#: xpressme_class.php:534
+msgid "Number of displays of D3Forum comments."
+msgstr "D3Forum¤Î¥³¥á¥ó¥ÈÉ½¼¨¿ô"
+
+#: xpressme_class.php:538
+msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
+msgstr "WordPress¥³¥á¥ó¥È¤ÈD3Forum¥Ý¥¹¥È´Ö¤Î°ì³çÅ¾Á÷¡Ê¥¨¥¯¥¹¥Ý¡¼¥È¡¦¥¤¥ó¥Ý¡¼¥È¡Ë"
+
+#: xpressme_class.php:539
+msgid "Export to D3Forum"
+msgstr "D3Forum¤Ø°ì³ç¥¨¥¯¥¹¥Ý¡¼¥È"
+
+#: xpressme_class.php:540
+msgid "Import from D3Forum"
+msgstr "D3Forum¤«¤é°ì³ç¥¤¥ó¥Ý¡¼¥È"
+
+#: xpressme_class.php:552
+msgid "Contents Excerpt Setting"
+msgstr "µ­»öÈ´¿è¤ÎÀßÄê"
+
+#: xpressme_class.php:557
+msgid "Is the excerpt display done with the archive of contents?"
+msgstr "µ­»ö¤Î¥¢¡¼¥«¥¤¥Ö¤ÇÈ´¿èÉ½¼¨¤ò¹Ô¤¤¤Þ¤¹¤«¡©"
+
+#: xpressme_class.php:564
+msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
+msgstr "ASCIIÊ¸»ú¤¬´Þ¤Þ¤ì¤ëÈæÎ¨¤¬ÀßÄê¤µ¤ì¤¿ÃÍ¤è¤êÂç¤­¤¤¾ì¹ç¡¢ASCIIÊ¸»ú¥³¥ó¥Æ¥ó¥Ä¤ÈÈ½ÃÇ¤·¤Þ¤¹¡£"
+
+#: xpressme_class.php:571
+msgid "Excerpt length of word for ASCII contents"
+msgstr "ASCII¥³¥ó¥Æ¥ó¥Ä¤ÎÈ´¿èÃ±¸ì¿ô"
+
+#: xpressme_class.php:578
+msgid "Excerpt length of character for multibyte contents"
+msgstr "¥Þ¥ë¥Á¥Ð¥¤¥È¥³¥ó¥Æ¥ó¥Ä¤ÎÈ´¿èÊ¸»ú¿ô"
+
+#: xpressme_class.php:585
+msgid "More Link Text (Is not displayed for the blank.)"
+msgstr "More¥ê¥ó¥¯¥Æ¥­¥¹¥È¡Ê¥Ö¥é¥ó¥¯¤Î¾ì¹ç¥ê¥ó¥¯¤òÉ½¼¨¤·¤Þ¤»¤ó¡£¡Ë"
+
+#: xpressme_class.php:597
+msgid "Display Mode Setting"
+msgstr "É½¼¨¥â¡¼¥ÉÀßÄê"
+
+#: xpressme_class.php:600
+msgid "Select the XPressME Display Mode."
+msgstr "XPressME¤ÎÉ½¼¨¥â¡¼¥É¤ÎÁªÂò"
+
+#: xpressme_class.php:605
+msgid "Xoops Mode"
+msgstr "XOOPS¥â¡¼¥É"
+
+#: xpressme_class.php:609
+msgid "WordPress Mode"
+msgstr "WordPress¥â¡¼¥É"
+
+#: xpressme_class.php:613
+msgid "User select"
+msgstr "¥æ¡¼¥¶¤Ë¤è¤ëÁªÂò"
+
+#: xpressme_class.php:623
+msgid "Header Meta Option"
+msgstr "¥Ø¥Ã¥À¥á¥¿¡¡¥ª¥×¥·¥ç¥ó"
+
+#: xpressme_class.php:628
+msgid "Select the Header keyword."
+msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥­¡¼¥ï¡¼¥É¤ÎÁªÂò"
+
+#: xpressme_class.php:633
+msgid "Xoops KeyWord"
+msgstr "XOOPS¤Î¥­¡¼¥ï¡¼¥É"
+
+#: xpressme_class.php:636
+msgid "WordPress KeyWord"
+msgstr "WordPress¤Î¥­¡¼¥ï¡¼¥É"
+
+#: xpressme_class.php:639
+msgid "WordPress & Xoops KeyWord"
+msgstr "WordPress£ê¤ÈXOOPS¤Î¥­¡¼¥ï¡¼¥É"
+
+#: xpressme_class.php:645
+msgid "Select the Header Description."
+msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó¡ÊÀâÌÀ¡Ë¤ÎÁªÂò"
+
+#: xpressme_class.php:650
+msgid "Xoops Description"
+msgstr "XOOPS¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
+
+#: xpressme_class.php:653
+msgid "WordPress Description"
+msgstr "WordPress¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
+
+#: xpressme_class.php:656
+msgid "WordPress & Xoops Description"
+msgstr "WordPress¤ÈXOOPS¤Î¥Ç¥£¥¹¥¯¥ê¥×¥·¥ç¥ó"
+
+#: xpressme_class.php:662
+msgid "Select the Header Robots Index."
+msgstr "¥Ø¥Ã¥À¤Ç»ÈÍÑ¤¹¤ë¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹¤ÎÁªÂò"
+
+#: xpressme_class.php:667
+msgid "Xoops Robots Index"
+msgstr "XOOPS¤Î¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹"
+
+#: xpressme_class.php:670
+msgid "WordPress Robots Index"
+msgstr "WordPress¤Î¥í¥Ü¥Ã¥È¥¤¥ó¥Ç¥Ã¥¯¥¹"
+
+#: xpressme_class.php:707
+msgid "XPressME Configuration Page"
+msgstr "XPressME¤ÎÀßÄê¥Ú¡¼¥¸"
+
+#: xpressme_class.php:708
+msgid "to XOOPS Modules Admin Page"
+msgstr "XOOPS¥â¥¸¥å¡¼¥ë´ÉÍý¥Ú¡¼¥¸¤Ø"
+
+#: xpressme_class.php:713
+msgid "Media Upload Base Path"
+msgstr "¥á¥Ç¥£¥¢¥¢¥Ã¥×¥í¡¼¥É¤Î¥Ù¡¼¥¹¥Ñ¥¹ÀßÄê"
+
+#: xpressme_class.php:714
+msgid "Use XOOPS UPLOAD PATH"
+msgstr "XOOPS¤Î¥¢¥Ã¥×¥í¡¼¥É¥Ñ¥¹¤ò»ÈÍÑ¤¹¤ë¡£"
+
+#: xpressme_class.php:715
+msgid "USE WordPress BASE_PATH"
+msgstr "WordPress¤Î¥Ù¡¼¥¹¥Ñ¥¹¤ò»ÈÍÑ¤¹¤ë¡£"
+
+#: xpressme_class.php:718
+msgid "Thema Sidebar Display"
+msgstr "¥Æ¡¼¥ÞÉ½¼¨»þ¤Ë¥µ¥¤¥É¥Ð¡¼É½¼¨¤¹¤ë¡£"
+
+#: xpressme_class.php:723
+msgid "The change tracking of the post is preserved"
+msgstr "Åê¹Æ¤ÎÊÑ¹¹ÍúÎò¤òÍ­¸ú¤Ë¤¹¤ë¡£"
+
+#: xpressme_class.php:729
+msgid "Select Multi user mode"
+msgstr "¥Þ¥ë¥Á¥æ¡¼¥¶¡¼¥â¡¼¥É¤òÁªÂò"
+
+#: xpressme_class.php:740
+msgid "Is the posts author views counted?"
+msgstr "Åê¹Æ¼Ô¤Î±ÜÍ÷¤ò¥«¥¦¥ó¥È¤·¤Þ¤¹¤«¡©"
+
+#: xpressme_class.php:746
+msgid "Is SQL debugging window displayed?"
+msgstr "SQL¥Ç¥Ð¥Ã¥°¥¦¥£¥ó¥É¤òÉ½¼¨¤·¤Þ¤¹¤«¡©"
+
+#: xpressme_class.php:758
+msgid "Update Config"
+msgstr "¹¹¿·"
+
+#: xpressme_class.php:759
+msgid "Preset Config"
+msgstr "¥×¥ê¥»¥Ã¥È"
+
+#: xpressme_class.php:784
+#, php-format
+msgid "Unable to create directory %s. Is its parent directory writable by the server?"
+msgstr "%s ¥Ç¥£¥ì¥¯¥È¥ê¡¼¤¬ºîÀ®¤Ç¤­¤Þ¤»¤ó¡£¥µ¡¼¥Ð¡¼¤Î¿Æ¥Ç¥£¥ì¥¯¥È¥ê¡¼½ñ¤­¹þ¤ß¸¢¸Â¤¬¤¢¤ë¤«³ÎÇ§¤¯¤À¤µ¤¤r?"
+
+#: include/custom_functions.php:75
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s¤Î¥Ñ¡¼¥Þ¥ê¥ó¥¯"
+
+#: include/custom_functions.php:416
+#: include/custom_functions.php:441
+#, php-format
+msgid "views :%d"
+msgstr "±ÜÍ÷¿ô :%d"
+
+#: include/custom_functions.php:595
+msgid "Main"
+msgstr "¥á¥¤¥ó"
+
+#: include/custom_functions.php:598
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "¥«¥Æ¥´¥ê¡¼ &#8216;%s&#8217; ¤Î¥¢¡¼¥«¥¤¥Ö"
+
+#: include/custom_functions.php:601
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; ¥¿¥°¤Î¤Ä¤¤¤Æ¤¤¤ëÅê¹Æ"
+
+#: include/custom_functions.php:604
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%s¤ÎÆüÊÌ¥¢¡¼¥«¥¤¥Ö"
+
+#: include/custom_functions.php:604
+msgid "F jS, Y"
+msgstr "YÇ¯n·îjÆü"
+
+#: include/custom_functions.php:606
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%s¤Î·îÊÌ¥¢¡¼¥«¥¤¥Ö"
+
+#: include/custom_functions.php:606
+msgid "F, Y"
+msgstr "YÇ¯n·î"
+
+#: include/custom_functions.php:608
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%s¤ÎÇ¯ÊÌ¥¢¡¼¥«¥¤¥Ö "
+
+#: include/custom_functions.php:608
+msgid "Y"
+msgstr "YÇ¯"
+
+#: include/custom_functions.php:611
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Author"
+msgstr "Åê¹Æ¼Ô &#8216;%s&#8217; ¤Î¥¢¡¼¥«¥¤¥Ö"
+
+#: include/custom_functions.php:614
+#, php-format
+msgid "Search Results of word &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; ¤Î¸¡º÷·ë²Ì"
+
+#: include/custom_functions.php:620
+#: include/custom_functions.php:622
+#, php-format
+msgid "Article of %s"
+msgstr "%s¤Îµ­»ö"
+
+#: include/custom_functions.php:644
+#, php-format
+msgid "From %1$s on site %2$s"
+msgstr "¥µ¥¤¥È %2$s ¤Î %1$s ¤è¤ê"
+
+#: include/custom_functions.php:665
+msgid "No Trackback/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: include/custom_functions.php:666
+msgid "One Trackback/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ 1 ·ï"
+
+#: include/custom_functions.php:667
+msgid "% TrackBack/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ % ·ï"
+
+#: include/custom_functions.php:818
+msgid "Calendar"
+msgstr "¥«¥ì¥ó¥À¡¼"
+
+#: include/custom_functions.php:819
+#, php-format
+msgid "%1$s %2$s|Used as a calendar caption"
+msgstr "%2$s Ç¯ %1$s|¥«¥ì¥ó¥À¡¼¤Î¥­¥ã¥×¥·¥ç¥ó¤Ë»È¤ï¤ì¤Þ¤¹"
+
+#: include/custom_functions.php:851
+#: include/custom_functions.php:861
+#, php-format
+msgid "View posts for %1$s %2$s"
+msgstr "%2$sÇ¯%1$s¤ÎÅê¹Æ¤òÉ½¼¨"
+
+#: include/functions_for_wp20.php:20
+msgid "<strong>ERROR</strong>: The password field is empty."
+msgstr "<strong>¥¨¥é¡¼</strong>: ¥Ñ¥¹¥ï¡¼¥É¤¬ÆþÎÏ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó."
+
+#: include/functions_for_wp20.php:28
+msgid "<strong>ERROR</strong>: Invalid username."
+msgstr "<strong>¥¨¥é¡¼</strong>: ¥æ¡¼¥¶Ì¾¤¬°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹."
+
+#: include/functions_for_wp20.php:36
+msgid "<strong>ERROR</strong>: Incorrect password."
+msgstr "<strong>¥¨¥é¡¼</strong>: ¥Ñ¥¹¥ï¡¼¥É¤¬°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹."
+
+#: include/xpress_common_functions.php:202
+msgid "Themes"
+msgstr "¥Æ¡¼¥Þ"
+
+#: include/xpress_common_functions.php:217
+msgid "Switch to XOOPS mode"
+msgstr "XOOPS¥â¡¼¥É¤ØÀÚÂØ"
+
+#: include/xpress_common_functions.php:221
+#: include/xpress_common_functions.php:224
+msgid "Switch to WordPress mode"
+msgstr "WordPress¥â¡¼¥É¤ØÀÚÂØ"
+
+#~ msgid "XPressME"
+#~ msgstr "XPressME"
+
Index: trunk/extras/for_wordpressme2011/ja_EUC/wp-content/themes/xpress_default/ja_EUC.po
===================================================================
--- trunk/extras/for_wordpressme2011/ja_EUC/wp-content/themes/xpress_default/ja_EUC.po	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_EUC/wp-content/themes/xpress_default/ja_EUC.po	(revision 314)
@@ -0,0 +1,713 @@
+# WordPress ÍÑÆüËÜ¸ì¥ê¥½¡¼¥¹ (EUC-JP) 
+# Japanese (EUC-JP) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# ¤³¤Î¥Õ¥¡¥¤¥ë¤Ï WordPress ËÜÂÎ¤ÈÆ±¤¸¥é¥¤¥»¥ó¥¹¤Î¤â¤ÈÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress ÆüËÜ¸ìÈÇºîÀ®¥Á¡¼¥à / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  ¸í»úÃ¦»ú¸íÌõ¡¢¤¢¤ë¤¤¤Ï¤è¤ê¤è¤¤Ìõ¤Ê¤É¤¢¤ê¤Þ¤·¤¿¤é°Ê²¼¤Þ¤Ç¤¼¤Ò¤ªÃÎ¤é¤»¤¯¤À¤µ¤¤¡£
+#  ¤Þ¤¿¡¢ËÝÌõ¡¢¹»Àµ¡¢¥³¥ß¥Ã¥È¤ò¤ª¼êÅÁ¤¤¤·¤Æ¤¤¤¿¤À¤±¤ëÊý¤â¿ï»þÊç½¸Ãæ¤Ç¤¹¡£
+#  Ï¢ÍíÀè / Contact: wpja.team@gmail.com (·ïÌ¾¤«ÆâÍÆ¤Ë¡ÖÆüËÜ¸ì¥ê¥½¡¼¥¹¡×¤ÈÆþ¤ì¤Æ¤¯¤À¤µ¤¤)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2009-06-22 10:18+0900\n"
+"Last-Translator: toemon <toychee@toemon.com>\n"
+"Language-Team: toemon <info@toemon.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: euc-jp\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\xpress_default\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:22
+msgid "Error 404 - Not Found"
+msgstr "¥¨¥é¡¼ 404 - ¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#: archives.php:20
+msgid "Archives by Month:"
+msgstr "·îÊÌ¤Î¥¢¡¼¥«¥¤¥Ö:"
+
+#: archives.php:25
+msgid "Archives by Subject:"
+msgstr "¥«¥Æ¥´¥ê¡¼ÊÌ¥¢¡¼¥«¥¤¥Ö:"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s ¤Ø¤Î¥³¥á¥ó¥È"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "¤³¤Î¥³¥á¥ó¥ÈÍó¤Î <abbr title=\"Really Simple Syndication\">RSS</abbr> ¥Õ¥£¡¼¥É"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "¤³¤ÎÅê¹Æ¤Ø¤Î¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "¥Ô¥ó¥Ð¥Ã¥¯"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s ¤è¤ê"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "¥³¥á¥ó¥È¤ò¤É¤¦¤¾"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "²þ¹Ô¤ÈÃÊÍî¥¿¥°¤Ï¼«Æ°¤ÇÁÞÆþ¤µ¤ì¤Þ¤¹¡£¥á¡¼¥ë¥¢¥É¥ì¥¹¤ÏÉ½¼¨¤µ¤ì¤Þ¤»¤ó¡£ÍøÍÑ²ÄÇ½¤Ê <acronym title=\"Hypertext Markup Language\">HTML</acronym> ¥¿¥°: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£<a href=\"%3$s\" title=\"¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È¤¹¤ë\">¥í¥°¥¢¥¦¥È &raquo;</a>"
+
+#: comments-popup.php:64
+#: comments.php:92
+msgid "Name"
+msgstr "¤ªÌ¾Á°"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "Á÷¿®¤¹¤ë !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "¥³¥á¥ó¥È¥Õ¥©¡¼¥à¤Ï¸½ºßÊÄº¿Ãæ¤Ç¤¹¡£"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "¤³¤Î¥¦¥¤¥ó¥É¥¦¤òÊÄ¤¸¤ë¡£"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: comments.php:6
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "¤³¤ÎÅê¹Æ¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÇÊÝ¸î¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥³¥á¥ó¥È¤ò±ÜÍ÷¤¹¤ë¤Ë¤Ï¥Ñ¥¹¥ï¡¼¥É¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: comments.php:17
+#: comments.php:38
+msgid "No Responses"
+msgstr "¥³¥á¥ó¥È ¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: comments.php:17
+#: comments.php:38
+msgid "One Response"
+msgstr "¥³¥á¥ó¥È 1 ·ï"
+
+#: comments.php:17
+#: comments.php:38
+msgid "% Responses"
+msgstr "¥³¥á¥ó¥È % ·ï"
+
+#: comments.php:17
+#: comments.php:38
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:33
+#: comments.php:63
+msgid "Comments are closed."
+msgstr "¸½ºß¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: comments.php:43
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> ¤è¤ê:"
+
+#: comments.php:45
+msgid "Your comment is awaiting moderation."
+msgstr "¥³¥á¥ó¥È¤Ï¾µÇ§ÂÔ¤Á¤Ç¤¹¡£"
+
+#: comments.php:48
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:48
+msgid "Comment Edit"
+msgstr "ÊÔ½¸"
+
+#: comments.php:70
+msgid "Leave a Reply"
+msgstr "¥³¥á¥ó¥È¤ò¤É¤¦¤¾"
+
+#: comments.php:70
+#, php-format
+msgid "Leave a Reply for %s"
+msgstr "%s ¤Ë¥³¥á¥ó¥È¤¹¤ë"
+
+#: comments.php:80
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: comments.php:86
+#: comments.php:88
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£"
+
+#: comments.php:86
+#: comments.php:88
+msgid "Log out of this account"
+msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È"
+
+#: comments.php:86
+#: comments.php:88
+msgid "Log out &raquo;"
+msgstr "¥í¥°¥¢¥¦¥È &raquo;"
+
+#: comments.php:92
+#: comments.php:95
+msgid "(required)"
+msgstr " (É¬¿Ü)"
+
+#: comments.php:95
+msgid "Mail (will not be published)"
+msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)"
+
+#: comments.php:98
+msgid "Website"
+msgstr "¥¦¥§¥Ö¥µ¥¤¥È"
+
+#: comments.php:103
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍÑ¤Ç¤­¤Þ¤¹: <code>%s</code>"
+
+#: comments.php:107
+msgid "Submit Comment"
+msgstr "¥³¥á¥ó¥ÈÁ÷¿®"
+
+#: footer.php:5
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s ¤È %2$s"
+
+#: footer.php:5
+msgid "Entries (RSS)"
+msgstr "Åê¹Æ (RSS)"
+
+#: footer.php:5
+msgid "Comments (RSS)"
+msgstr "¥³¥á¥ó¥È (RSS)"
+
+#: footer.php:7
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %s ÉÃ¤òÍ×¤·¤Þ¤·¤¿¡£"
+
+#: footer.php:9
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f ÉÃ"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "¥Ø¥Ã¥À¡¼¤ÎÇØ·Ê¤ÈÊ¸»ú¤Î¿§"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊÄ¤¸¤ë"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "ÊÝÂ¸"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "¼è¤ê¾Ã¤·"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "¾ÜºÙ"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ¥Ö¥í¥°¥¢¡¼¥«¥¤¥Ö"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS ¥Õ¥£¡¼¥É"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom ¥Õ¥£¡¼¥É"
+
+#: header.php:47
+msgid "Main Page"
+msgstr "¥á¥¤¥ó¥Ú¡¼¥¸"
+
+#: header.php:50
+msgid "Blogs Home"
+msgstr "¥Ö¥í¥°¤Î¥Û¡¼¥à"
+
+#: header.php:51
+msgid "Post New"
+msgstr "¿·µ¬Åê¹Æ"
+
+#: image.php:13
+#: index.php:36
+#: single.php:32
+msgid "Read the rest of this entry &raquo;"
+msgstr "¤³¤ÎÅê¹Æ¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
+
+#: image.php:15
+#: page.php:29
+msgid "Pages:"
+msgstr "¥Ú¡¼¥¸:"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "¤³¤ÎÅê¹Æ¤Ï %1$s %2$s ¤Ë %3$s ¥«¥Æ¥´¥ê¡¼¤Ë¸ø³«¤µ¤ì¤Þ¤·¤¿¡£"
+
+#: image.php:25
+#: sidebar.php:24
+msgid "l, F jS, Y"
+msgstr "Y Ç¯ n ·î j Æü l"
+
+#: 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 "¤³¤ÎÅê¹Æ¤Ø¤Î¥³¥á¥ó¥È¤Ï <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 "<a href=\"#respond\">¥³¥á¥ó¥È¤ò»Ä¤¹¤«</a>¡¢¤´¼«Ê¬¤Î¥µ¥¤¥È¤«¤é<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 "¸½ºß¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤ª¤ê¤Þ¤»¤ó¤¬¡¢¤´¼«Ê¬¤Î¥µ¥¤¥È¤«¤é<a href=\"%s\" rel=\"trackback\">¥È¥é¥Ã¥¯¥Ð¥Ã¥¯</a>¤òÁ÷¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤¹¡£"
+
+#: image.php:39
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "¤³¤Î¥Ú¡¼¥¸¤Î°ìÈÖ²¼¤Ç¥³¥á¥ó¥È¤ò»Ä¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ / ¥Ô¥ó¥Ð¥Ã¥¯¤Ï¸½ºß¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: image.php:43
+msgid "Both comments and pings are currently closed."
+msgstr "¸½ºß¥³¥á¥ó¥È¡¢¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¤È¤â¤Ë¼õ¤±ÉÕ¤±¤Æ¤ª¤ê¤Þ¤»¤ó¡£"
+
+#: image.php:45
+#: page.php:34
+msgid "Edit this entry."
+msgstr "¤³¤ÎÅê¹Æ¤òÊÔ½¸¤¹¤ë¡£"
+
+#: image.php:58
+#: single.php:94
+msgid "Sorry, no posts matched your criteria."
+msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: index.php:29
+#: index.php:31
+#: single.php:24
+#: single.php:26
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s ¤Î¥Ñ¡¼¥Þ¥ê¥ó¥¯"
+
+#: index.php:44
+#: single.php:42
+#, php-format
+msgid "Views :%d"
+msgstr "±ÜÍ÷ :%d"
+
+#: index.php:47
+#: single.php:45
+#, php-format
+msgid "Posted in %s"
+msgstr "¥«¥Æ¥´¥ê¡¼: %s"
+
+#: index.php:49
+#: single.php:47
+msgid "Edit"
+msgstr "ÊÔ½¸"
+
+#: index.php:50
+#: single.php:48
+msgid "No Comments &#187;"
+msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "1 Comment &#187;"
+msgstr "1 ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "% Comments &#187;"
+msgstr "% ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "Comments Closed"
+msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: index.php:68
+msgid "Not Found"
+msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: index.php:69
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "¤ªÃµ¤·¤ÎÊª¤Ï¤³¤³¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: links.php:18
+msgid "Links:"
+msgstr "¥ê¥ó¥¯:"
+
+#: page.php:27
+msgid "Read the rest of this page &raquo;"
+msgstr "¤³¤Î¥Ú¡¼¥¸¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "¸¡º÷:"
+
+#: searchform.php:8
+msgid "Search"
+msgstr "¸¡º÷"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "ºîÀ®¼Ô"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+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 "<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 "<a href=\"%1$s/\">%2$s</a> ¤Î %3$s ¤Î¥¢¡¼¥«¥¤¥Ö¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£"
+
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y Ç¯ n ·î"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ¥Ö¥í¥°¤Î %3$s Ç¯¤Î¥¢¡¼¥«¥¤¥Ö¤òÉ½¼¨¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> ¤Î¥¢¡¼¥«¥¤¥ÖÆâ¤Ç<strong>&#8216;%3$s&#8217;</strong>¤òÃµ¤·¤Þ¤·¤¿¡£¤ªÃµ¤·¤Î¤â¤Î¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤ÏÂ¾¤Î¥ê¥ó¥¯¤ò»î¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ¥Ö¥í¥°¤Î¥¢¡¼¥«¥¤¥Ö¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "¥Ú¡¼¥¸"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "¥¢¡¼¥«¥¤¥Ö"
+
+#: sidebar.php:51
+#: sidebar.php:53
+msgid "Categories"
+msgstr "¥«¥Æ¥´¥ê¡¼"
+
+#: sidebar.php:62
+msgid "Meta"
+msgstr "¥á¥¿¾ðÊó"
+
+#: sidebar.php:66
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "¤³¤Î¥Ú¡¼¥¸¤¬ XHTML 1.0 Transitional ¤Ë½àµò¤·¤Æ¤¤¤ë¤«³ÎÇ§¤¹¤ë"
+
+#: sidebar.php:66
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:67
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:67
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:68
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:53
+msgid "No Trackback/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: single.php:53
+msgid "One Trackback/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ 1 ·ï"
+
+#: single.php:53
+msgid "% TrackBack/Pingback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¡¦¥Ô¥ó¥Ð¥Ã¥¯ % ·ï"
+
+#: single.php:57
+#, php-format
+msgid "You can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "¤´¼«Ê¬¤Î¥µ¥¤¥È¤«¤é<a href=\"%s\" rel=\"trackback\">¥È¥é¥Ã¥¯¥Ð¥Ã¥¯</a>¤òÁ÷¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
+
+#: single.php:59
+msgid "Pinging is currently not allowed."
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ / ¥Ô¥ó¥Ð¥Ã¥¯¤Ï¸½ºß¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: blocks/archives_block_theme.php:13
+msgid "Select Yearly"
+msgstr "Ç¯¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:16
+#: blocks/archives_block_theme.php:28
+msgid "Select Monthly"
+msgstr "·î¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:19
+msgid "Select Weekly"
+msgstr "½µ¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:22
+msgid "Select Daily"
+msgstr "Æü¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:25
+msgid "Select Post"
+msgstr "µ­»ö¤òÁªÂò"
+
+#: blocks/authors_block_theme.php:31
+msgid "All Authors"
+msgstr "Á´¤Æ¤ÎÅê¹Æ¼Ô"
+
+#: blocks/enhanced_block_theme.php:11
+msgid "The include file name to display it is not set."
+msgstr "É½¼¨¤ò¹Ô¤¦¤¿¤á¤Î¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ëÌ¾¤¬ÀßÄê¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: blocks/enhanced_block_theme.php:13
+#, php-format
+msgid "File %s not exist."
+msgstr "¥Õ¥¡¥¤¥ë %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£"
+
+#: blocks/enhanced_block_theme.php:19
+msgid "PHP code error"
+msgstr "PHP¥³¡¼¥É¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹¡£"
+
+#: blocks/meta_block_theme.php:24
+msgid "Posts RSS"
+msgstr "Åê¹Æ¤Î RSS"
+
+#: blocks/meta_block_theme.php:27
+msgid "Comments RSS"
+msgstr "¥³¥á¥ó¥È ¤ÎRSS"
+
+#: blocks/meta_block_theme.php:40
+#: blocks/meta_block_theme.php:45
+msgid "Add New"
+msgstr "¿·µ¬Åê¹Æ"
+
+#: blocks/meta_block_theme.php:54
+msgid "Site Admin"
+msgstr "WordPress´ÉÍý"
+
+#: blocks/meta_block_theme.php:60
+msgid "User Profile"
+msgstr "¥æ¡¼¥¶¡¼¥×¥í¥Õ¥¡¥¤¥ë"
+
+#: blocks/meta_block_theme.php:68
+#: blocks/meta_block_theme.php:73
+msgid "Subscription management"
+msgstr "¥á¡¼¥ë¹ØÆÉ¤ÎÀßÄê"
+
+#: blocks/meta_block_theme.php:81
+msgid "ReadMe"
+msgstr "ReadMeÉ½¼¨"
+
+#: blocks/meta_block_theme.php:86
+msgid "Themes"
+msgstr "¥Æ¡¼¥ÞÁªÂò"
+
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:66
+#: blocks/recent_posts_list_block_theme.php:68
+msgid "Tags:"
+msgstr "¥¿¥°:"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (0)"
+msgstr "¥³¥á¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (1)"
+msgstr "1·ï¤Î¥³¥á¥ó¥È"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/recent_comments_block_theme.php:81
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s ¤Ë %1$s ¤è¤ê"
+
+#~ msgid "views: %d"
+#~ msgstr "±ÜÍ÷ :%d²ó"
+#~ msgid "more"
+#~ msgstr "Â³¤­¤òÆÉ¤à"
+
+#, fuzzy
+#~ msgid "F jS, Y"
+#~ msgstr "Y Ç¯ n ·î j Æü l"
+#~ msgid "Calendar"
+#~ msgstr "¥«¥ì¥ó¥À¡¼"
+#~ msgid "%1$s %2$s|Used as a calendar caption"
+#~ msgstr "%2$s Ç¯ %1$s|¥«¥ì¥ó¥À¡¼¤Î¥­¥ã¥×¥·¥ç¥ó¤Ë»È¤ï¤ì¤Þ¤¹"
+#~ msgid "View posts for %1$s %2$s"
+#~ msgstr "%2$s Ç¯ %1$s ¤ÎÅê¹Æ¤òÉ½¼¨"
+
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/admin.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/admin.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/admin.php	(revision 314)
@@ -0,0 +1,40 @@
+<?php
+if( ! defined( 'XP2_ADMIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_ADMIN_LANG_INCLUDED' , 1 ) ;
+	
+// altsys
+	define('_MD_A_MYMENU_MYTPLSADMIN','テンプレート管理');
+	define('_MD_A_MYMENU_MYBLOCKSADMIN','ブロック管理/アクセス権限');
+	define('_MD_A_MYMENU_MYLANGADMIN','言語定数管理');
+	define('_MD_A_MYMENU_MYPREFERENCES','一般設定');
+
+	define("_AM_XP2_SYSTEM_INFO","システム情報");
+	define("_AM_XP2_XOOPS_CONFIG_INFO","XPressMEがXOOPSより取得した設定値");
+	define("_AM_XP2_PLUGIN","WordPressで使用中のプラグイン");
+	define("_AM_XP2_BLOCK_STATS","ブロックステータス");
+	define("_AM_XP2_STATS","統計");
+	define("_AM_XP2_CATEGORIES","カテゴリー数");
+	define("_AM_XP2_ARTICLES","記事数");
+	define("_AM_XP2_AUTHORS","投稿者数");
+	define("_AM_XP2_SYS_REPORT","レポート形式で表示");
+	define("_AM_XP2_SYS_NORMAL","ノーマル形式で表示");
+
+// Block Check	
+	define("_AM_XP2_BLOCK_OK","ブロックは正常です。");
+	define("_AM_XP2_BLOCK_NG","異常ブロックがあります。");
+	define("_AM_XP2_BLOCK_REPAIR_HOWTO","以下の手順に従ってブロックを修正してください。");
+	define("_AM_XP2_BLOCK_REPAIR_STEP1","ステップ 1");
+	define("_AM_XP2_BLOCK_REMOVE","ブロックを削除");
+	define("_AM_XP2_BLOCK_REMOVE_NOTE","注意: モジュールのブロックがデータベースから<b>削除</b>されます。");
+	define("_AM_XP2_BLOCK_REPAIR_STEP2","ステップ 2");
+	define("_AM_XP2_BLOCK_UPDATE","モジュールをアップデートして、ブロックを再構築します。");
+	define("_AM_XP2_TO_MODELE_UPDATE","モジュールアップデートへ");
+	define("_AM_XP2_BLOCK_REPAIR_STEP3","ステップ 3");
+	define("_AM_XP2_BLOCK_ADMIN_SETTING","ブロックの配置とアクセス権限を再設定します。");
+	define("_AM_XP2_BLOCK_TO_SETTING","ブロック権限の設定へ");
+	define("_AM_XP2_USER_META_KEY","ユーザーメタ情報");
+	define("_AM_XP2_USER_META_NONE","ユーザーレベルに必要なメタキーがありません");
+	define("_AM_XP2_USER_META_ERR","プレフィックスの異なる %s というメタキーが %d つあります。");
+	define("_AM_XP2_USER_META_OK","ユーザーメタキーは正常です");	
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/blocks.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/blocks.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/blocks.php	(revision 314)
@@ -0,0 +1,133 @@
+<?php
+if( ! defined( 'XP2_BLOCK_LANG_INCLUDED' ) ) {
+	define( 'XP2_BLOCK_LANG_INCLUDED' , 1 ) ;
+// general	
+	define("_MB_XP2_COUNT",'表示数');
+	define("_MB_XP2_COUNT_ZERO_ALL",'表示数(0の場合全てを表示)');
+	define("_MB_XP2_LENGTH","長さ");
+	define("_MB_XP2_ALL","すべて");
+	define("_MB_XP2_BLOCK_CACHE_ERR","キャッシュが存在しません。<br />最初に%sモジュールにアクセスしてください。");
+	define("_MB_XP2_SHOW_NUM_OF_POST","エントリー数の表示");
+	define("_MB_XP2_SHOW_DROP_DOWN","ドロップダウンリストで表示");
+	define("_MB_XP2_HIDE_EMPTY","エントリーのない項目をリスト一覧から除く");
+	define("_MB_XP2_TITLE","タイトル");
+	define("_MB_XP2_PUBLISH_DATE","投稿日付");
+	define("_MB_XP2_SORT_ORDER","並び替え順序");
+	define("_MB_XP2_SORT_ASC","昇順");
+	define("_MB_XP2_SORT_DESC","降順");
+	define("_MB_XP2_SHOW_DATE_SELECT","日付の表示");
+	define("_MB_XP2_SHOW_DATE_NONE","表示しない");
+	define("_MB_XP2_SHOW_POST_DATE","作成日を表示");
+	define("_MB_XP2_SHOW_MODIFY_DATE","最終更新日を表示");
+	define("_MB_XP2_SHOW_DATE","日付を表示する");
+	define("_MB_XP2_DATE_FORMAT","日付のフォーマット(空白の場合WordPressでの設定が適用されます)");
+	define("_MB_XP2_TIME_FORMAT","時刻のフォーマット(空白の場合WordPressでの設定が適用されます)");
+	define("_MB_XP2_FLAT","フラット");
+	define("_MB_XP2_LIST","リスト");
+	define("_MB_XP2_FILE_NAME","ファイル名");
+	
+// recent comment block	
+	define("_MB_XP2_COMM_DISP_AUTH","コメント投稿者を表示する");
+	define("_MB_XP2_COMM_DISP_TYPE","コメントタイプを表示する");
+	define("_MB_XP2_COM_TYPE","表示するコメントのタイプを選択");
+	define("_MB_XP2_COMMENT","コメント");
+	define("_MB_XP2_TRUCKBACK","トラックバック");
+	define("_MB_XP2_PINGBACK","ピンバック");
+	
+// recent posts content
+	define("_MB_XP2_P_EXCERPT","記事を概要で表示する");
+	define("_MB_XP2_P_EXCERPT_SIZE","記事の概要文字数");
+	define("_MB_XP2_CATS_SELECT","対象のカテゴリー選択");
+	define("_MB_XP2_TAGS_SELECT","対象のタグ選択(複数ある場合はカンマ区切りで入力");
+	
+// recent posts list	
+	define("_MB_XP2_REDNEW_DAYS","赤のNewマークを表示する日数");
+	define("_MB_XP2_GREENNEW_DAYS","緑のNewマークを表示する日数");	
+
+// calender		
+	define("_MB_XP2_SUN_COLOR","日曜日の表示色");
+	define("_MB_XP2_SAT_COLOR","土曜日の表示色");
+	
+// popular		
+	define("_MB_XP2_MONTH_RANGE","指定月数内のものを表示(0;指定なし)");
+	
+// archives
+	define("_MB_XP2_ARC_TYPE","アーカイブタイプ");
+	define("_MB_XP2_ARC_YEAR","年別アーカイブ");
+	define("_MB_XP2_ARC_MONTH","月別アーカイブ");
+	define("_MB_XP2_ARC_WEEK","週別アーカイブ");
+	define("_MB_XP2_ARC_DAY","日別アーカイブ");
+	define("_MB_XP2_ARC_POST","個別記事アーカイブ");
+
+// authors	
+	define("_MB_XP2_EXCLUEDEADMIN","リスト一覧から管理人を除く");
+	define("_MB_XP2_SHOW_FULLNAME","著者名をフルネームで表示");
+
+// page 	
+	define("_MB_XP2_PAGE_ORDERBY","ページリストのソート項目");
+	define("_MB_XP2_PAGE_TITLE","タイトル名順");
+	define("_MB_XP2_PAGE_MENU_ORDER","ページ順");
+	define("_MB_XP2_PAGE_POST_DATE","作成日順");
+	define("_MB_XP2_PAGE_POST_MODIFY","最終更新日順");
+	define("_MB_XP2_PAGE_ID","ページ ID順");
+	define("_MB_XP2_PAGE_AUTHOR","作成者ID 順");
+	define("_MB_XP2_PAGE_SLUG","ページスラッグ順");
+	define("_MB_XP2_PAGE_EXCLUDE","リストから除外するページID をカンマ区切りで昇順に指定。");
+	define("_MB_XP2_PAGE_EXCLUDE_TREE","リストから除外するページID を指定(子ページも除外されます)。");
+	define("_MB_XP2_PAGE_INCLUDE","指定したページID のみリストに表示。カンマ区切りで昇順に指定");
+	define("_MB_XP2_PAGE_DEPTH","ページ階層のどのレベルまでをリストに出力するかを指定。 (0=全親子ページを出力）");
+	define("_MB_XP2_PAGE_CHILD_OF","指定IDのページを親とする階層のページをリストに表示します。(0=全親子ページを出力）");
+	define("_MB_XP2_PAGE_HIERARCHICAL","子ページをリスト表示するとき、インデント（字下げ）する。");
+	define("_MB_XP2_PAGE_META_KEY","ここに記述したカスタムフィールドキーを持つページだけを表示します。");
+	define("_MB_XP2_PAGE_META_VALUE","ここに記述したカスタムフィールド値を持つページだけを表示します。");
+	
+// Search
+	define("_MB_XP2_SEARCH_LENGTH","検索BOXの長さ");
+	
+// tag cloud
+	define("_MB_XP2_CLOUD_SMALLEST",'最少使用数のタグの表示に使うフォントサイズ');
+	define("_MB_XP2_CLOUD_LARGEST",'最多使用数のタグの表示に使うフォントサイズ');
+	define("_MB_XP2_CLOUD_UNIT","フォントサイズの単位。pt, px, em, % 等");
+	define("_MB_XP2_CLOUD_NUMBER","クラウドに表示するタグ数。[0] を指定すると全タグを表示");
+	define("_MB_XP2_CLOUD_FORMAT","クラウド表示のフォーマット");
+	define("_MB_XP2_CLOUD_ORDERBY","タグの表示順とする項目");
+	define("_MB_XP2_CLOUD_ORDER","ソート順（ランダムはWordPress2.5以上で指定可能）");
+	define("_MB_XP2_CLOUD_EXCLUDE","除外するタグの term_id をカンマ区切りで指定");
+	define("_MB_XP2_CLOUD_INCLUDE","表示対象とするタグの term_id をカンマ区切りで指定、空白時は全タグ対象");
+	define("_MB_XP2_RAND","ランダム");
+	define("_MB_XP2_TAG_NAME","タグ名");
+	define("_MB_XP2_TAG_COUNT","使用回数");
+	
+// Categorie
+	define("_MB_XP2_CAT_ALL_STR","全カテゴリへのリンクを示す文字を指定します。(空白時は表示なし）");
+	define("_MB_XP2_CAT_ORDERBY","カテゴリのソート項目");
+	define("_MB_XP2_CAT_NAME","カテゴリ名");
+	define("_MB_XP2_CAT_COUNT","カテゴリの投稿数");
+	define("_MB_XP2_CAT_ID","カテゴリID");
+	define("_MB_XP2_SHOW_LAST_UPDATE","各カテゴリに属する投稿の最終更新日を表示する。");
+	define("_MB_XP2_CAT_HIDE_EMPTY","投稿のないカテゴリを非表示にする。");
+	define("_MB_XP2_DESC_FOR_TITLE","カテゴリの概要をリンクの title 属性に挿入する。");
+	define("_MB_XP2_CAT_EXCLUDE","リストから除外するカテゴリID をカンマ区切りで昇順に指定。");
+	define("_MB_XP2_CAT_INCLUDE","指定したカテゴリID のみリストに表示。カンマ区切りで昇順に指定");
+	define("_MB_XP2_CAT_HIERARCHICAL","サブカテゴリーを表示するとき、インデント（字下げ）する。");
+	define("_MB_XP2_CAT_DEPTH","カテゴリ階層のどのレベルまでをリストに出力するかを指定。 (0=全親子カテゴリを出力）");
+	
+// meta 
+	define("_MB_XP2_META_WP_LINK","WordPressサイトへのリンクを表示");
+	define("_MB_XP2_META_XOOPS_LINK","Xoopsサイトへのリンクを表示");
+	define("_MB_XP2_META_POST_RSS","投稿のRSSを表示");
+	define("_MB_XP2_META_COMMENT_RSS","コメントのRSSを表示");
+	define("_MB_XP2_META_POST_NEW","新規投稿を表示");
+	define("_MB_XP2_META_ADMIN","サイトの管理を表示");
+	define("_MB_XP2_META_README","ReadMeを表示");
+	define("_MB_XP2_META_CH_STYLE","表示モード切替を表示");
+
+// widget 
+	define("_MB_XP2_SELECT_WIDGET","表示するウィジェットを選択 (複数選択可)");
+	define("_MB_XP2_NO_WIDGET","WordPress側で表示するウィジェットが選択されていません");
+	
+// custom 
+	define("_MB_XP2_ENHACED_FILE","カスタムブロックを表示するファイル名を入力してください。");
+	define("_MB_XP2_MAKE_ENHACED_FILE","ここで指定したファイルをテーマ内のブロックディレクトリーに作成してください。");
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/index.html
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/index.html	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/index.html	(revision 314)
@@ -0,0 +1,1 @@
+ <script>history.go(-1);</script>
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+投稿者[{XPRESS_AUTH_NAME}]さんの記事[{XPRESS_POST_TITLE}]に新しいコメントの投稿があります。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/author_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+投稿者[{XPRESS_AUTH_NAME}]さんの記事[{XPRESS_POST_TITLE}]の投稿があります。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+カテゴリー[{XPRESS_CAT_TITLE}]内にある記事[{XPRESS_POST_TITLE}]に新しいコメントの投稿があります。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/category_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+カテゴリー[{XPRESS_CAT_TITLE}]に記事"{XPRESS_POST_TITLE}"の投稿があります。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+{X_MODULE}モジュールにおいて記事「{XPRESS_POST_TITLE}」にコメントの投稿がありました。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_newpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+{X_MODULE}モジュールにおいて新規投稿「{XPRESS_POST_TITLE}」がありました。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_waiting.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_waiting.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/global_waiting.tpl	(revision 314)
@@ -0,0 +1,3 @@
+{X_UNAME}さん、こんにちは
+
+{X_MODULE}モジュールにおいて要承認の投稿がありました。
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_editpost.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_editpost.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_editpost.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+{X_SITENAME}{X_MODULE}の
+「{POST_TITLE}」にて記事内容の変更が行われています。
+
+この記事を見るには下記URLにアクセスしてください：
+{POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_newcomment.tpl
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_newcomment.tpl	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/mail_template/post_newcomment.tpl	(revision 314)
@@ -0,0 +1,6 @@
+{X_UNAME}さん、こんにちは
+
+指定された記事[{XPRESS_POST_TITLE}]に新しいコメントの投稿があります。
+
+この投稿を見るには下記URLにアクセスしてください：
+{XPRESS_POST_URL}
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/main.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/main.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/main.php	(revision 314)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XP2_MAIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_MAIN_LANG_INCLUDED' , 1 ) ;
+
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/modinfo.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/modinfo.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/language/ja_utf8/modinfo.php	(revision 314)
@@ -0,0 +1,89 @@
+<?php
+if( ! defined( 'XP2_MODINFO_LANG_INCLUDED' ) ) {
+	define( 'XP2_MODINFO_LANG_INCLUDED' , 1 ) ;
+
+	// The name of this module admin menu
+	define("_MI_XP2_MENU_SYS_INFO","システム情報");
+	define("_MI_XP2_MENU_BLOCK_ADMIN","ブロック権限");
+	define("_MI_XP2_MENU_BLOCK_CHECK","ブロックチェック");
+	define("_MI_XP2_MENU_WP_ADMIN","WordPress管理");
+	
+	// The name of this module
+	define("_MI_XP2_NAME","ブログ");
+
+	// A brief description of this module
+	define("_MI_XP2_DESC","WordPressMEをXOOPSモジュール化したものです。");
+
+	// Sub menu titles
+	define("_MI_XP2_MENU_POST_NEW","新規投稿");
+	define("_MI_XP2_MENU_EDIT","編集");
+	define("_MI_XP2_MENU_ADMIN","WordPress管理");
+	define("_MI_XP2_MENU_XPRESS","XPressME設定");
+	define("_MI_XP2_MENU_TO_MODULE","モジュールへ");
+
+	// Block Name
+	define("_MI_XP2_BLOCK_COMMENTS","最近のコメント");
+	define("_MI_XP2_BLOCK_CONTENT","最近の記事内容");
+	define("_MI_XP2_BLOCK_POSTS","最近の記事");
+	define("_MI_XP2_BLOCK_CALENDER","カレンダー");
+	define("_MI_XP2_BLOCK_POPULAR","人気記事リスト");
+	define("_MI_XP2_BLOCK_ARCHIVE","アーカイブ");
+	define("_MI_XP2_BLOCK_AUTHORS","投稿者");
+	define("_MI_XP2_BLOCK_PAGE","ページ");
+	define("_MI_XP2_BLOCK_SEARCH","検索");
+	define("_MI_XP2_BLOCK_TAG","タグクラウド");
+	define("_MI_XP2_BLOCK_CATEGORY","カテゴリー");
+	define("_MI_XP2_BLOCK_META","メタ情報");
+	define("_MI_XP2_BLOCK_SIDEBAR","サイドバー");
+	define("_MI_XP2_BLOCK_WIDGET","ウィジェット");
+	define("_MI_XP2_BLOCK_ENHANCED","拡張ブロック");
+	
+	// Notify Categories
+	define('_MI_XP2_NOTCAT_GLOBAL', 'ブログ全体');
+	define('_MI_XP2_NOTCAT_GLOBALDSC', 'ブログ全体における通知オプション');
+	define('_MI_XP2_NOTCAT_CAT', '選択中のカテゴリ');
+	define('_MI_XP2_NOTCAT_CATDSC', '選択中のカテゴリに対する通知オプション');
+	define('_MI_XP2_NOTCAT_AUTHOR', '選択中の投稿者'); 
+	define('_MI_XP2_NOTCAT_AUTHORDSC', '選択中の投稿者に対する通知オプション');
+	define('_MI_XP2_NOTCAT_POST', '表示中の記事'); 
+	define('_MI_XP2_NOTCAT_POSTDSC', '表示中の記事に対する通知オプション');
+
+	// Each Notifications
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITING', '承認待ち');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGCAP', '承認を要する投稿・編集が行われた場合に通知します。管理者専用');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGSBJ', '[{X_SITENAME}] {X_MODULE}: 承認待ち');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOST', '記事投稿');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTCAP', 'このブログ全体のいずれかに記事の投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]記事: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENT', 'コメント投稿');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTCAP', 'このブログ全体のいずれかにコメントの投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]コメント: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWPOST', '選択カテゴリへの記事投稿');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTCAP', 'このカテゴリに記事投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]記事: "{XPRESS_POST_TITLE}" (条件:カテゴリ="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENT', '選択カテゴリへのコメント投稿');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTCAP', 'このカテゴリにコメント投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]コメント: (記事"{XPRESS_POST_TITLE}") (条件:カテゴリ="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWPOST', '選択投稿者による記事投稿');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTCAP', 'この投稿者から記事投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]記事: "{XPRESS_POST_TITLE}" (条件:投稿者="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENT', '選択投稿者記事へのコメント投稿');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTCAP', 'この投稿者による記事へコメント投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]コメント: (記事"{XPRESS_POST_TITLE}") (条件:投稿者="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_POST_EDITPOST', '記事変更');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTCAP', '表示中の記事に変更があった場合に通知する');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTSBJ', '[{XPRESS_BLOG_NAME}]記事: "{XPRESS_POST_TITLE}"変更 (条件:記事指定)');
+
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENT', '記事へのコメント投稿');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTCAP', '表示中の記事にコメントの投稿があった場合に通知する');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]コメント: (記事"{XPRESS_POST_TITLE}") (条件:記事指定)');
+
+}
+?>
Index: trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php	(revision 314)
@@ -0,0 +1,139 @@
+<?php
+require_once dirname( __FILE__ ).'/include/xpress_debug_log.php' ;
+require_once dirname( __FILE__ ).'/class/config_from_xoops.class.php' ;
+$xoops_config = new ConfigFromXoops;
+require_once dirname( __FILE__ ).'/include/set_cash_cookie_path.php' ;
+
+/**
+ * mb_language() sets language. If language  is omitted, it returns current language as string.
+ * language setting is used for encoding e-mail messages. 
+ * Valid languages are "Japanese", "ja","English","en" and "uni" (UTF-8). 
+ * mb_send_mail() uses this setting to encode e-mail.
+ * Language and its setting is ISO-2022-JP/Base64 for Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for English. 
+ */
+ if (function_exists("mb_language")) mb_language('Japanese');
+ if (function_exists("mb_internal_encoding")) mb_internal_encoding('UTF-8');
+
+// ** MySQL settings - You can get this info from your web host ** //
+// Do not change  'DB_NAME','DB_USER','DB_PASSWORD' & 'DB_HOST'
+// because copies a set value of XOOPS. 
+
+/** Do not change. The name of the database for WordPress */
+define('DB_NAME', $xoops_config->xoops_db_name);
+
+/** Do not change. MySQL database username */
+define('DB_USER', $xoops_config->xoops_db_user);
+
+/** Do not change. MySQL database password */
+define('DB_PASSWORD', $xoops_config->xoops_db_pass);
+
+/** Do not change. MySQL hostname */
+define('DB_HOST', $xoops_config->xoops_db_host);
+	
+/** Database Charset to use in creating database tables. */
+define('DB_CHARSET', 'utf8');
+
+/** The Database Collate type. Don't change this if in doubt. */
+define('DB_COLLATE', '');
+
+//define('WP_DEBUG' ,true);
+
+/**#@+
+ * Authentication Unique Keys.
+ *
+ * Change these to different unique phrases!
+ * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
+ *
+ * @since 2.6.0
+ */
+define('AUTH_KEY', 'put your unique phrase here');
+define('SECURE_AUTH_KEY', 'put your unique phrase here');
+define('LOGGED_IN_KEY', 'put your unique phrase here');
+define('NONCE_KEY', 'put your unique phrase here');
+
+if ($xoops_config->is_wpmu){	//for WordPressMU
+	define('VHOST', 'no'); 
+	$base = $xoops_config->mu_path_current_site;
+	define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site );
+	define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site );
+	define('SITE_ID_CURRENT_SITE', 1);
+	define('BLOGID_CURRENT_SITE', '1' );
+
+	define('AUTH_SALT', 'put your unique phrase here');
+	define('LOGGED_IN_SALT', 'put your unique phrase here');
+	define('SECURE_AUTH_SALT', 'put your unique phrase here');
+}
+
+/**
+ * WordPress Database Table prefix.
+ *
+ * You can have multiple installations in one database if you give each a unique
+ * prefix. Only numbers, letters, and underscores please!
+ */
+// Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 
+$table_prefix  = $xoops_config->module_db_prefix;
+
+/**
+ * WordPress Localized Language, defaults to Japanese.
+ *
+ * Change this to localize WordPress.  A corresponding MO file for the chosen
+ * language must be installed to wp-content/languages. For example, install
+ * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
+ * language support.
+ *
+ * Example:
+ * define ('WPLANG', '');		// language support to English
+ */
+define ('WPLANG', 'ja_UTF');		// language support to Japanese
+
+/* That's all, stop editing! Happy blogging. */
+
+/** WordPress absolute path to the Wordpress directory. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+require_once( ABSPATH .'/include/request_url.php');
+if (is_xpress_index_page_call()){
+	require_once $xoops_config->xoops_mainfile_path; //It is necessary to execute it for the user attestation before wp-settings.php. 
+	require_once(ABSPATH.'wp-settings.php');
+	wp();
+	
+	if (!function_exists('is_wordpress_style')){	// When the XPressME plug-in is invalid
+		require_once dirname( __FILE__ ).'/include/xpress_active_plugin.php' ;
+		xpress_pulugin_activation('xpressme/xpressme.php');
+		// reloaded 
+		header('Location: ' . $xoops_config->module_url . '/');
+		
+		$err_str = "The activation of the XPressME plugin was executed.<br />\n";
+		$err_str .= "Because the XPressME plugin was invalid.<br />\n";
+		$err_str .= "Please do the rereading seeing on the page.\n";			
+		die($err_str);
+	}
+
+	ob_start();	
+		if($xoops_config->is_wp20 )
+			require_once dirname( __FILE__ ).'/include/old_template-loader.php' ;
+		else
+			require_once( ABSPATH . WPINC . '/template-loader.php' );
+		$wp_output = ob_get_contents();
+	ob_end_clean();
+	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
+	if (is_wordpress_style() || is_feed()) {
+		echo $wp_output;
+	} else {
+		require_once( ABSPATH .'/include/xpress_render.php' );
+		xpress_render($wp_output);
+	}
+
+	//When there is no block cache, and an optional block is different, cache is refreshed. 
+	//When adding, and changing and deleting Post & Comment, block cache is refreshed by add_action at any time. 
+	// This Function in xpressme plugin
+	require_once( ABSPATH .'/include/xpress_block_render.php' );	
+	xpress_unnecessary_block_cache_delete($xoops_config->module_name);
+	if (is_home()) xpress_block_cache_refresh($xoops_config->module_name);
+	exit();		// The return to wp-blog-header.php is stolen here
+}
+if (is_admin_post_call()) require_once $xoops_config->xoops_mainfile_path;
+if (is_xpress_comments_post_call()) require_once $xoops_config->xoops_mainfile_path;
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: trunk/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 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/wp-content/plugins/xpressme/language/xpressme-ja_UTF.po	(revision 314)
@@ -0,0 +1,485 @@
+msgid ""
+msgstr ""
+"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-07-03 13:07+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=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\XPressME_Project\\SVN\\trunk\\xpressme_integration_kit\\wp-content\\plugins\\xpressme\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: xpressme.php:33
+msgid "XPressME Settings"
+msgstr "XPressME設定"
+
+#: xpressme_class.php:51
+#: xpressme_class.php:202
+msgid "Older Post"
+msgstr "前の投稿へ"
+
+#: xpressme_class.php:52
+#: xpressme_class.php:204
+msgid "Newer Post"
+msgstr "次の投稿へ"
+
+#: xpressme_class.php:54
+#: xpressme_class.php:207
+msgid "Older Entries"
+msgstr "前ページへ"
+
+#: xpressme_class.php:55
+#: xpressme_class.php:209
+msgid "Newer Entries"
+msgstr "次ページへ"
+
+#: xpressme_class.php:69
+msgid "more"
+msgstr "続きを読む"
+
+#: xpressme_class.php:264
+#: xpressme_class.php:280
+#: xpressme_class.php:719
+#: xpressme_class.php:724
+#: xpressme_class.php:730
+#: xpressme_class.php:741
+#: xpressme_class.php:747
+msgid "YES"
+msgstr "はい"
+
+#: xpressme_class.php:265
+#: xpressme_class.php:281
+#: xpressme_class.php:720
+#: xpressme_class.php:725
+#: xpressme_class.php:731
+#: xpressme_class.php:742
+#: xpressme_class.php:748
+msgid "NO"
+msgstr "いいえ"
+
+#: xpressme_class.php:323
+msgid "Single Post Navi Setting"
+msgstr "シングルポストナビの設定"
+
+#: xpressme_class.php:328
+#: xpressme_class.php:373
+msgid "Adjustment of Navi link display position"
+msgstr "リンクの表示位置設定"
+
+#: xpressme_class.php:331
+msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
+msgstr "以前の記事へのリンクを左に、より新しい記事へのリンクを右に表示"
+
+#: xpressme_class.php:332
+msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
+msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示"
+
+#: xpressme_class.php:338
+msgid "Select Display name of PostNavi Link"
+msgstr "表示するリンクテキストを選択"
+
+#: xpressme_class.php:341
+msgid "Title of post"
+msgstr "投稿記事のタイトルを表示"
+
+#: xpressme_class.php:342
+msgid "Title of Navi"
+msgstr "ナビタイトルを表示"
+
+#: xpressme_class.php:348
+msgid "Display Navi Title of Old Post Link"
+msgstr "古い記事へのナビタイトルを設定"
+
+#: xpressme_class.php:355
+msgid "Display Navi Title of Newer Post Link"
+msgstr "より新しい記事へのナビタイトルを設定"
+
+#: xpressme_class.php:368
+msgid "Posts List Page Navi Setting"
+msgstr "ポストリストページナビの設定"
+
+#: xpressme_class.php:376
+msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
+msgstr "古いページへのリンクを左に、より新しいページへのリンクを右に表示"
+
+#: xpressme_class.php:377
+msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
+msgstr "より新しいページへのリンクを左に、古いページへのリンクを右に表示"
+
+#: xpressme_class.php:383
+msgid "Display Navi Title of Old Page Link"
+msgstr "古いページへのナビタイトルを設定"
+
+#: xpressme_class.php:390
+msgid "Display Navi Title of Newer Page Link"
+msgstr "より新しいページへのナビタイトルを設定"
+
+#: xpressme_class.php:405
+msgid "Role Setting at Login"
+msgstr "ログイン時の権限設定"
+
+#: xpressme_class.php:408
+msgid "XOOPS Groupe"
+msgstr "XOOPSグループ名"
+
+#: xpressme_class.php:408
+msgid "WordPress Role"
+msgstr "WordPressでの権限"
+
+#: xpressme_class.php:408
+msgid "Role is set at each login"
+msgstr "ログイン時、常に権限を更新する"
+
+#: xpressme_class.php:434
+#: xpressme_class.php:438
+#: xpressme_class.php:441
+msgid "Default Role of WordPress"
+msgstr "WordPressのデフォルト権限"
+
+#: xpressme_class.php:435
+#: xpressme_class.php:439
+#: xpressme_class.php:442
+msgid "Group User Doesn't Register"
+msgstr "ユーザ登録しない"
+
+#: xpressme_class.php:473
+msgid "WordPress MU cannot integrate the comments."
+msgstr "WordPress MUはコメント統合できません。"
+
+#: xpressme_class.php:475
+msgid "Do Not Comment Integration."
+msgstr "コメント統合しません。"
+
+#: xpressme_class.php:510
+msgid "Comment integration with D3Forum"
+msgstr "D3Forumとのコメント統合"
+
+#: xpressme_class.php:512
+msgid "Select the forum of D3Forum that does the comment integration from the following lists."
+msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。"
+
+#: xpressme_class.php:516
+msgid "Select the Type of display of D3Forum comment."
+msgstr "D3Forumの表示タイプを選択"
+
+#: xpressme_class.php:518
+#: xpressme_class.php:521
+msgid "Flat"
+msgstr "フラット"
+
+#: xpressme_class.php:519
+#: xpressme_class.php:522
+msgid "Threaded"
+msgstr "スレッド"
+
+#: xpressme_class.php:525
+msgid "Select the order of display of D3Forum comment."
+msgstr "D3Forumコメントの表示順を選択"
+
+#: xpressme_class.php:527
+#: xpressme_class.php:530
+msgid "DESC"
+msgstr "降順"
+
+#: xpressme_class.php:528
+#: xpressme_class.php:531
+msgid "ASC"
+msgstr "昇順"
+
+#: xpressme_class.php:534
+msgid "Number of displays of D3Forum comments."
+msgstr "D3Forumのコメント表示数"
+
+#: xpressme_class.php:538
+msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
+msgstr "WordPressコメントとD3Forumポスト間の一括転送（エクスポート・インポート）"
+
+#: xpressme_class.php:539
+msgid "Export to D3Forum"
+msgstr "D3Forumへ一括エクスポート"
+
+#: xpressme_class.php:540
+msgid "Import from D3Forum"
+msgstr "D3Forumから一括インポート"
+
+#: xpressme_class.php:552
+msgid "Contents Excerpt Setting"
+msgstr "記事抜粋の設定"
+
+#: xpressme_class.php:557
+msgid "Is the excerpt display done with the archive of contents?"
+msgstr "記事のアーカイブで抜粋表示を行いますか？"
+
+#: xpressme_class.php:564
+msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
+msgstr "ASCII文字が含まれる比率が設定された値より大きい場合、ASCII文字コンテンツと判断します。"
+
+#: xpressme_class.php:571
+msgid "Excerpt length of word for ASCII contents"
+msgstr "ASCIIコンテンツの抜粋単語数"
+
+#: xpressme_class.php:578
+msgid "Excerpt length of character for multibyte contents"
+msgstr "マルチバイトコンテンツの抜粋文字数"
+
+#: xpressme_class.php:585
+msgid "More Link Text (Is not displayed for the blank.)"
+msgstr "Moreリンクテキスト（ブランクの場合リンクを表示しません。）"
+
+#: xpressme_class.php:597
+msgid "Display Mode Setting"
+msgstr "表示モード設定"
+
+#: xpressme_class.php:600
+msgid "Select the XPressME Display Mode."
+msgstr "XPressMEの表示モードの選択"
+
+#: xpressme_class.php:605
+msgid "Xoops Mode"
+msgstr "XOOPSモード"
+
+#: xpressme_class.php:609
+msgid "WordPress Mode"
+msgstr "WordPressモード"
+
+#: xpressme_class.php:613
+msgid "User select"
+msgstr "ユーザによる選択"
+
+#: xpressme_class.php:623
+msgid "Header Meta Option"
+msgstr "ヘッダメタ　オプション"
+
+#: xpressme_class.php:628
+msgid "Select the Header keyword."
+msgstr "ヘッダで使用するキーワードの選択"
+
+#: xpressme_class.php:633
+msgid "Xoops KeyWord"
+msgstr "XOOPSのキーワード"
+
+#: xpressme_class.php:636
+msgid "WordPress KeyWord"
+msgstr "WordPressのキーワード"
+
+#: xpressme_class.php:639
+msgid "WordPress & Xoops KeyWord"
+msgstr "WordPressｊとXOOPSのキーワード"
+
+#: xpressme_class.php:645
+msgid "Select the Header Description."
+msgstr "ヘッダで使用するディスクリプション（説明）の選択"
+
+#: xpressme_class.php:650
+msgid "Xoops Description"
+msgstr "XOOPSのディスクリプション"
+
+#: xpressme_class.php:653
+msgid "WordPress Description"
+msgstr "WordPressのディスクリプション"
+
+#: xpressme_class.php:656
+msgid "WordPress & Xoops Description"
+msgstr "WordPressとXOOPSのディスクリプション"
+
+#: xpressme_class.php:662
+msgid "Select the Header Robots Index."
+msgstr "ヘッダで使用するロボットインデックスの選択"
+
+#: xpressme_class.php:667
+msgid "Xoops Robots Index"
+msgstr "XOOPSのロボットインデックス"
+
+#: xpressme_class.php:670
+msgid "WordPress Robots Index"
+msgstr "WordPressのロボットインデックス"
+
+#: xpressme_class.php:707
+msgid "XPressME Configuration Page"
+msgstr "XPressMEの設定ページ"
+
+#: xpressme_class.php:708
+msgid "to XOOPS Modules Admin Page"
+msgstr "XOOPSモジュール管理ページへ"
+
+#: xpressme_class.php:713
+msgid "Media Upload Base Path"
+msgstr "メディアアップロードのベースパス設定"
+
+#: xpressme_class.php:714
+msgid "Use XOOPS UPLOAD PATH"
+msgstr "XOOPSのアップロードパスを使用する。"
+
+#: xpressme_class.php:715
+msgid "USE WordPress BASE_PATH"
+msgstr "WordPressのベースパスを使用する。"
+
+#: xpressme_class.php:718
+msgid "Thema Sidebar Display"
+msgstr "テーマ表示時にサイドバー表示する。"
+
+#: xpressme_class.php:723
+msgid "The change tracking of the post is preserved"
+msgstr "投稿の変更履歴を有効にする。"
+
+#: xpressme_class.php:729
+msgid "Select Multi user mode"
+msgstr "マルチユーザーモードを選択"
+
+#: xpressme_class.php:740
+msgid "Is the posts author views counted?"
+msgstr "投稿者の閲覧をカウントしますか？"
+
+#: xpressme_class.php:746
+msgid "Is SQL debugging window displayed?"
+msgstr "SQLデバッグウィンドを表示しますか？"
+
+#: xpressme_class.php:758
+msgid "Update Config"
+msgstr "更新"
+
+#: xpressme_class.php:759
+msgid "Preset Config"
+msgstr "プリセット"
+
+#: xpressme_class.php:784
+#, php-format
+msgid "Unable to create directory %s. Is its parent directory writable by the server?"
+msgstr "%s ディレクトリーが作成できません。サーバーの親ディレクトリー書き込み権限があるか確認くださいr?"
+
+#: include/custom_functions.php:75
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%sのパーマリンク"
+
+#: include/custom_functions.php:416
+#: include/custom_functions.php:441
+#, php-format
+msgid "views :%d"
+msgstr "閲覧数 :%d"
+
+#: include/custom_functions.php:595
+msgid "Main"
+msgstr "メイン"
+
+#: include/custom_functions.php:598
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "カテゴリー &#8216;%s&#8217; のアーカイブ"
+
+#: include/custom_functions.php:601
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; タグのついている投稿"
+
+#: include/custom_functions.php:604
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%sの日別アーカイブ"
+
+#: include/custom_functions.php:604
+msgid "F jS, Y"
+msgstr "Y年n月j日"
+
+#: include/custom_functions.php:606
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%sの月別アーカイブ"
+
+#: include/custom_functions.php:606
+msgid "F, Y"
+msgstr "Y年n月"
+
+#: include/custom_functions.php:608
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%sの年別アーカイブ "
+
+#: include/custom_functions.php:608
+msgid "Y"
+msgstr "Y年"
+
+#: include/custom_functions.php:611
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Author"
+msgstr "投稿者 &#8216;%s&#8217; のアーカイブ"
+
+#: include/custom_functions.php:614
+#, php-format
+msgid "Search Results of word &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; の検索結果"
+
+#: include/custom_functions.php:620
+#: include/custom_functions.php:622
+#, php-format
+msgid "Article of %s"
+msgstr "%sの記事"
+
+#: include/custom_functions.php:644
+#, php-format
+msgid "From %1$s on site %2$s"
+msgstr "サイト %2$s の %1$s より"
+
+#: include/custom_functions.php:665
+msgid "No Trackback/Pingback"
+msgstr "トラックバック・ピンバックはありません"
+
+#: include/custom_functions.php:666
+msgid "One Trackback/Pingback"
+msgstr "トラックバック・ピンバック 1 件"
+
+#: include/custom_functions.php:667
+msgid "% TrackBack/Pingback"
+msgstr "トラックバック・ピンバック % 件"
+
+#: include/custom_functions.php:818
+msgid "Calendar"
+msgstr "カレンダー"
+
+#: include/custom_functions.php:819
+#, php-format
+msgid "%1$s %2$s|Used as a calendar caption"
+msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます"
+
+#: include/custom_functions.php:851
+#: include/custom_functions.php:861
+#, php-format
+msgid "View posts for %1$s %2$s"
+msgstr "%2$s年%1$sの投稿を表示"
+
+#: include/functions_for_wp20.php:20
+msgid "<strong>ERROR</strong>: The password field is empty."
+msgstr "<strong>エラー</strong>: パスワードが入力されていません."
+
+#: include/functions_for_wp20.php:28
+msgid "<strong>ERROR</strong>: Invalid username."
+msgstr "<strong>エラー</strong>: ユーザ名が異なっています."
+
+#: include/functions_for_wp20.php:36
+msgid "<strong>ERROR</strong>: Incorrect password."
+msgstr "<strong>エラー</strong>: パスワードが異なっています."
+
+#: include/xpress_common_functions.php:202
+msgid "Themes"
+msgstr "テーマ"
+
+#: include/xpress_common_functions.php:217
+msgid "Switch to XOOPS mode"
+msgstr "XOOPSモードへ切替"
+
+#: include/xpress_common_functions.php:221
+#: include/xpress_common_functions.php:224
+msgid "Switch to WordPress mode"
+msgstr "WordPressモードへ切替"
+
+#~ msgid "XPressME"
+#~ msgstr "XPressME"
+
Index: trunk/extras/for_wordpressme2011/ja_UTF/wp-content/themes/xpress_default/ja_UTF.po
===================================================================
--- trunk/extras/for_wordpressme2011/ja_UTF/wp-content/themes/xpress_default/ja_UTF.po	(revision 314)
+++ trunk/extras/for_wordpressme2011/ja_UTF/wp-content/themes/xpress_default/ja_UTF.po	(revision 314)
@@ -0,0 +1,713 @@
+# WordPress 用日本語リソース (UTF-8) 
+# Japanese (UTF-8) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# このファイルは WordPress 本体と同じライセンスのもと配布されています。
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress 日本語版作成チーム / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  誤字脱字誤訳、あるいはよりよい訳などありましたら以下までぜひお知らせください。
+#  また、翻訳、校正、コミットをお手伝いしていただける方も随時募集中です。
+#  連絡先 / Contact: wpja.team@gmail.com (件名か内容に「日本語リソース」と入れてください)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-22 09:04+0900\n"
+"PO-Revision-Date: 2009-06-22 10:22+0900\n"
+"Last-Translator: toemon <toychee@toemon.com>\n"
+"Language-Team: toemon <info@toemon.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\xpressme_integration_kit\\wp-content\\themes\\xpress_default\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:22
+msgid "Error 404 - Not Found"
+msgstr "エラー 404 - 見つかりませんでした"
+
+#: archives.php:20
+msgid "Archives by Month:"
+msgstr "月別のアーカイブ:"
+
+#: archives.php:25
+msgid "Archives by Subject:"
+msgstr "カテゴリー別アーカイブ:"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s へのコメント"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "コメント"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "コメント"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "トラックバック"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "ピンバック"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "コメントはまだありません。"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "コメントをどうぞ"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>"
+
+#: comments-popup.php:64
+#: comments.php:92
+msgid "Name"
+msgstr "お名前"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "メールアドレス"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "コメント"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "送信する !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "コメントフォームは現在閉鎖中です。"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "このウインドウを閉じる。"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: comments.php:6
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。"
+
+#: comments.php:17
+#: comments.php:38
+msgid "No Responses"
+msgstr "コメント はありません"
+
+#: comments.php:17
+#: comments.php:38
+msgid "One Response"
+msgstr "コメント 1 件"
+
+#: comments.php:17
+#: comments.php:38
+msgid "% Responses"
+msgstr "コメント % 件"
+
+#: comments.php:17
+#: comments.php:38
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:33
+#: comments.php:63
+msgid "Comments are closed."
+msgstr "現在コメントは受け付けていません。"
+
+#: comments.php:43
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> より:"
+
+#: comments.php:45
+msgid "Your comment is awaiting moderation."
+msgstr "コメントは承認待ちです。"
+
+#: comments.php:48
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:48
+msgid "Comment Edit"
+msgstr "編集"
+
+#: comments.php:70
+msgid "Leave a Reply"
+msgstr "コメントをどうぞ"
+
+#: comments.php:70
+#, php-format
+msgid "Leave a Reply for %s"
+msgstr "%s にコメントする"
+
+#: comments.php:80
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:86
+#: comments.php:88
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:86
+#: comments.php:88
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:86
+#: comments.php:88
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:92
+#: comments.php:95
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:95
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:98
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:103
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:107
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: footer.php:5
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:5
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:5
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:7
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d 個のクエリと %s 秒を要しました。"
+
+#: footer.php:9
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f 秒"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "ヘッダーのカスタマイズ"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "設定を保存しました。"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ブログアーカイブ"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS フィード"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom フィード"
+
+#: header.php:47
+msgid "Main Page"
+msgstr "メインページ"
+
+#: header.php:50
+msgid "Blogs Home"
+msgstr "ブログのホーム"
+
+#: header.php:51
+msgid "Post New"
+msgstr "新規投稿"
+
+#: image.php:13
+#: index.php:36
+#: single.php:32
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:29
+msgid "Pages:"
+msgstr "ページ:"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。"
+
+#: image.php:25
+#: sidebar.php:24
+msgid "l, F jS, Y"
+msgstr "Y 年 n 月 j 日 l"
+
+#: 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 "この投稿へのコメントは <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 "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<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 "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。"
+
+#: image.php:39
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。"
+
+#: image.php:43
+msgid "Both comments and pings are currently closed."
+msgstr "現在コメント、トラックバックともに受け付けておりません。"
+
+#: image.php:45
+#: page.php:34
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: image.php:58
+#: single.php:94
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:29
+#: index.php:31
+#: single.php:24
+#: single.php:26
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: index.php:44
+#: single.php:42
+#, php-format
+msgid "Views :%d"
+msgstr "閲覧 :%d"
+
+#: index.php:47
+#: single.php:45
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:49
+#: single.php:47
+msgid "Edit"
+msgstr "編集"
+
+#: index.php:50
+#: single.php:48
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: index.php:50
+#: single.php:48
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: index.php:68
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: index.php:69
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:18
+msgid "Links:"
+msgstr "リンク:"
+
+#: page.php:27
+msgid "Read the rest of this page &raquo;"
+msgstr "このページの続きを読む &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "検索:"
+
+#: searchform.php:8
+msgid "Search"
+msgstr "検索"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "作成者"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+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 "<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 "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。"
+
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y 年 n 月"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "ページ"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "アーカイブ"
+
+#: sidebar.php:51
+#: sidebar.php:53
+msgid "Categories"
+msgstr "カテゴリー"
+
+#: sidebar.php:62
+msgid "Meta"
+msgstr "メタ情報"
+
+#: sidebar.php:66
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する"
+
+#: sidebar.php:66
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:67
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:67
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:68
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:53
+msgid "No Trackback/Pingback"
+msgstr "トラックバック・ピンバックはありません"
+
+#: single.php:53
+msgid "One Trackback/Pingback"
+msgstr "トラックバック・ピンバック 1 件"
+
+#: single.php:53
+msgid "% TrackBack/Pingback"
+msgstr "トラックバック・ピンバック % 件"
+
+#: single.php:57
+#, php-format
+msgid "You can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることができます。"
+
+#: single.php:59
+msgid "Pinging is currently not allowed."
+msgstr "トラックバック / ピンバックは現在受け付けていません。"
+
+#: blocks/archives_block_theme.php:13
+msgid "Select Yearly"
+msgstr "年を選択"
+
+#: blocks/archives_block_theme.php:16
+#: blocks/archives_block_theme.php:28
+msgid "Select Monthly"
+msgstr "月を選択"
+
+#: blocks/archives_block_theme.php:19
+msgid "Select Weekly"
+msgstr "週を選択"
+
+#: blocks/archives_block_theme.php:22
+msgid "Select Daily"
+msgstr "日を選択"
+
+#: blocks/archives_block_theme.php:25
+msgid "Select Post"
+msgstr "記事を選択"
+
+#: blocks/authors_block_theme.php:31
+msgid "All Authors"
+msgstr "全ての投稿者"
+
+#: blocks/enhanced_block_theme.php:11
+msgid "The include file name to display it is not set."
+msgstr "表示を行うためのインクルードファイル名が設定されていません。"
+
+#: blocks/enhanced_block_theme.php:13
+#, php-format
+msgid "File %s not exist."
+msgstr "ファイル %s が見つかりません。"
+
+#: blocks/enhanced_block_theme.php:19
+msgid "PHP code error"
+msgstr "PHPコードにエラーがあります。"
+
+#: blocks/meta_block_theme.php:24
+msgid "Posts RSS"
+msgstr "投稿の RSS"
+
+#: blocks/meta_block_theme.php:27
+msgid "Comments RSS"
+msgstr "コメント のRSS"
+
+#: blocks/meta_block_theme.php:40
+#: blocks/meta_block_theme.php:45
+msgid "Add New"
+msgstr "新規投稿"
+
+#: blocks/meta_block_theme.php:54
+msgid "Site Admin"
+msgstr "WordPress管理"
+
+#: blocks/meta_block_theme.php:60
+msgid "User Profile"
+msgstr "ユーザープロファイル"
+
+#: blocks/meta_block_theme.php:68
+#: blocks/meta_block_theme.php:73
+msgid "Subscription management"
+msgstr "メール購読の設定"
+
+#: blocks/meta_block_theme.php:81
+msgid "ReadMe"
+msgstr "ReadMe表示"
+
+#: blocks/meta_block_theme.php:86
+msgid "Themes"
+msgstr "テーマ選択"
+
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:66
+#: blocks/recent_posts_list_block_theme.php:68
+msgid "Tags:"
+msgstr "タグ:"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (0)"
+msgstr "コメントはありません"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (1)"
+msgstr "1件のコメント"
+
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:105
+#: blocks/recent_posts_list_block_theme.php:97
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/recent_comments_block_theme.php:81
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s に %1$s より"
+
+#~ msgid "views: %d"
+#~ msgstr "閲覧 :%d回"
+#~ msgid "more"
+#~ msgstr "続きを読む"
+
+#, fuzzy
+#~ msgid "F jS, Y"
+#~ msgstr "Y 年 n 月 j 日 l"
+#~ msgid "Calendar"
+#~ msgstr "カレンダー"
+#~ msgid "%1$s %2$s|Used as a calendar caption"
+#~ msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます"
+#~ msgid "View posts for %1$s %2$s"
+#~ msgstr "%2$s 年 %1$s の投稿を表示"
+
Index: trunk/extras/htaccess_for_xrea/readme.txt
===================================================================
--- trunk/extras/htaccess_for_xrea/readme.txt	(revision 314)
+++ trunk/extras/htaccess_for_xrea/readme.txt	(revision 314)
@@ -0,0 +1,3 @@
+File .htaccess effectively does the Wordpress up-loading by the XREA server. 
+
+Please upload file .htaccess in the wp-admin directory of the XPressME module. 
Index: trunk/extras/htaccess_for_xrea/src/wp-admin/.htaccess
===================================================================
--- trunk/extras/htaccess_for_xrea/src/wp-admin/.htaccess	(revision 314)
+++ trunk/extras/htaccess_for_xrea/src/wp-admin/.htaccess	(revision 314)
@@ -0,0 +1,19 @@
+<files async-upload.php>
+AddHandler application/x-httpd-phpcgi .php
+</files>
+
+<files media-upload.php>
+AddHandler application/x-httpd-phpcgi .php
+</files>
+
+<Files plugin-install.php>
+AddHandler application/x-httpd-phpcgi .php
+</Files>
+
+<Files update.php>
+AddHandler application/x-httpd-phpcgi .php
+</Files>
+
+<Files update-core.php>
+AddHandler application/x-httpd-phpcgi .php
+</Files>
Index: trunk/extras/xpress_i18n/en/wp-config.php
===================================================================
--- trunk/extras/xpress_i18n/en/wp-config.php	(revision 314)
+++ trunk/extras/xpress_i18n/en/wp-config.php	(revision 314)
@@ -0,0 +1,137 @@
+<?php
+require_once dirname( __FILE__ ).'/include/xpress_debug_log.php' ;
+require_once dirname( __FILE__ ).'/class/config_from_xoops.class.php' ;
+$xoops_config = new ConfigFromXoops;
+require_once dirname( __FILE__ ).'/include/set_cash_cookie_path.php' ;
+
+/**
+ * mb_language() sets language. If language  is omitted, it returns current language as string.
+ * language setting is used for encoding e-mail messages. 
+ * Valid languages are "Japanese", "ja","English","en" and "uni" (UTF-8). 
+ * mb_send_mail() uses this setting to encode e-mail.
+ * Language and its setting is ISO-2022-JP/Base64 for Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for English. 
+ */
+// if (function_exists("mb_language")) mb_language('uni');
+
+
+// ** MySQL settings - You can get this info from your web host ** //
+// Do not change  'DB_NAME','DB_USER','DB_PASSWORD' & 'DB_HOST'
+// because copies a set value of XOOPS. 
+
+/** Do not change. The name of the database for WordPress */
+define('DB_NAME', $xoops_config->xoops_db_name);
+
+/** Do not change. MySQL database username */
+define('DB_USER', $xoops_config->xoops_db_user);
+
+/** Do not change. MySQL database password */
+define('DB_PASSWORD', $xoops_config->xoops_db_pass);
+
+/** Do not change. MySQL hostname */
+define('DB_HOST', $xoops_config->xoops_db_host);
+	
+/** Database Charset to use in creating database tables. */
+define('DB_CHARSET', 'utf8');
+
+/** The Database Collate type. Don't change this if in doubt. */
+define('DB_COLLATE', '');
+
+//define('WP_DEBUG' ,true);
+
+/**#@+
+ * Authentication Unique Keys.
+ *
+ * Change these to different unique phrases!
+ * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
+ *
+ * @since 2.6.0
+ */
+define('AUTH_KEY', 'put your unique phrase here');
+define('SECURE_AUTH_KEY', 'put your unique phrase here');
+define('LOGGED_IN_KEY', 'put your unique phrase here');
+define('NONCE_KEY', 'put your unique phrase here');
+
+if ($xoops_config->is_wpmu){	//for WordPressMU
+	define('VHOST', 'no'); 
+	$base = $xoops_config->mu_path_current_site;
+	define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site );
+	define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site );
+	define('SITE_ID_CURRENT_SITE', 1);
+	define('BLOGID_CURRENT_SITE', '1' );
+
+	define('AUTH_SALT', 'put your unique phrase here');
+	define('LOGGED_IN_SALT', 'put your unique phrase here');
+	define('SECURE_AUTH_SALT', 'put your unique phrase here');
+}
+
+/**
+ * WordPress Database Table prefix.
+ *
+ * You can have multiple installations in one database if you give each a unique
+ * prefix. Only numbers, letters, and underscores please!
+ */
+// Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 
+$table_prefix  = $xoops_config->module_db_prefix;
+
+/**
+ * WordPress Localized Language, defaults to Japanese.
+ *
+ * Change this to localize WordPress.  A corresponding MO file for the chosen
+ * language must be installed to wp-content/languages. For example, install
+ * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
+ * language support.
+ *
+ * Example:
+ * define ('WPLANG', '');		// language support to English
+ */
+define ('WPLANG', '');		// language support to Japanese
+
+/* That's all, stop editing! Happy blogging. */
+
+/** WordPress absolute path to the Wordpress directory. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+require_once( ABSPATH .'/include/request_url.php');
+if (is_xpress_index_page_call()){
+	require_once $xoops_config->xoops_mainfile_path; //It is necessary to execute it for the user attestation before wp-settings.php. 
+	require_once(ABSPATH.'wp-settings.php');
+	wp();
+	
+	if (!function_exists('is_wordpress_style')){	// When the XPressME plug-in is invalid
+		require_once dirname( __FILE__ ).'/include/xpress_active_plugin.php' ;
+		xpress_pulugin_activation('xpressme/xpressme.php');
+		// reloaded 
+		header('Location: ' . $xoops_config->module_url . '/');
+		
+		$err_str = "The activation of the XPressME plugin was executed.<br />\n";
+		$err_str .= "Because the XPressME plugin was invalid.<br />\n";
+		$err_str .= "Please do the rereading seeing on the page.\n";			
+		die($err_str);
+	}
+
+	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
+	if (is_wordpress_style() || is_feed()) {
+		require_once( ABSPATH . WPINC . '/template-loader.php' );
+	} else {
+		ob_start();	
+			require_once( ABSPATH . WPINC . '/template-loader.php' );
+			$wp_output = ob_get_contents();
+		ob_end_clean();
+		require_once( ABSPATH .'/include/xpress_render.php' );
+		xpress_render($wp_output);
+	}
+		
+	
+	//When there is no block cache, and an optional block is different, cache is refreshed. 
+	//When adding, and changing and deleting Post & Comment, block cache is refreshed by add_action at any time. 
+	// This Function in xpressme plugin
+	require_once( ABSPATH .'/include/xpress_block_render.php' );	
+	xpress_unnecessary_block_cache_delete($xoops_config->module_name);
+	if (is_home()) xpress_block_cache_refresh($xoops_config->module_name);
+	exit();		// The return to wp-blog-header.php is stolen here
+}
+if (is_admin_post_call()) require_once $xoops_config->xoops_mainfile_path;
+if (is_xpress_comments_post_call()) require_once $xoops_config->xoops_mainfile_path;
+require_once(ABSPATH.'wp-settings.php');
+?>
