Index: /trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php
===================================================================
--- /trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php	(revision 821)
+++ /trunk/extras/for_wordpressme2011/ja_EUC/wp-config.php	(revision 821)
@@ -0,0 +1,85 @@
+<?php
+/** It is an additional loading for XPressME. */
+require_once dirname( __FILE__ ).'/include/add_xpress_config.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', 'ujis');
+
+/** 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');
+
+/**
+ * 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__).'/');
+
+/** Processing for XPressME is done.*/
+require_once( ABSPATH .'/include/add_xpress_process.php');
+
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: /trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php
===================================================================
--- /trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php	(revision 821)
+++ /trunk/extras/for_wordpressme2011/ja_UTF/wp-config.php	(revision 821)
@@ -0,0 +1,84 @@
+<?php
+/** It is an additional loading for XPressME. */
+require_once dirname( __FILE__ ).'/include/add_xpress_config.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');
+
+/**
+ * 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__).'/');
+
+/** Processing for XPressME is done.*/
+require_once( ABSPATH .'/include/add_xpress_process.php');
+
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: /trunk/extras/htaccess_for_xrea/readme.txt
===================================================================
--- /trunk/extras/htaccess_for_xrea/readme.txt	(revision 821)
+++ /trunk/extras/htaccess_for_xrea/readme.txt	(revision 821)
@@ -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 821)
+++ /trunk/extras/htaccess_for_xrea/src/wp-admin/.htaccess	(revision 821)
@@ -0,0 +1,23 @@
+<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>
+
+<Files admin.php>
+AddHandler application/x-httpd-phpcgi .php
+</Files>
Index: /trunk/extras/htaccess_for_xrea/src/wp-content/.htaccess
===================================================================
--- /trunk/extras/htaccess_for_xrea/src/wp-content/.htaccess	(revision 821)
+++ /trunk/extras/htaccess_for_xrea/src/wp-content/.htaccess	(revision 821)
@@ -0,0 +1,3 @@
+<files uploader.php>
+AddHandler application/x-httpd-phpcgi .php
+</files>
Index: /trunk/extras/my_themes/404.php
===================================================================
--- /trunk/extras/my_themes/404.php	(revision 821)
+++ /trunk/extras/my_themes/404.php	(revision 821)
@@ -0,0 +1,29 @@
+<?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>
+
+		<h2 class="center"><?php _e('Error 404 - Not Found', 'xpress'); ?></h2>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /trunk/extras/my_themes/archives.php
===================================================================
--- /trunk/extras/my_themes/archives.php	(revision 821)
+++ /trunk/extras/my_themes/archives.php	(revision 821)
@@ -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/my_themes/comments-popup.php
===================================================================
--- /trunk/extras/my_themes/comments-popup.php	(revision 821)
+++ /trunk/extras/my_themes/comments-popup.php	(revision 821)
@@ -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/my_themes/comments.php
===================================================================
--- /trunk/extras/my_themes/comments.php	(revision 821)
+++ /trunk/extras/my_themes/comments.php	(revision 821)
@@ -0,0 +1,125 @@
+<?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 ( xpress_is_wp_version('>=','2.7')) : ?>
+	<?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 else : // is version 2.7 under?>
+	<?php if ( $comments ) : ?>
+		<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 foreach ($comments as $comment) : ?>
+				<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
+					<?php if (function_exists('get_avatar')) echo get_avatar( $comment, 32 ); ?>	
+					<?php printf(__('<cite>%s</cite> Says:', 'xpress'), get_comment_author_link()); ?>
+					<?php if ($comment->comment_approved == '0') : ?>
+					<em><?php _e('Your comment is awaiting moderation.', 'xpress'); ?></em>
+					<?php endif; ?>
+					<br />
+					<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%1$s at %2$s', 'xpress'), get_comment_date(), get_comment_time()); ?></a> <?php edit_comment_link(__('Comment Edit', 'xpress'),'&nbsp;&nbsp;',''); ?></small>
+					<?php comment_text() ?>
+				</li>
+				<?php
+					/* Changes every other comment to a different class */
+					$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
+				?>
+			<?php endforeach; /* end for each comment */ ?>
+			</ol>
+		</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 endif; ?>
+
+<?php if ('open' == $post->comment_status) : ?>
+	<div id="respond">
+		<h3><?php comment_form_title( __('Leave a Reply', 'xpress'), __('Leave a Reply for %s' , 'xpress') ); ?></h3>
+			
+		<?php if ( function_exists('cancel_comment_reply_link') ): ?>
+			<div id="cancel-comment-reply"> 
+				<small><?php cancel_comment_reply_link() ?></small>
+			</div> 
+		<?php endif; ?>
+		
+		<?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 ) : ?>
+						<?php if ( function_exists('wp_logout_url') ): ?>
+							<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><?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 get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account', 'xpress'); ?>"><?php _e('Log out &raquo;', 'xpress'); ?></a></p>
+						<?php endif; ?>
+					<?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 if (function_exists('comment_id_fields')) : ?>
+						<?php comment_id_fields(); //@since 2.7.0 ?>  
+					<?php else : ?>
+						<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+					<?php endif; ?>
+					<?php
+						ob_start();
+							do_action('comment_form', $post->ID);
+							$output = ob_get_contents();
+						ob_end_clean();
+						echo str_replace(' id="_wp', ' id="wp', $output);
+					?>
+				</div>
+			</form>
+		<?php endif; // If registration required and not logged in ?>
+	</div>
+
+<?php endif; // if you delete this the sky will fall on your head ?>
Index: /trunk/extras/my_themes/footer.php
===================================================================
--- /trunk/extras/my_themes/footer.php	(revision 821)
+++ /trunk/extras/my_themes/footer.php	(revision 821)
@@ -0,0 +1,17 @@
+<hr class="xpress-border"></hr>
+<?php
+	/* A sidebar in the footer? Yep. You can can customize
+	 * your footer with four columns of widgets.
+	 */
+	get_sidebar( 'footer' );
+?>
+<div id="xpress_footer">
+	<div class="xpress_rss">
+		<?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>
+	<div class="xpress_credit"><?php echo xpress_credit('echo=0'). ' (' . xpress_convert_time('echo=0&format=' . __('%.3f sec.', 'xpress')) . ')'; ?></div>
+</div>
+</div>
+		<?php wp_footer(); ?>
+</body>
+</html>
Index: /trunk/extras/my_themes/functions.php
===================================================================
--- /trunk/extras/my_themes/functions.php	(revision 821)
+++ /trunk/extras/my_themes/functions.php	(revision 821)
@@ -0,0 +1,550 @@
+<?php
+/** Tell WordPress to run xpress_setup() when the 'after_setup_theme' hook is run. */
+add_action( 'after_setup_theme', 'xpress_setup' );
+if ( ! function_exists( 'xpress_setup' ) ):
+function xpress_setup() {
+	// This theme uses post thumbnails
+	add_theme_support( 'post-thumbnails' );
+	// Add default posts and comments RSS feed links to head
+	add_theme_support( 'automatic-feed-links' );
+
+	// Make theme available for translation
+	// Translations can be filed in the /languages/ directory
+	load_theme_textdomain( 'xpress', TEMPLATEPATH . '/languages' );
+
+	$locale = get_locale();
+	$locale_file = TEMPLATEPATH . "/languages/$locale.php";
+	if ( is_readable( $locale_file ) )
+		require_once( $locale_file );
+
+	// This theme uses wp_nav_menu()
+	if ( function_exists('add_theme_support') )add_theme_support( 'nav-menus' );
+	// This theme uses wp_nav_menu() in one location.
+	if ( function_exists('register_nav_menus') ){
+			register_nav_menus( array(
+			'primary' => __('Primary Navigation','xpress'),
+		) );
+	}
+	
+}	
+endif;
+	
+if ( function_exists('register_sidebar') )
+    register_sidebar(array(
+        'before_widget' => '<li id="%1$s" class="widget %2$s">',
+        'after_widget' => '</li>',
+        'before_title' => '<h2 class="widgettitle">',
+        'after_title' => '</h2>',
+    ));
+
+
+function xpress_head() {
+	$head = "<style type='text/css'>\n<!--";
+	$output = '';
+	if ( xpress_header_image() ) {
+		$url =  xpress_header_image_url() ;
+		$output .= "#xpress_header { background: url('$url') repeat-x bottom left; }\n";
+	}
+	if ( false !== ( $color = xpress_header_color() ) ) {
+		$output .= "#xpress-header-bar-top a, #xpress-header-bar-top a:visited, #xpress-header-bar-top .xpress-description ,#xpress-header-bar-top .xpress-conditional-title,#access a, #xpress-menu a{ 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 'ffffff';
+}
+
+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 'ffffff';
+}
+
+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 'black';
+
+	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');
+		
+		if ( isset( $_REQUEST['action'] ) && 'update_footer' == $_REQUEST['action'] ) {
+			check_admin_referer('xpress-footer');
+			if ( isset($_REQUEST['xpress_footer_sidebars_count']) ) {
+				check_admin_referer('xpress-footer');
+				if ( '' == $_REQUEST['xpress_footer_sidebars_count'] || '0' == $_REQUEST['xpress_footer_sidebars_count'] ){
+					delete_option('xpress_footer_sidebars_count');
+				} else {
+					update_option('xpress_footer_sidebars_count',  $_REQUEST['xpress_footer_sidebars_count']);
+				}
+			}
+
+			//print_r($_REQUEST);
+			wp_redirect("themes.php?page=functions.php&footer_saved=true");
+			die;
+		}
+	}
+	add_theme_page(__('Header & Footer', 'xpress'), __('Header & Footer', 'xpress'), 'edit_themes', basename(__FILE__), 'xpress_theme_header_page');
+}
+
+
+function xpress_theme_page_head() {
+?>
+<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: 2em;
+		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;
+	}
+	#footer_submit {
+		margin-top: 20px;
+		text-align: center;
+	}
+	#footer_form{
+		padding-left: 40px;
+	}
+
+</style>
+<?php
+}
+
+function xpress_theme_header_page() {
+	if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Header Options saved.', 'xpress').'</strong></p></div>';
+	if ( isset( $_REQUEST['footer_saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Footer Options saved.', 'xpress').'</strong></p></div>';
+?>
+<div class='wrap'>
+	<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 id="xpress-footer">
+	<h2><?php _e('Footer', 'xpress'); ?></h2>
+		<form id="footer_setting" style="display:inline;" method="post" action="">
+			<div id="footer_form">
+				<?php wp_nonce_field('xpress-footer'); ?>
+				<?php
+				if ( function_exists('register_sidebar') ){
+					echo __('Set number of the sidebar to display in the footer.','xpress');
+					echo '<select name="xpress_footer_sidebars_count">'."\n";
+						$side_bar_num = get_option('xpress_footer_sidebars_count');
+						if (empty($side_bar_num)) $side_bar_num = 0;
+						for($i=0;$i<=5;$i++){
+							if ($i== 0) $sel_name = __('none','xpress'); else $sel_name = $i;
+							if ($i == $side_bar_num) $selected = ' selected '; else $selected = '';
+							echo "\t\t\t\t<option value=\"{$i}\" label=\"{$i}\" {$selected}>{$sel_name}</option>\n";
+						}
+					echo "</select>\n";
+				}
+				?>
+				<input type="hidden" name="action" value="update_footer" />
+			</div>
+			<div id="footer_submit">
+			<input type="submit" name="footer_submit" id="footer_submit" value="<?php echo attribute_escape(__('Update Footer &raquo;', 'xpress')); ?>" />
+			</div>
+		</form>
+	</div>
+
+</div>
+<?php } 
+
+function footer_widgets_init() {
+	if (!function_exists('register_sidebar') ) return;
+
+	$side_bar_num = get_option('xpress_footer_sidebars_count');
+	if (empty($side_bar_num)) return;
+	for($i=1;$i <= $side_bar_num;$i++){
+		switch($i){
+			case 1:
+				$name = __( 'First Footer Widget Area', 'kubrick' );
+				$description = __( 'The first footer widget area', 'kubrick' );
+				break;
+			case 2:
+				$name = __( 'Second Footer Widget Area', 'kubrick' );
+				$description = __( 'The second footer widget area', 'kubrick' );
+				break;
+			case 3:
+				$name = __( 'Third Footer Widget Area', 'kubrick' );
+				$description = __( 'The third footer widget area', 'kubrick' );
+				break;
+			case 4:
+				$name = __( 'Fourth Footer Widget Area', 'kubrick' );
+				$description = __( 'The fourth footer widget area', 'kubrick' );
+				break;
+			case 5:
+				$name = __( 'Fifth Footer Widget Area', 'kubrick' );
+				$description = __( 'The fifth footer widget area', 'kubrick' );
+				break;
+				
+		}
+
+		register_sidebar( array(
+			'name' => $name,
+			'id' => 'footer-widget-area-'.$i,
+			'description' => $description,
+			'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+			'after_widget' => '</li>',
+			'before_title' => '<h3 class="widget-title">',
+			'after_title' => '</h3>',
+		) );
+	}
+}
+
+add_action( 'widgets_init', 'footer_widgets_init' );
+
+
+
+?>
Index: /trunk/extras/my_themes/header.php
===================================================================
--- /trunk/extras/my_themes/header.php	(revision 821)
+++ /trunk/extras/my_themes/header.php	(revision 821)
@@ -0,0 +1,69 @@
+<!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 <?php if(function_exists('body_class')) body_class(); ?>>
+<div id="xpress_page">
+	<div id="xpress-header-bar">
+		<!-- <div id="xpress_header" role="banner"> -->
+		<div id="xpress_header">
+			<div id="xpress-header-bar-top">
+				<div class="xpress-header-title">
+					<?php  if (xpress_selected_author_id('echo=0') && function_exists('get_avatar')) 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 class="xpress-description">
+					<?php bloginfo('description'); ?>
+				</div>
+			</div><!-- #xpress-header-bar-top -->
+	
+			<!-- <div id="menu_div" role="navigation"> -->
+			<div id="menu_div">
+				<div id="access">
+					<?php if (function_exists('wp_nav_menu')) wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-aheader' ) ); ?> 
+				</div><!-- #access -->
+				<div id="xpress-menu">
+					<div class="menu-header">
+						<div class="menu">
+							<ul>
+								<?php
+									if(xpress_is_multiblog()){
+										$blog_details = get_blog_details(1);
+										$site_url = $blog_details->siteurl;
+										echo '<li><a href="' . $site_url . '/">' . __('Main Page','xpress') . '</a></li>';
+									}
+								?>
+								<li><a href="<?php echo get_option('home'); ?>/"><?php _e('Blogs Home','xpress')?></a></li>
+								<?php if(xpress_is_contributor()) { echo '<li>'. xpress_post_new_link('link_title='. __('Post New','xpress'). '&echo=0').'</li>'; }?>
+							</ul>
+						</div><!-- #menu -->
+					</div><!-- #menu-header -->
+				</div><!-- #xpress-menu -->
+			</div><!-- #menu_div -->
+		</div><!-- #xpress_header -->
+	</div><!-- #xpress-header-bar -->
Index: /trunk/extras/my_themes/image.php
===================================================================
--- /trunk/extras/my_themes/image.php	(revision 821)
+++ /trunk/extras/my_themes/image.php	(revision 821)
@@ -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/my_themes/images/header-img.php
===================================================================
--- /trunk/extras/my_themes/images/header-img.php	(revision 821)
+++ /trunk/extras/my_themes/images/header-img.php	(revision 821)
@@ -0,0 +1,77 @@
+<?php
+
+$img = 'xpressheader.jpg';
+
+// If we don't have image processing support, redirect.
+if ( ! function_exists('imagecreatefromjpeg') )
+	die(header("Location: xpressheader.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 = 84;
+
+// 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 = 0;
+	$x2 = 800;
+	imageline( $im, $x1, $i, $x2, $i, $white );
+}
+
+// Draw a new color thing
+for ( $i = 0; $i < $h; $i++ ) {
+	$x1 = 0;
+	$x2 = 800;
+	$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, $i, $x2, $i, $color );
+}
+
+//die;
+header("Content-Type: image/jpeg");
+imagejpeg($im, '', 92);
+imagedestroy($im);
+?>
Index: /trunk/extras/my_themes/index.php
===================================================================
--- /trunk/extras/my_themes/index.php	(revision 821)
+++ /trunk/extras/my_themes/index.php	(revision 821)
@@ -0,0 +1,77 @@
+<?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">
+							<?php if(function_exists('the_title_attribute')) : ?>			
+								<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>
+							<?php else : ?>
+								<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title('','',false)); ?>"><?php the_title(); ?></a></h2>
+							<?php endif; ?>
+						</div>
+					</div>
+					<div class="xpress-post-entry">
+						<?php xpress_the_content(); ?>
+					</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/my_themes/languages/ja.po
===================================================================
--- /trunk/extras/my_themes/languages/ja.po	(revision 821)
+++ /trunk/extras/my_themes/languages/ja.po	(revision 821)
@@ -0,0 +1,823 @@
+# Japanese (UTF-8) translation for XPressME Default Themes
+# Copyright (c) 2005-2008 XPressME
+# This file is distributed under the same license as the XPressME package.
+# toemon <info@toemon.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-21 09:49+0900\n"
+"PO-Revision-Date: 2011-02-21 09:50+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-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: D:\\XPressME_Project\\XPressME_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:91
+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:79
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:85
+#: comments.php:87
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:91
+#: comments.php:94
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:94
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:97
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:102
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:106
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: footer.php:10
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:10
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:10
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:12
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f 秒"
+
+#: functions.php:25
+msgid "Primary Navigation"
+msgstr "メインナビゲージョン"
+
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "ヘッダー&フッター"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "ヘッダー設定を保存しました。"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "フッター設定を保存しました。"
+
+#: functions.php:420
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:433
+#: functions.php:440
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:434
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:434
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:435
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:435
+#: functions.php:436
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:436
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:438
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:439
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:448
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:449
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:450
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:451
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:452
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:459
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:465
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:466
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:467
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:468
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:469
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "フッター"
+
+#: functions.php:481
+msgid "Set number of the sidebar to display in the footer."
+msgstr "フッターに表示するサイドバーの数を設定"
+
+#: functions.php:486
+msgid "none"
+msgstr "なし"
+
+#: functions.php:496
+msgid "Update Footer &raquo;"
+msgstr "フッターを更新 &raquo;"
+
+#: functions.php:512
+msgid "First Footer Widget Area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:513
+msgid "The first footer widget area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:516
+msgid "Second Footer Widget Area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:517
+msgid "The second footer widget area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:520
+msgid "Third Footer Widget Area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:521
+msgid "The third footer widget area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:524
+msgid "Fourth Footer Widget Area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:525
+msgid "The fourth footer widget area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:528
+msgid "Fifth Footer Widget Area"
+msgstr "フッターウィジェットエリア５"
+
+#: functions.php:529
+msgid "The fifth footer widget area"
+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:58
+msgid "Main Page"
+msgstr "メインページ"
+
+#: header.php:61
+msgid "Blogs Home"
+msgstr "ブログのホーム"
+
+#: header.php:62
+msgid "Post New"
+msgstr "新規投稿"
+
+#: image.php:13
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:22
+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:27
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: image.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:29
+#: index.php:31
+#: multi_blog_index.php:33
+#: multi_blog_index.php:35
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: index.php:44
+#: multi_blog_index.php:48
+#, php-format
+msgid "Views :%d"
+msgstr "閲覧 :%d"
+
+#: index.php:47
+#: multi_blog_index.php:51
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:49
+#: multi_blog_index.php:53
+msgid "Edit"
+msgstr "編集"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: index.php:68
+#: multi_blog_index.php:72
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: index.php:69
+#: multi_blog_index.php:73
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:18
+msgid "Links:"
+msgstr "リンク:"
+
+#: multi_blog_front.php:9
+msgid "Site News"
+msgstr "サイトニュース"
+
+#: multi_blog_front.php:18
+msgid "Blogs List"
+msgstr "ブログリスト"
+
+#: multi_blog_front.php:27
+msgid "post count"
+msgstr "投稿数"
+
+#: multi_blog_front.php:34
+msgid "New Entries"
+msgstr "最近の投稿"
+
+#: multi_blog_front.php:39
+#, fuzzy, php-format
+msgid "%1$s wrote %2$s in %3$s."
+msgstr "%1$s %2$s"
+
+#: multi_blog_front.php:46
+msgid "Updated Blogs"
+msgstr "最近更新されたブログ"
+
+#: multi_blog_front.php:67
+#, php-format
+msgid "Howdy %s"
+msgstr "ようこそ %s さん"
+
+#: multi_blog_front.php:73
+msgid "Your Blogs list"
+msgstr "あなたのブログリスト"
+
+#: multi_blog_front.php:84
+msgid "Create a new blog"
+msgstr "新しいブログの作成"
+
+#: page.php:20
+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:14
+msgid "Select Yearly"
+msgstr "年を選択"
+
+#: blocks/archives_block_theme.php:17
+#: blocks/archives_block_theme.php:29
+msgid "Select Monthly"
+msgstr "月を選択"
+
+#: blocks/archives_block_theme.php:20
+msgid "Select Weekly"
+msgstr "週を選択"
+
+#: blocks/archives_block_theme.php:23
+msgid "Select Daily"
+msgstr "日を選択"
+
+#: blocks/archives_block_theme.php:26
+msgid "Select Post"
+msgstr "記事を選択"
+
+#: blocks/authors_block_theme.php:32
+msgid "All Authors"
+msgstr "全ての投稿者"
+
+#: blocks/blog_list_block_theme.php:66
+#: blocks/global_popular_posts_block_theme.php:192
+#: blocks/global_recent_comments_block_theme.php:130
+#: blocks/global_recent_posts_list_block_theme.php:44
+msgid "This blog is not set to the multi blog."
+msgstr "このブログはマルチブログに設定されていません。"
+
+#: blocks/enhanced_block_theme.php:14
+msgid "The include file name to display it is not set."
+msgstr "表示を行うためのインクルードファイル名が設定されていません。"
+
+#: blocks/enhanced_block_theme.php:21
+#, php-format
+msgid "File %s not exist."
+msgstr "ファイル %s が見つかりません。"
+
+#: blocks/enhanced_block_theme.php:29
+msgid "Data is Empty"
+msgstr "データは空です"
+
+#: blocks/global_popular_posts_block_theme.php:114
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:84
+#: blocks/recent_posts_list_block_theme.php:70
+msgid "Tags:"
+msgstr "タグ:"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (0)"
+msgstr "コメントはありません"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (1)"
+msgstr "1件のコメント"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/global_recent_comments_block_theme.php:85
+#: blocks/recent_comments_block_theme.php:82
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s に %1$s より"
+
+#: blocks/meta_block_theme.php:25
+msgid "Posts RSS"
+msgstr "投稿の RSS"
+
+#: blocks/meta_block_theme.php:28
+msgid "Comments RSS"
+msgstr "コメント のRSS"
+
+#: blocks/meta_block_theme.php:41
+#: blocks/meta_block_theme.php:46
+msgid "Add New"
+msgstr "新規投稿"
+
+#: blocks/meta_block_theme.php:55
+msgid "Site Admin"
+msgstr "WordPress管理"
+
+#: blocks/meta_block_theme.php:61
+msgid "User Profile"
+msgstr "ユーザープロファイル"
+
+#: blocks/meta_block_theme.php:69
+#: blocks/meta_block_theme.php:74
+msgid "Subscription management"
+msgstr "メール購読の設定"
+
+#: blocks/meta_block_theme.php:82
+msgid "ReadMe"
+msgstr "ReadMe表示"
+
+#: blocks/meta_block_theme.php:87
+msgid "Themes"
+msgstr "テーマ選択"
+
+#~ msgid "PHP code error"
+#~ msgstr "PHPコードにエラーがあります。"
+
+#~ msgid "Customize Header"
+#~ msgstr "ヘッダーのカスタマイズ"
+
+#~ msgid "%d queries. %s seconds."
+#~ msgstr "%d 個のクエリと %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/my_themes/languages/ja_EUC.po
===================================================================
--- /trunk/extras/my_themes/languages/ja_EUC.po	(revision 821)
+++ /trunk/extras/my_themes/languages/ja_EUC.po	(revision 821)
@@ -0,0 +1,820 @@
+# Japanese (EUC-JP) translation for XPressME Default Themes
+# Copyright (c) 2005-2008 XPressME
+# This file is distributed under the same license as the XPressME package.
+# toemon <info@toemon.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-06-12 12:47+0900\n"
+"PO-Revision-Date: 2011-02-21 09:52+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-SourceCharset: euc-jp\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: D:\\XPressME_Project\\XPressME_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:91
+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:79
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: comments.php:85
+#: comments.php:87
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out of this account"
+msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out &raquo;"
+msgstr "¥í¥°¥¢¥¦¥È &raquo;"
+
+#: comments.php:91
+#: comments.php:94
+msgid "(required)"
+msgstr " (É¬¿Ü)"
+
+#: comments.php:94
+msgid "Mail (will not be published)"
+msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)"
+
+#: comments.php:97
+msgid "Website"
+msgstr "¥¦¥§¥Ö¥µ¥¤¥È"
+
+#: comments.php:102
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍÑ¤Ç¤­¤Þ¤¹: <code>%s</code>"
+
+#: comments.php:106
+msgid "Submit Comment"
+msgstr "¥³¥á¥ó¥ÈÁ÷¿®"
+
+#: footer.php:10
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s ¤È %2$s"
+
+#: footer.php:10
+msgid "Entries (RSS)"
+msgstr "Åê¹Æ (RSS)"
+
+#: footer.php:10
+msgid "Comments (RSS)"
+msgstr "¥³¥á¥ó¥È (RSS)"
+
+#: footer.php:12
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f ÉÃ"
+
+#: functions.php:25
+msgid "Primary Navigation"
+msgstr "¥á¥¤¥ó¥Ê¥Ó¥²¡¼¥¸¥ç¥ó"
+
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "¥Ø¥Ã¥À¡¼&¥Õ¥Ã¥¿¡¼"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊÄ¤¸¤ë"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "¥Ø¥Ã¥À¡¼ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "¥Õ¥Ã¥¿¡¼ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:420
+msgid "Header Image and Color"
+msgstr "¥Ø¥Ã¥À¡¼¤ÎÇØ·Ê¤ÈÊ¸»ú¤Î¿§"
+
+#: functions.php:433
+#: functions.php:440
+msgid "Save"
+msgstr "ÊÝÂ¸"
+
+#: functions.php:434
+msgid "Font Color:"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§:"
+
+#: functions.php:434
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:435
+msgid "Upper Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§:"
+
+#: functions.php:435
+#: functions.php:436
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:436
+msgid "Lower Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:"
+
+#: functions.php:438
+msgid "Toggle Text"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: functions.php:439
+msgid "Use Defaults"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:448
+msgid "Font Color"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§"
+
+#: functions.php:449
+msgid "Upper Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§"
+
+#: functions.php:450
+msgid "Lower Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§"
+
+#: functions.php:451
+msgid "Revert"
+msgstr "¼è¤ê¾Ã¤·"
+
+#: functions.php:452
+msgid "Advanced"
+msgstr "¾ÜºÙ"
+
+#: functions.php:459
+msgid "Update Header &raquo;"
+msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· &raquo;"
+
+#: functions.php:465
+msgid "Font Color (CSS):"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):"
+
+#: functions.php:466
+msgid "Upper Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:467
+msgid "Lower Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:468
+msgid "Select Default Colors"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:469
+msgid "Toggle Text Display"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "¥Õ¥Ã¥¿¡¼"
+
+#: functions.php:479
+msgid "Set number of the sidebar to display in the footer."
+msgstr "¥Õ¥Ã¥¿¡¼¤ËÉ½¼¨¤¹¤ë¥µ¥¤¥É¥Ð¡¼¤Î¿ô¤òÀßÄê"
+
+#: functions.php:485
+msgid "none"
+msgstr "¤Ê¤·"
+
+#: functions.php:494
+msgid "Update Footer &raquo;"
+msgstr "¥Õ¥Ã¥¿¡¼¤ò¹¹¿· &raquo;"
+
+#: functions.php:510
+msgid "First Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±"
+
+#: functions.php:511
+msgid "The first footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£±"
+
+#: functions.php:514
+msgid "Second Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²"
+
+#: functions.php:515
+msgid "The second footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£²"
+
+#: functions.php:518
+msgid "Third Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³"
+
+#: functions.php:519
+msgid "The third footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£³"
+
+#: functions.php:522
+msgid "Fourth Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´"
+
+#: functions.php:523
+msgid "The fourth footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£´"
+
+#: functions.php:526
+msgid "Fifth Footer Widget Area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ"
+
+#: functions.php:527
+msgid "The fifth footer widget area"
+msgstr "¥Õ¥Ã¥¿¡¼¥¦¥£¥¸¥§¥Ã¥È¥¨¥ê¥¢£µ"
+
+#: header.php:9
+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:56
+msgid "Main Page"
+msgstr "¥á¥¤¥ó¥Ú¡¼¥¸"
+
+#: header.php:59
+msgid "Blogs Home"
+msgstr "¥Ö¥í¥°¤Î¥Û¡¼¥à"
+
+#: header.php:60
+msgid "Post New"
+msgstr "¿·µ¬Åê¹Æ"
+
+#: image.php:13
+msgid "Read the rest of this entry &raquo;"
+msgstr "¤³¤ÎÅê¹Æ¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
+
+#: image.php:15
+#: page.php:22
+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:27
+msgid "Edit this entry."
+msgstr "¤³¤ÎÅê¹Æ¤òÊÔ½¸¤¹¤ë¡£"
+
+#: image.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: index.php:29
+#: index.php:31
+#: multi_blog_index.php:33
+#: multi_blog_index.php:35
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s ¤Î¥Ñ¡¼¥Þ¥ê¥ó¥¯"
+
+#: index.php:44
+#: multi_blog_index.php:48
+#, php-format
+msgid "Views :%d"
+msgstr "±ÜÍ÷ :%d"
+
+#: index.php:47
+#: multi_blog_index.php:51
+#, php-format
+msgid "Posted in %s"
+msgstr "¥«¥Æ¥´¥ê¡¼: %s"
+
+#: index.php:49
+#: multi_blog_index.php:53
+msgid "Edit"
+msgstr "ÊÔ½¸"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "No Comments &#187;"
+msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "1 Comment &#187;"
+msgstr "1 ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "% Comments &#187;"
+msgstr "% ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "Comments Closed"
+msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: index.php:68
+#: multi_blog_index.php:72
+msgid "Not Found"
+msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: index.php:69
+#: multi_blog_index.php:73
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "¤ªÃµ¤·¤ÎÊª¤Ï¤³¤³¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: links.php:18
+msgid "Links:"
+msgstr "¥ê¥ó¥¯:"
+
+#: multi_blog_front.php:9
+msgid "Site News"
+msgstr "¥µ¥¤¥È¥Ë¥å¡¼¥¹"
+
+#: multi_blog_front.php:18
+msgid "Blogs List"
+msgstr "¥Ö¥í¥°¥ê¥¹¥È"
+
+#: multi_blog_front.php:27
+msgid "post count"
+msgstr "Åê¹Æ¿ô"
+
+#: multi_blog_front.php:34
+msgid "New Entries"
+msgstr "ºÇ¶á¤ÎÅê¹Æ"
+
+#: multi_blog_front.php:39
+#, fuzzy, php-format
+msgid "%1$s wrote %2$s in %3$s."
+msgstr "%1$s %2$s"
+
+#: multi_blog_front.php:46
+msgid "Updated Blogs"
+msgstr "ºÇ¶á¹¹¿·¤µ¤ì¤¿¥Ö¥í¥°"
+
+#: multi_blog_front.php:67
+#, php-format
+msgid "Howdy %s"
+msgstr "¤è¤¦¤³¤½ %s ¤µ¤ó"
+
+#: multi_blog_front.php:73
+msgid "Your Blogs list"
+msgstr "¤¢¤Ê¤¿¤Î¥Ö¥í¥°¥ê¥¹¥È"
+
+#: multi_blog_front.php:84
+msgid "Create a new blog"
+msgstr "¿·¤·¤¤¥Ö¥í¥°¤ÎºîÀ®"
+
+#: page.php:20
+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:14
+msgid "Select Yearly"
+msgstr "Ç¯¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:17
+#: blocks/archives_block_theme.php:29
+msgid "Select Monthly"
+msgstr "·î¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:20
+msgid "Select Weekly"
+msgstr "½µ¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:23
+msgid "Select Daily"
+msgstr "Æü¤òÁªÂò"
+
+#: blocks/archives_block_theme.php:26
+msgid "Select Post"
+msgstr "µ­»ö¤òÁªÂò"
+
+#: blocks/authors_block_theme.php:32
+msgid "All Authors"
+msgstr "Á´¤Æ¤ÎÅê¹Æ¼Ô"
+
+#: blocks/blog_list_block_theme.php:66
+#: blocks/global_popular_posts_block_theme.php:192
+#: blocks/global_recent_comments_block_theme.php:130
+#: blocks/global_recent_posts_list_block_theme.php:44
+msgid "This blog is not set to the multi blog."
+msgstr "¤³¤Î¥Ö¥í¥°¤Ï¥Þ¥ë¥Á¥Ö¥í¥°¤ËÀßÄê¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: blocks/enhanced_block_theme.php:14
+msgid "The include file name to display it is not set."
+msgstr "É½¼¨¤ò¹Ô¤¦¤¿¤á¤Î¥¤¥ó¥¯¥ë¡¼¥É¥Õ¥¡¥¤¥ëÌ¾¤¬ÀßÄê¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: blocks/enhanced_block_theme.php:21
+#, php-format
+msgid "File %s not exist."
+msgstr "¥Õ¥¡¥¤¥ë %s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£"
+
+#: blocks/enhanced_block_theme.php:29
+msgid "PHP code error"
+msgstr "PHP¥³¡¼¥É¤Ë¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤¹¡£"
+
+#: blocks/global_popular_posts_block_theme.php:114
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:84
+#: blocks/recent_posts_list_block_theme.php:70
+msgid "Tags:"
+msgstr "¥¿¥°:"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (0)"
+msgstr "¥³¥á¥ó¥È¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (1)"
+msgstr "1·ï¤Î¥³¥á¥ó¥È"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/global_recent_comments_block_theme.php:85
+#: blocks/recent_comments_block_theme.php:82
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s ¤Ë %1$s ¤è¤ê"
+
+#: blocks/meta_block_theme.php:25
+msgid "Posts RSS"
+msgstr "Åê¹Æ¤Î RSS"
+
+#: blocks/meta_block_theme.php:28
+msgid "Comments RSS"
+msgstr "¥³¥á¥ó¥È ¤ÎRSS"
+
+#: blocks/meta_block_theme.php:41
+#: blocks/meta_block_theme.php:46
+msgid "Add New"
+msgstr "¿·µ¬Åê¹Æ"
+
+#: blocks/meta_block_theme.php:55
+msgid "Site Admin"
+msgstr "WordPress´ÉÍý"
+
+#: blocks/meta_block_theme.php:61
+msgid "User Profile"
+msgstr "¥æ¡¼¥¶¡¼¥×¥í¥Õ¥¡¥¤¥ë"
+
+#: blocks/meta_block_theme.php:69
+#: blocks/meta_block_theme.php:74
+msgid "Subscription management"
+msgstr "¥á¡¼¥ë¹ØÆÉ¤ÎÀßÄê"
+
+#: blocks/meta_block_theme.php:82
+msgid "ReadMe"
+msgstr "ReadMeÉ½¼¨"
+
+#: blocks/meta_block_theme.php:87
+msgid "Themes"
+msgstr "¥Æ¡¼¥ÞÁªÂò"
+
+#~ msgid "Customize Header"
+#~ msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º"
+
+#~ msgid "%d queries. %s seconds."
+#~ msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %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/my_themes/languages/ja_UTF.po
===================================================================
--- /trunk/extras/my_themes/languages/ja_UTF.po	(revision 821)
+++ /trunk/extras/my_themes/languages/ja_UTF.po	(revision 821)
@@ -0,0 +1,823 @@
+# Japanese (UTF-8) translation for XPressME Default Themes
+# Copyright (c) 2005-2008 XPressME
+# This file is distributed under the same license as the XPressME package.
+# toemon <info@toemon.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-21 09:50+0900\n"
+"PO-Revision-Date: 2011-02-21 09:51+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-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: D:\\XPressME_Project\\XPressME_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:91
+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:79
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:85
+#: comments.php:87
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:91
+#: comments.php:94
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:94
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:97
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:102
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:106
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: footer.php:10
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:10
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:10
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:12
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f 秒"
+
+#: functions.php:25
+msgid "Primary Navigation"
+msgstr "メインナビゲージョン"
+
+#: functions.php:196
+msgid "Header & Footer"
+msgstr "ヘッダー&フッター"
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr "ヘッダー設定を保存しました。"
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr "フッター設定を保存しました。"
+
+#: functions.php:420
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:433
+#: functions.php:440
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:434
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:434
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:435
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:435
+#: functions.php:436
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:436
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:438
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:439
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:448
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:449
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:450
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:451
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:452
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:459
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:465
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:466
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:467
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:468
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:469
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:475
+msgid "Footer"
+msgstr "フッター"
+
+#: functions.php:481
+msgid "Set number of the sidebar to display in the footer."
+msgstr "フッターに表示するサイドバーの数を設定"
+
+#: functions.php:486
+msgid "none"
+msgstr "なし"
+
+#: functions.php:496
+msgid "Update Footer &raquo;"
+msgstr "フッターを更新 &raquo;"
+
+#: functions.php:512
+msgid "First Footer Widget Area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:513
+msgid "The first footer widget area"
+msgstr "フッターウィジェットエリア１"
+
+#: functions.php:516
+msgid "Second Footer Widget Area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:517
+msgid "The second footer widget area"
+msgstr "フッターウィジェットエリア２"
+
+#: functions.php:520
+msgid "Third Footer Widget Area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:521
+msgid "The third footer widget area"
+msgstr "フッターウィジェットエリア３"
+
+#: functions.php:524
+msgid "Fourth Footer Widget Area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:525
+msgid "The fourth footer widget area"
+msgstr "フッターウィジェットエリア４"
+
+#: functions.php:528
+msgid "Fifth Footer Widget Area"
+msgstr "フッターウィジェットエリア５"
+
+#: functions.php:529
+msgid "The fifth footer widget area"
+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:58
+msgid "Main Page"
+msgstr "メインページ"
+
+#: header.php:61
+msgid "Blogs Home"
+msgstr "ブログのホーム"
+
+#: header.php:62
+msgid "Post New"
+msgstr "新規投稿"
+
+#: image.php:13
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:22
+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:27
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: image.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:29
+#: index.php:31
+#: multi_blog_index.php:33
+#: multi_blog_index.php:35
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: index.php:44
+#: multi_blog_index.php:48
+#, php-format
+msgid "Views :%d"
+msgstr "閲覧 :%d"
+
+#: index.php:47
+#: multi_blog_index.php:51
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:49
+#: multi_blog_index.php:53
+msgid "Edit"
+msgstr "編集"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: index.php:68
+#: multi_blog_index.php:72
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: index.php:69
+#: multi_blog_index.php:73
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:18
+msgid "Links:"
+msgstr "リンク:"
+
+#: multi_blog_front.php:9
+msgid "Site News"
+msgstr "サイトニュース"
+
+#: multi_blog_front.php:18
+msgid "Blogs List"
+msgstr "ブログリスト"
+
+#: multi_blog_front.php:27
+msgid "post count"
+msgstr "投稿数"
+
+#: multi_blog_front.php:34
+msgid "New Entries"
+msgstr "最近の投稿"
+
+#: multi_blog_front.php:39
+#, fuzzy, php-format
+msgid "%1$s wrote %2$s in %3$s."
+msgstr "%1$s %2$s"
+
+#: multi_blog_front.php:46
+msgid "Updated Blogs"
+msgstr "最近更新されたブログ"
+
+#: multi_blog_front.php:67
+#, php-format
+msgid "Howdy %s"
+msgstr "ようこそ %s さん"
+
+#: multi_blog_front.php:73
+msgid "Your Blogs list"
+msgstr "あなたのブログリスト"
+
+#: multi_blog_front.php:84
+msgid "Create a new blog"
+msgstr "新しいブログの作成"
+
+#: page.php:20
+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:14
+msgid "Select Yearly"
+msgstr "年を選択"
+
+#: blocks/archives_block_theme.php:17
+#: blocks/archives_block_theme.php:29
+msgid "Select Monthly"
+msgstr "月を選択"
+
+#: blocks/archives_block_theme.php:20
+msgid "Select Weekly"
+msgstr "週を選択"
+
+#: blocks/archives_block_theme.php:23
+msgid "Select Daily"
+msgstr "日を選択"
+
+#: blocks/archives_block_theme.php:26
+msgid "Select Post"
+msgstr "記事を選択"
+
+#: blocks/authors_block_theme.php:32
+msgid "All Authors"
+msgstr "全ての投稿者"
+
+#: blocks/blog_list_block_theme.php:66
+#: blocks/global_popular_posts_block_theme.php:192
+#: blocks/global_recent_comments_block_theme.php:130
+#: blocks/global_recent_posts_list_block_theme.php:44
+msgid "This blog is not set to the multi blog."
+msgstr "このブログはマルチブログに設定されていません。"
+
+#: blocks/enhanced_block_theme.php:14
+msgid "The include file name to display it is not set."
+msgstr "表示を行うためのインクルードファイル名が設定されていません。"
+
+#: blocks/enhanced_block_theme.php:21
+#, php-format
+msgid "File %s not exist."
+msgstr "ファイル %s が見つかりません。"
+
+#: blocks/enhanced_block_theme.php:29
+msgid "Data is Empty"
+msgstr "データは空です"
+
+#: blocks/global_popular_posts_block_theme.php:114
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:84
+#: blocks/recent_posts_list_block_theme.php:70
+msgid "Tags:"
+msgstr "タグ:"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (0)"
+msgstr "コメントはありません"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (1)"
+msgstr "1件のコメント"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (%)"
+msgstr "Comments (%)"
+
+#: blocks/global_recent_comments_block_theme.php:85
+#: blocks/recent_comments_block_theme.php:82
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s に %1$s より"
+
+#: blocks/meta_block_theme.php:25
+msgid "Posts RSS"
+msgstr "投稿の RSS"
+
+#: blocks/meta_block_theme.php:28
+msgid "Comments RSS"
+msgstr "コメント のRSS"
+
+#: blocks/meta_block_theme.php:41
+#: blocks/meta_block_theme.php:46
+msgid "Add New"
+msgstr "新規投稿"
+
+#: blocks/meta_block_theme.php:55
+msgid "Site Admin"
+msgstr "WordPress管理"
+
+#: blocks/meta_block_theme.php:61
+msgid "User Profile"
+msgstr "ユーザープロファイル"
+
+#: blocks/meta_block_theme.php:69
+#: blocks/meta_block_theme.php:74
+msgid "Subscription management"
+msgstr "メール購読の設定"
+
+#: blocks/meta_block_theme.php:82
+msgid "ReadMe"
+msgstr "ReadMe表示"
+
+#: blocks/meta_block_theme.php:87
+msgid "Themes"
+msgstr "テーマ選択"
+
+#~ msgid "PHP code error"
+#~ msgstr "PHPコードにエラーがあります。"
+
+#~ msgid "Customize Header"
+#~ msgstr "ヘッダーのカスタマイズ"
+
+#~ msgid "%d queries. %s seconds."
+#~ msgstr "%d 個のクエリと %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/my_themes/languages/lang.pot
===================================================================
--- /trunk/extras/my_themes/languages/lang.pot	(revision 821)
+++ /trunk/extras/my_themes/languages/lang.pot	(revision 821)
@@ -0,0 +1,817 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR XPressME
+# This file is distributed under the same license as the XPressME package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-21 09:49+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: 404.php:22
+msgid "Error 404 - Not Found"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: comments-popup.php:64
+#: comments.php:91
+msgid "Name"
+msgstr ""
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr ""
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: comments.php:17
+#: comments.php:38
+msgid "% Responses"
+msgstr ""
+
+#: comments.php:17
+#: comments.php:38
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr ""
+
+#: comments.php:33
+#: comments.php:63
+msgid "Comments are closed."
+msgstr ""
+
+#: comments.php:43
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr ""
+
+#: comments.php:45
+msgid "Your comment is awaiting moderation."
+msgstr ""
+
+#: comments.php:48
+#, php-format
+msgid "%1$s at %2$s"
+msgstr ""
+
+#: 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 ""
+
+#: comments.php:79
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr ""
+
+#: comments.php:85
+#: comments.php:87
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr ""
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out of this account"
+msgstr ""
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out &raquo;"
+msgstr ""
+
+#: comments.php:91
+#: comments.php:94
+msgid "(required)"
+msgstr ""
+
+#: comments.php:94
+msgid "Mail (will not be published)"
+msgstr ""
+
+#: comments.php:97
+msgid "Website"
+msgstr ""
+
+#: comments.php:102
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr ""
+
+#: comments.php:106
+msgid "Submit Comment"
+msgstr ""
+
+#: footer.php:10
+#, php-format
+msgid "%1$s and %2$s."
+msgstr ""
+
+#: footer.php:10
+msgid "Entries (RSS)"
+msgstr ""
+
+#: footer.php:10
+msgid "Comments (RSS)"
+msgstr ""
+
+#: footer.php:12
+#, php-format
+msgid "%.3f sec."
+msgstr ""
+
+#: functions.php:25
+msgid "Primary Navigation"
+msgstr ""
+
+#: functions.php:196
+msgid "Header & Footer"
+msgstr ""
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr ""
+
+#: functions.php:415
+msgid "Header Options saved."
+msgstr ""
+
+#: functions.php:416
+msgid "Footer Options saved."
+msgstr ""
+
+#: functions.php:420
+msgid "Header Image and Color"
+msgstr ""
+
+#: functions.php:433
+#: functions.php:440
+msgid "Save"
+msgstr ""
+
+#: functions.php:434
+msgid "Font Color:"
+msgstr ""
+
+#: functions.php:434
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr ""
+
+#: functions.php:435
+msgid "Upper Color:"
+msgstr ""
+
+#: functions.php:435
+#: functions.php:436
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr ""
+
+#: functions.php:436
+msgid "Lower Color:"
+msgstr ""
+
+#: functions.php:438
+msgid "Toggle Text"
+msgstr ""
+
+#: functions.php:439
+msgid "Use Defaults"
+msgstr ""
+
+#: functions.php:448
+msgid "Font Color"
+msgstr ""
+
+#: functions.php:449
+msgid "Upper Color"
+msgstr ""
+
+#: functions.php:450
+msgid "Lower Color"
+msgstr ""
+
+#: functions.php:451
+msgid "Revert"
+msgstr ""
+
+#: functions.php:452
+msgid "Advanced"
+msgstr ""
+
+#: functions.php:459
+msgid "Update Header &raquo;"
+msgstr ""
+
+#: functions.php:465
+msgid "Font Color (CSS):"
+msgstr ""
+
+#: functions.php:466
+msgid "Upper Color (HEX):"
+msgstr ""
+
+#: functions.php:467
+msgid "Lower Color (HEX):"
+msgstr ""
+
+#: functions.php:468
+msgid "Select Default Colors"
+msgstr ""
+
+#: functions.php:469
+msgid "Toggle Text Display"
+msgstr ""
+
+#: functions.php:475
+msgid "Footer"
+msgstr ""
+
+#: functions.php:481
+msgid "Set number of the sidebar to display in the footer."
+msgstr ""
+
+#: functions.php:486
+msgid "none"
+msgstr ""
+
+#: functions.php:496
+msgid "Update Footer &raquo;"
+msgstr ""
+
+#: functions.php:512
+msgid "First Footer Widget Area"
+msgstr ""
+
+#: functions.php:513
+msgid "The first footer widget area"
+msgstr ""
+
+#: functions.php:516
+msgid "Second Footer Widget Area"
+msgstr ""
+
+#: functions.php:517
+msgid "The second footer widget area"
+msgstr ""
+
+#: functions.php:520
+msgid "Third Footer Widget Area"
+msgstr ""
+
+#: functions.php:521
+msgid "The third footer widget area"
+msgstr ""
+
+#: functions.php:524
+msgid "Fourth Footer Widget Area"
+msgstr ""
+
+#: functions.php:525
+msgid "The fourth footer widget area"
+msgstr ""
+
+#: functions.php:528
+msgid "Fifth Footer Widget Area"
+msgstr ""
+
+#: functions.php:529
+msgid "The fifth footer widget area"
+msgstr ""
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr ""
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr ""
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr ""
+
+#: header.php:58
+msgid "Main Page"
+msgstr ""
+
+#: header.php:61
+msgid "Blogs Home"
+msgstr ""
+
+#: header.php:62
+msgid "Post New"
+msgstr ""
+
+#: image.php:13
+msgid "Read the rest of this entry &raquo;"
+msgstr ""
+
+#: image.php:15
+#: page.php:22
+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 ""
+
+#: image.php:25
+#: sidebar.php:24
+msgid "l, F jS, Y"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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:27
+msgid "Edit this entry."
+msgstr ""
+
+#: image.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr ""
+
+#: index.php:29
+#: index.php:31
+#: multi_blog_index.php:33
+#: multi_blog_index.php:35
+#, php-format
+msgid "Permanent Link to %s"
+msgstr ""
+
+#: index.php:44
+#: multi_blog_index.php:48
+#, php-format
+msgid "Views :%d"
+msgstr ""
+
+#: index.php:47
+#: multi_blog_index.php:51
+#, php-format
+msgid "Posted in %s"
+msgstr ""
+
+#: index.php:49
+#: multi_blog_index.php:53
+msgid "Edit"
+msgstr ""
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "No Comments &#187;"
+msgstr ""
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "1 Comment &#187;"
+msgstr ""
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "% Comments &#187;"
+msgstr ""
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "Comments Closed"
+msgstr ""
+
+#: index.php:68
+#: multi_blog_index.php:72
+msgid "Not Found"
+msgstr ""
+
+#: index.php:69
+#: multi_blog_index.php:73
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr ""
+
+#: links.php:18
+msgid "Links:"
+msgstr ""
+
+#: multi_blog_front.php:9
+msgid "Site News"
+msgstr ""
+
+#: multi_blog_front.php:18
+msgid "Blogs List"
+msgstr ""
+
+#: multi_blog_front.php:27
+msgid "post count"
+msgstr ""
+
+#: multi_blog_front.php:34
+msgid "New Entries"
+msgstr ""
+
+#: multi_blog_front.php:39
+#, fuzzy, php-format
+msgid "%1$s wrote %2$s in %3$s."
+msgstr ""
+
+#: multi_blog_front.php:46
+msgid "Updated Blogs"
+msgstr ""
+
+#: multi_blog_front.php:67
+#, php-format
+msgid "Howdy %s"
+msgstr ""
+
+#: multi_blog_front.php:73
+msgid "Your Blogs list"
+msgstr ""
+
+#: multi_blog_front.php:84
+msgid "Create a new blog"
+msgstr ""
+
+#: page.php:20
+msgid "Read the rest of this page &raquo;"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: sidebar.php:27
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
+msgstr ""
+
+#: sidebar.php:27
+msgid "F, Y"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr ""
+
+#: 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 ""
+
+#: sidebar.php:66
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr ""
+
+#: sidebar.php:67
+msgid "XHTML Friends Network"
+msgstr ""
+
+#: sidebar.php:67
+msgid "XFN"
+msgstr ""
+
+#: sidebar.php:68
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr ""
+
+#: single.php:53
+msgid "No Trackback/Pingback"
+msgstr ""
+
+#: single.php:53
+msgid "One Trackback/Pingback"
+msgstr ""
+
+#: 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 ""
+
+#: single.php:59
+msgid "Pinging is currently not allowed."
+msgstr ""
+
+#: blocks/archives_block_theme.php:14
+msgid "Select Yearly"
+msgstr ""
+
+#: blocks/archives_block_theme.php:17
+#: blocks/archives_block_theme.php:29
+msgid "Select Monthly"
+msgstr ""
+
+#: blocks/archives_block_theme.php:20
+msgid "Select Weekly"
+msgstr ""
+
+#: blocks/archives_block_theme.php:23
+msgid "Select Daily"
+msgstr ""
+
+#: blocks/archives_block_theme.php:26
+msgid "Select Post"
+msgstr ""
+
+#: blocks/authors_block_theme.php:32
+msgid "All Authors"
+msgstr ""
+
+#: blocks/blog_list_block_theme.php:66
+#: blocks/global_popular_posts_block_theme.php:192
+#: blocks/global_recent_comments_block_theme.php:130
+#: blocks/global_recent_posts_list_block_theme.php:44
+msgid "This blog is not set to the multi blog."
+msgstr ""
+
+#: blocks/enhanced_block_theme.php:14
+msgid "The include file name to display it is not set."
+msgstr ""
+
+#: blocks/enhanced_block_theme.php:21
+#, php-format
+msgid "File %s not exist."
+msgstr ""
+
+#: blocks/enhanced_block_theme.php:29
+msgid "Data is Empty"
+msgstr ""
+
+#: blocks/global_popular_posts_block_theme.php:114
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:84
+#: blocks/recent_posts_list_block_theme.php:70
+msgid "Tags:"
+msgstr ""
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (0)"
+msgstr ""
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (1)"
+msgstr ""
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (%)"
+msgstr ""
+
+#: blocks/global_recent_comments_block_theme.php:85
+#: blocks/recent_comments_block_theme.php:82
+#, php-format
+msgid "%1$s on %2$s"
+msgstr ""
+
+#: blocks/meta_block_theme.php:25
+msgid "Posts RSS"
+msgstr ""
+
+#: blocks/meta_block_theme.php:28
+msgid "Comments RSS"
+msgstr ""
+
+#: blocks/meta_block_theme.php:41
+#: blocks/meta_block_theme.php:46
+msgid "Add New"
+msgstr ""
+
+#: blocks/meta_block_theme.php:55
+msgid "Site Admin"
+msgstr ""
+
+#: blocks/meta_block_theme.php:61
+msgid "User Profile"
+msgstr ""
+
+#: blocks/meta_block_theme.php:69
+#: blocks/meta_block_theme.php:74
+msgid "Subscription management"
+msgstr ""
+
+#: blocks/meta_block_theme.php:82
+msgid "ReadMe"
+msgstr ""
+
+#: blocks/meta_block_theme.php:87
+msgid "Themes"
+msgstr ""
+
+#~ msgid "PHP code error"
+#~ msgstr ""
+
+#~ msgid "Customize Header"
+#~ msgstr ""
+
+#~ msgid "%d queries. %s seconds."
+#~ msgstr ""
+
+#~ msgid "views: %d"
+#~ msgstr ""
+
+#~ msgid "more"
+#~ msgstr ""
+
+#, fuzzy
+#~ msgid "F jS, Y"
+#~ msgstr ""
+
+#~ msgid "Calendar"
+#~ msgstr ""
+
+#~ msgid "%1$s %2$s|Used as a calendar caption"
+#~ msgstr ""
+
+#~ msgid "View posts for %1$s %2$s"
+#~ msgstr ""
Index: /trunk/extras/my_themes/languages/pt_BR.po
===================================================================
--- /trunk/extras/my_themes/languages/pt_BR.po	(revision 821)
+++ /trunk/extras/my_themes/languages/pt_BR.po	(revision 821)
@@ -0,0 +1,827 @@
+# Brazilian Portuguese (UTF-8) translation for XPressME Plugin [http://yuji.ws]
+# Copyright (c) 2005-2008 XPressME
+# This file is distributed under the same license as the XPressME package.
+# toemon <info@toemon.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPress_Default_themes\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-21 09:49+0900\n"
+"PO-Revision-Date: 2011-02-21 10:05+0900\n"
+"Last-Translator: toemon <info@toemon.com>\n"
+"Language-Team: Marcelo Yuji Himoro <yuji@yuji.ws>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Portguese\n"
+"X-Poedit-Country: BRAZIL\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: 404.php:22
+msgid "Error 404 - Not Found"
+msgstr "Erro 404 - Página não encontrada"
+
+#: archives.php:20
+msgid "Archives by Month:"
+msgstr "Arquivo por mês:"
+
+#: archives.php:25
+msgid "Archives by Subject:"
+msgstr "Arquivo por assunto:"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - Comentários em %2$s"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "Comentários"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "Feed <abbr title=\"Really Simple Syndication\">RSS</abbr> dos comentários deste post."
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "A <abbr title=\"Universal Resource Locator\">URL</abbr> de trackback para este post é: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "Comentário"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "Trackback"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "Pingback"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "por %1$s &#8212; %2$s às <a href=\"#comment-%3$s\">%4$s</a>"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "Nenhum comentário ainda."
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "Comente"
+
+#: 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 "Quebras de linha e de parágrafos são automáticas, endereços de email nunca são exibidos, <acronym title=\"Hypertext Markup Language\">HTML</acronym> permitido: <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 "Login feito como <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Fazer logout desta conta\">Logout &raquo;</a>"
+
+#: comments-popup.php:64
+#: comments.php:91
+msgid "Name"
+msgstr "Nome"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "E-mail"
+
+#: 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 "Comentário"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "Enviar"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "O formulário de comentários está fechado no momento."
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "Fechar janela."
+
+#: 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=\"Mantido com o WordPress, plataforma semântica de vanguarda para publicação pessoal\"><strong>WordPress</strong></a>"
+
+#: comments.php:6
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "Este post é protegido por senha. Digite a senha para ver os comentários."
+
+#: comments.php:17
+#: comments.php:38
+msgid "No Responses"
+msgstr "Nenhum comentário"
+
+#: comments.php:17
+#: comments.php:38
+msgid "One Response"
+msgstr "Um comentário"
+
+#: comments.php:17
+#: comments.php:38
+msgid "% Responses"
+msgstr "% comentários"
+
+#: comments.php:17
+#: comments.php:38
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "para &#8220;%s&#8221;"
+
+#: comments.php:33
+#: comments.php:63
+msgid "Comments are closed."
+msgstr "Os comentários estão fechados."
+
+#: comments.php:43
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> disse:"
+
+#: comments.php:45
+msgid "Your comment is awaiting moderation."
+msgstr "Seu comentário está aguardando moderação."
+
+#: comments.php:48
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s em %2$s"
+
+#: comments.php:48
+msgid "Comment Edit"
+msgstr "Editar comentário"
+
+#: comments.php:70
+msgid "Leave a Reply"
+msgstr "Comente"
+
+#: comments.php:70
+#, php-format
+msgid "Leave a Reply for %s"
+msgstr "Comentar %s"
+
+#: comments.php:79
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "Você precisa fazer <a href=\"%s\">login</a> para comentar."
+
+#: comments.php:85
+#: comments.php:87
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "Login como <a href=\"%1$s\">%2$s</a>."
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out of this account"
+msgstr "Logout desta conta"
+
+#: comments.php:85
+#: comments.php:87
+msgid "Log out &raquo;"
+msgstr "Logout &raquo;"
+
+#: comments.php:91
+#: comments.php:94
+msgid "(required)"
+msgstr "(obrigatório)"
+
+#: comments.php:94
+msgid "Mail (will not be published)"
+msgstr "E-mail (não será publicado)"
+
+#: comments.php:97
+msgid "Website"
+msgstr "Site"
+
+#: comments.php:102
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> Você pode usar estas tags: <code>%s</code>"
+
+#: comments.php:106
+msgid "Submit Comment"
+msgstr "Enviar comentário"
+
+#: footer.php:10
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s e %2$s"
+
+#: footer.php:10
+msgid "Entries (RSS)"
+msgstr "Posts (RSS)"
+
+#: footer.php:10
+msgid "Comments (RSS)"
+msgstr "Comentários (RSS)"
+
+#: footer.php:12
+#, php-format
+msgid "%.3f sec."
+msgstr "%.3f seg."
+
+#: functions.php:25
+msgid "Primary Navigation"
+msgstr ""
+
+#: functions.php:196
+msgid "Header & Footer"
+msgstr ""
+
+#: functions.php:210
+msgid "Close Color Picker"
+msgstr "Fechar seletor de cores"
+
+#: functions.php:415
+#, fuzzy
+msgid "Header Options saved."
+msgstr "Opções salvas."
+
+#: functions.php:416
+#, fuzzy
+msgid "Footer Options saved."
+msgstr "Opções salvas."
+
+#: functions.php:420
+msgid "Header Image and Color"
+msgstr "Imagem do cabeçalho e cor"
+
+#: functions.php:433
+#: functions.php:440
+msgid "Save"
+msgstr "Salvar"
+
+#: functions.php:434
+msgid "Font Color:"
+msgstr "Cor da fonte:"
+
+#: functions.php:434
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "Qualquer cor do CSS (%s, %s ou %s)"
+
+#: functions.php:435
+msgid "Upper Color:"
+msgstr "Cor superior:"
+
+#: functions.php:435
+#: functions.php:436
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "Em hexadecimal (%s ou %s)"
+
+#: functions.php:436
+msgid "Lower Color:"
+msgstr "Cor inferior:"
+
+#: functions.php:438
+msgid "Toggle Text"
+msgstr "Alternar texto"
+
+#: functions.php:439
+msgid "Use Defaults"
+msgstr "Utilizar padrão"
+
+#: functions.php:448
+msgid "Font Color"
+msgstr "Cor da fonte"
+
+#: functions.php:449
+msgid "Upper Color"
+msgstr "Cor superior"
+
+#: functions.php:450
+msgid "Lower Color"
+msgstr "Cor inferior"
+
+#: functions.php:451
+msgid "Revert"
+msgstr "Reverter"
+
+#: functions.php:452
+msgid "Advanced"
+msgstr "Avançada"
+
+#: functions.php:459
+msgid "Update Header &raquo;"
+msgstr "Atualizar cabeçalho &raquo;"
+
+#: functions.php:465
+msgid "Font Color (CSS):"
+msgstr "Cor da fonte (CSS):"
+
+#: functions.php:466
+msgid "Upper Color (HEX):"
+msgstr "Cor superior (HEXADECIMAL):"
+
+#: functions.php:467
+msgid "Lower Color (HEX):"
+msgstr "Cor inferior (HEXADECIMAL):"
+
+#: functions.php:468
+msgid "Select Default Colors"
+msgstr "Selecionar cores padrões"
+
+#: functions.php:469
+msgid "Toggle Text Display"
+msgstr "Alternar exibição de texto"
+
+#: functions.php:475
+msgid "Footer"
+msgstr ""
+
+#: functions.php:481
+msgid "Set number of the sidebar to display in the footer."
+msgstr ""
+
+#: functions.php:486
+msgid "none"
+msgstr ""
+
+#: functions.php:496
+#, fuzzy
+msgid "Update Footer &raquo;"
+msgstr "Atualizar cabeçalho &raquo;"
+
+#: functions.php:512
+msgid "First Footer Widget Area"
+msgstr ""
+
+#: functions.php:513
+msgid "The first footer widget area"
+msgstr ""
+
+#: functions.php:516
+msgid "Second Footer Widget Area"
+msgstr ""
+
+#: functions.php:517
+msgid "The second footer widget area"
+msgstr ""
+
+#: functions.php:520
+msgid "Third Footer Widget Area"
+msgstr ""
+
+#: functions.php:521
+msgid "The third footer widget area"
+msgstr ""
+
+#: functions.php:524
+msgid "Fourth Footer Widget Area"
+msgstr ""
+
+#: functions.php:525
+msgid "The fourth footer widget area"
+msgstr ""
+
+#: functions.php:528
+msgid "Fifth Footer Widget Area"
+msgstr ""
+
+#: functions.php:529
+msgid "The fifth footer widget area"
+msgstr ""
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; Arquivo do blog"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s Feed RSS"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Feed Atom"
+
+#: header.php:58
+msgid "Main Page"
+msgstr "Página principal"
+
+#: header.php:61
+msgid "Blogs Home"
+msgstr "Página principal do blog"
+
+#: header.php:62
+msgid "Post New"
+msgstr "Novo post"
+
+#: image.php:13
+msgid "Read the rest of this entry &raquo;"
+msgstr "Continue lendo este post &raquo;"
+
+#: image.php:15
+#: page.php:22
+msgid "Pages:"
+msgstr "Páginas:"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "Este post foi publicado %1$s em %2$s, e arquivado em %3$s."
+
+#: image.php:25
+#: sidebar.php:24
+msgid "l, F jS, Y"
+msgstr "l, j \\d\\e F \\d\\e Y"
+
+#: image.php:27
+#, php-format
+msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
+msgstr "Você pode acompanhar os comentários deste post através do feed <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 "Você pode <a href=\"#respond\">comentar</a> ou mandar um <a href=\"%s\" rel=\"Trackback\">trackback</a> do seu site para cá."
+
+#: 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 "No momento os comentários estão fechados, mas você pode mandar um <a href=\"%s\" rel=\"trackback\">trackback</a> do seu site."
+
+#: image.php:39
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "Você pode pular direto para o fim e deixar um comentário. Pings estão desativados no momento."
+
+#: image.php:43
+msgid "Both comments and pings are currently closed."
+msgstr "Comentários e pings estão fechados no momento."
+
+#: image.php:45
+#: page.php:27
+msgid "Edit this entry."
+msgstr "Editar este post"
+
+#: image.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "Nenhum post corresponde aos seus critérios de busca."
+
+#: index.php:29
+#: index.php:31
+#: multi_blog_index.php:33
+#: multi_blog_index.php:35
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "Link permanente para %s"
+
+#: index.php:44
+#: multi_blog_index.php:48
+#, php-format
+msgid "Views :%d"
+msgstr "Leituras: %d"
+
+#: index.php:47
+#: multi_blog_index.php:51
+#, php-format
+msgid "Posted in %s"
+msgstr "Postado em %s"
+
+#: index.php:49
+#: multi_blog_index.php:53
+msgid "Edit"
+msgstr "Editar"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "No Comments &#187;"
+msgstr "Nenhum comentário &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "1 Comment &#187;"
+msgstr "1 comentário &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "% Comments &#187;"
+msgstr "% comentários &#187;"
+
+#: index.php:50
+#: multi_blog_index.php:54
+msgid "Comments Closed"
+msgstr "Comentários fechados."
+
+#: index.php:68
+#: multi_blog_index.php:72
+msgid "Not Found"
+msgstr "Não encontrado"
+
+#: index.php:69
+#: multi_blog_index.php:73
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "O que você está procurando não está aqui."
+
+#: links.php:18
+msgid "Links:"
+msgstr "Links:"
+
+#: multi_blog_front.php:9
+msgid "Site News"
+msgstr ""
+
+#: multi_blog_front.php:18
+#, fuzzy
+msgid "Blogs List"
+msgstr "Página principal do blog"
+
+#: multi_blog_front.php:27
+#, fuzzy
+msgid "post count"
+msgstr "Não encontrado"
+
+#: multi_blog_front.php:34
+msgid "New Entries"
+msgstr ""
+
+#: multi_blog_front.php:39
+#, fuzzy, php-format
+msgid "%1$s wrote %2$s in %3$s."
+msgstr "%1$s em %2$s"
+
+#: multi_blog_front.php:46
+msgid "Updated Blogs"
+msgstr ""
+
+#: multi_blog_front.php:67
+#, php-format
+msgid "Howdy %s"
+msgstr ""
+
+#: multi_blog_front.php:73
+msgid "Your Blogs list"
+msgstr ""
+
+#: multi_blog_front.php:84
+msgid "Create a new blog"
+msgstr ""
+
+#: page.php:20
+msgid "Read the rest of this page &raquo;"
+msgstr "Continuar lendo &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "Pesquisa"
+
+#: searchform.php:8
+msgid "Search"
+msgstr "Pesquisa"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "Autor"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr "No momento você está visualizando o arquivo da categoria %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 "No momento você está visualizando o arquivo de <a href=\"%1$s/\">%2$s</a> do dia %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 "No momento você está visualizando os arquivos de <a href=\"%1$s/\">%2$s</a> para %3$s."
+
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "F \\d\\e Y"
+
+#: 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 "No momento você está vendo o arquivo de <a href=\"%1$s/\">%2$s</a> do ano %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 "Você pesquisou por <strong>&lsquo;%3$s&rsquo;</strong> nos arquivos de <a href=\"%1$s/\">%2$s</a>. Se não conseguir encontrar nada nos resultados dessa pesquisa, você pode tentar um destes links."
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "No momento você está visualizando os arquivos de <a href=\"%1$s/\">%2$s</a>."
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "Páginas"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "Arquivo"
+
+#: sidebar.php:51
+#: sidebar.php:53
+msgid "Categories"
+msgstr "Categorias"
+
+#: sidebar.php:62
+msgid "Meta"
+msgstr "Meta"
+
+#: sidebar.php:66
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "Esta página foi validada para XHTML 1.0 Transitional"
+
+#: sidebar.php:66
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "<abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr> válido"
+
+#: sidebar.php:67
+msgid "XHTML Friends Network"
+msgstr "Rede de amigos XHTML"
+
+#: 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, uma plataforma semântica de vanguarda para publicação pessoal."
+
+#: single.php:53
+msgid "No Trackback/Pingback"
+msgstr "Nenhum trackback/pingback."
+
+#: single.php:53
+msgid "One Trackback/Pingback"
+msgstr "Um trackback/pingback"
+
+#: single.php:53
+msgid "% TrackBack/Pingback"
+msgstr "% trackbacks/pingbacks"
+
+#: single.php:57
+#, php-format
+msgid "You can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "Você pode mandar um <a href=\"%s\" rel=\"trackback\">trackback</a> do seu site para cá."
+
+#: single.php:59
+msgid "Pinging is currently not allowed."
+msgstr "No momento os pings estão desativados."
+
+#: blocks/archives_block_theme.php:14
+msgid "Select Yearly"
+msgstr "Selecionar ano"
+
+#: blocks/archives_block_theme.php:17
+#: blocks/archives_block_theme.php:29
+msgid "Select Monthly"
+msgstr "Selecionar mês"
+
+#: blocks/archives_block_theme.php:20
+msgid "Select Weekly"
+msgstr "Selecionar semana"
+
+#: blocks/archives_block_theme.php:23
+msgid "Select Daily"
+msgstr "Selecionar dia"
+
+#: blocks/archives_block_theme.php:26
+msgid "Select Post"
+msgstr "Selecionar post"
+
+#: blocks/authors_block_theme.php:32
+msgid "All Authors"
+msgstr "Todos os autores"
+
+#: blocks/blog_list_block_theme.php:66
+#: blocks/global_popular_posts_block_theme.php:192
+#: blocks/global_recent_comments_block_theme.php:130
+#: blocks/global_recent_posts_list_block_theme.php:44
+msgid "This blog is not set to the multi blog."
+msgstr ""
+
+#: blocks/enhanced_block_theme.php:14
+msgid "The include file name to display it is not set."
+msgstr "Nenhum arquivo a ser exibido selecionado."
+
+#: blocks/enhanced_block_theme.php:21
+#, php-format
+msgid "File %s not exist."
+msgstr "O arquivo %s não existe."
+
+#: blocks/enhanced_block_theme.php:29
+msgid "Data is Empty"
+msgstr "Dados está Vazio"
+
+#: blocks/global_popular_posts_block_theme.php:114
+#: blocks/popular_posts_block_theme.php:122
+#: blocks/recent_posts_content_block_theme.php:84
+#: blocks/recent_posts_list_block_theme.php:70
+msgid "Tags:"
+msgstr "Tags:"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (0)"
+msgstr "Comentários (0)"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (1)"
+msgstr "Comentários (1)"
+
+#: blocks/global_popular_posts_block_theme.php:143
+#: blocks/popular_posts_block_theme.php:151
+#: blocks/recent_posts_content_block_theme.php:123
+#: blocks/recent_posts_list_block_theme.php:99
+msgid "Comments (%)"
+msgstr "Comentários (%)"
+
+#: blocks/global_recent_comments_block_theme.php:85
+#: blocks/recent_comments_block_theme.php:82
+#, php-format
+msgid "%1$s on %2$s"
+msgstr "%2$s para %1$s"
+
+#: blocks/meta_block_theme.php:25
+msgid "Posts RSS"
+msgstr "RSS do post"
+
+#: blocks/meta_block_theme.php:28
+msgid "Comments RSS"
+msgstr "RSS dos comentários"
+
+#: blocks/meta_block_theme.php:41
+#: blocks/meta_block_theme.php:46
+msgid "Add New"
+msgstr "Criar novo"
+
+#: blocks/meta_block_theme.php:55
+msgid "Site Admin"
+msgstr "Administração do WordPress"
+
+#: blocks/meta_block_theme.php:61
+msgid "User Profile"
+msgstr "Perfil do usuário"
+
+#: blocks/meta_block_theme.php:69
+#: blocks/meta_block_theme.php:74
+msgid "Subscription management"
+msgstr "Gerenciar inscrições"
+
+#: blocks/meta_block_theme.php:82
+msgid "ReadMe"
+msgstr "Leia-me"
+
+#: blocks/meta_block_theme.php:87
+msgid "Themes"
+msgstr "Temas"
+
+#~ msgid "PHP code error"
+#~ msgstr "Erro no código PHP"
+
+#~ msgid "Customize Header"
+#~ msgstr "Personalizar cabeçalho"
+
+#~ msgid "%d queries. %s seconds."
+#~ msgstr "%d solicitações. %s segundos."
+
+#~ 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/my_themes/links.php
===================================================================
--- /trunk/extras/my_themes/links.php	(revision 821)
+++ /trunk/extras/my_themes/links.php	(revision 821)
@@ -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/my_themes/multi_blog_front.php
===================================================================
--- /trunk/extras/my_themes/multi_blog_front.php	(revision 821)
+++ /trunk/extras/my_themes/multi_blog_front.php	(revision 821)
@@ -0,0 +1,91 @@
+<?php
+/*
+Template Name: MultiBlog Front_Page
+*/
+?>
+<?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
+	echo '<h3>' . __('New Entries', 'xpress') . "</h3>\n";
+	$data_array = xpress_grobal_recent_posts();
+	echo "<ul>\n";
+	foreach($data_array as $data){
+		echo '<li>';
+		printf(__('%1$s wrote %2$s in %3$s.','xpress'), $data->post_author,$data->title_link,$data->blog_link);
+		echo "</li>\n";
+	}
+	echo "</ul>\n";
+?>
+	<br />
+
+	<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/my_themes/multi_blog_index.php
===================================================================
--- /trunk/extras/my_themes/multi_blog_index.php	(revision 821)
+++ /trunk/extras/my_themes/multi_blog_index.php	(revision 821)
@@ -0,0 +1,81 @@
+<?php
+/*
+Template Name: MultiBlog Index_Page
+*/
+?><?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">
+							<?php if(function_exists('the_title_attribute')) : ?>			
+								<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>
+							<?php else : ?>
+								<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title('','',false)); ?>"><?php the_title(); ?></a></h2>
+							<?php endif; ?>
+						</div>
+					</div>
+					<div class="xpress-post-entry">
+						<?php xpress_the_content(); ?>
+					</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/my_themes/page.php
===================================================================
--- /trunk/extras/my_themes/page.php	(revision 821)
+++ /trunk/extras/my_themes/page.php	(revision 821)
@@ -0,0 +1,34 @@
+<?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; ?>
+
+		<?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/my_themes/rtl.css
===================================================================
--- /trunk/extras/my_themes/rtl.css	(revision 821)
+++ /trunk/extras/my_themes/rtl.css	(revision 821)
@@ -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/my_themes/searchform.php
===================================================================
--- /trunk/extras/my_themes/searchform.php	(revision 821)
+++ /trunk/extras/my_themes/searchform.php	(revision 821)
@@ -0,0 +1,10 @@
+<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
+<label class="hidden" for="s"><?php _e('Search for:', 'xpress'); ?></label>
+<?php if(function_exists('the_search_query')) : ?>			
+	<div><input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
+<?php else : ?>
+	<div><input type="text" value="<?php echo attribute_escape($s); ?>" name="s" id="s" />
+<?php endif; ?>
+<input type="submit" id="searchsubmit" value="<?php _e('Search', 'xpress'); ?>" />
+</div>
+</form>
Index: /trunk/extras/my_themes/sidebar-footer.php
===================================================================
--- /trunk/extras/my_themes/sidebar-footer.php	(revision 821)
+++ /trunk/extras/my_themes/sidebar-footer.php	(revision 821)
@@ -0,0 +1,21 @@
+<?php
+/**
+ * The Footer widget areas.
+ *
+ */
+	$side_bar_num = get_option('xpress_footer_sidebars_count');
+	if (empty($side_bar_num)) return;
+//	echo "<div id=\"footer-widget-area\" role=\"complementary\">\n";
+	echo "<div id=\"footer-widget-area\">\n";
+	for($i=1;$i <= $side_bar_num;$i++){
+		$sidebar_id = 'footer-widget-area-'.$i;
+		echo "\t<div class=\"widget-area-type{$side_bar_num}\">\n";
+		echo "\t\t<div id=\"{$sidebar_id}\" class=\"widget-area\">\n";
+		echo "\t\t\t<ul class=\"xoxo\">\n";
+		dynamic_sidebar( $sidebar_id );
+		echo "\t\t\t\n</ul>\n";
+		echo "\t\t</div><!-- #{$sidebar_id} -->\n";
+		echo "\t</div><!-- .widget-area-type{$side_bar_num} -->\n";
+	}
+	echo "</div><!-- #footer-widget-area -->\n";
+?>
Index: /trunk/extras/my_themes/sidebar.php
===================================================================
--- /trunk/extras/my_themes/sidebar.php	(revision 821)
+++ /trunk/extras/my_themes/sidebar.php	(revision 821)
@@ -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/my_themes/single.php
===================================================================
--- /trunk/extras/my_themes/single.php	(revision 821)
+++ /trunk/extras/my_themes/single.php	(revision 821)
@@ -0,0 +1,101 @@
+<?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('echo=1'); ?></div>
+					<div class="alignright"><?php xpress_right_arrow_post_link('echo=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">
+							<?php if(function_exists('the_title_attribute')) : ?>			
+								<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>
+							<?php else : ?>
+								<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title('','',false)); ?>"><?php the_title(); ?></a></h2>
+							<?php endif; ?>
+						</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
+							if ( xpress_is_wp_version('<','2.7') )
+								comments_template();
+							else
+								comments_template('',true);
+						?>
+					</div>
+				</div>
+				
+				<div class="xpress-navi-bar">
+					<div class="alignleft"><?php xpress_left_arrow_post_link('echo=1') ?></div>
+					<div class="alignright"><?php xpress_right_arrow_post_link('echo=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/my_themes/style.css
===================================================================
--- /trunk/extras/my_themes/style.css	(revision 821)
+++ /trunk/extras/my_themes/style.css	(revision 821)
@@ -0,0 +1,951 @@
+/*
+Theme Name: My Themes for XPressME
+Theme URI: http://trac.xpressme.info/XPressME
+Description: The theme for XPressME series
+Version: 1.0
+Author: Oneself
+Author URI: http://www.exsample.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 {
+	clear: both;
+	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 {
+	margin-bottom: 0px;
+	}
+#xpress-header-bar-top img{
+	vertical-align: top;
+}
+#xpress-header-bar #xpress-header-bar-top .xpress-header-title {
+	font-size: 24px;
+	float: left;
+}
+#xpress-header-bar #xpress-header-bar-top .xpress-description {
+	clear: both;
+	font-weight: bold;
+	font-size: 12px;
+	padding-top: 8px;
+	padding-left: 40px;
+
+}
+
+#xpress-header-bar .xpress-conditional-title {
+	font-weight: bold;
+	font-size: 12px;
+	padding-top: 14px;
+	padding-left: 40px;
+}
+
+#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-title h2{
+	margin: 0;
+	color: #4478B0;
+	text-shadow: 2px 2px 3px #AAAAAA;
+	font-size: 16px;
+	font-weight: bold;
+}
+
+.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;
+}
+a.more-link {
+	font-size: 12px;
+	margin: 0;
+	padding: 0;
+	color: #E98838;
+	text-shadow: 2px 2px 3px #AAAAAA;
+	font-style: normal;
+	font-weight: bold;
+	text-align: center;
+}
+.xpress-more-link {
+	font-size: 12px;
+	margin: 0;
+	padding: 0;
+	color: #E98838;
+	text-shadow: 2px 2px 3px #AAAAAA;
+	font-style: normal;
+	font-weight: bold;
+	text-align: center;
+}
+.xpress-more-link a{
+	color: #E98838;
+	text-shadow: 2px 2px 3px #AAAAAA;
+	font-style: normal;
+	font-weight: bold;
+	text-align: center;
+}
+
+/* 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-pings-block h3{
+	font-size: 12px;
+	margin: 0;
+	padding: 0;
+	color: #E98838;
+	text-shadow: 2px 2px 3px #AAAAAA;
+	font-style: normal;
+	font-weight: bold;
+}
+#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;
+	background-color: #fff;
+	}
+
+#wp-calendar #prev a {
+	padding-left: 10px;
+	text-align: left;
+	font-size: 9pt;
+	background-color: #fff;
+	}
+
+#wp-calendar a {
+	display: block;
+	text-decoration: none;
+	font-weight: bold;
+	font-size: 14px;
+	background-color: #ddd;
+	}
+
+#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;
+	}
+
+.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;
+	}
+	
+
+/* =Menu
+-------------------------------------------------------------- */
+#menu_div {
+	border-bottom: 1px solid #000;
+//	background: #fff;
+	margin: 0 auto;
+	display:block;
+	clear:both;
+	height:20px;
+//	float:left;
+}
+.xpress-header-title{
+	padding-left: 5px;
+	padding-top: 5px;
+}
+#access{
+//	background: #fff;
+	margin: 0 auto;
+	display:block;
+	padding-left: 0px;
+	float:left;
+}
+#xpress-menu {
+//	background: #fff;
+	margin: 0 auto;
+	display:block;
+	float:right;
+}
+#access .menu-header,
+#access .menu,
+#xpress-menu .menu-header {
+	font-size: 11px;
+	margin-left: 12px;
+}
+#access .menu-header ul,
+#access .menu ul,
+#xpress-menu .menu-header ul {
+	list-style: none;
+	margin: 0;
+}
+#access .menu-header li,
+#access .menu li,
+#xpress-menu .menu-header li {
+	float:left;
+	list-style: none;
+	position: relative;
+}
+#access a,
+#xpress-menu a {
+	display:block;
+	text-decoration:none;
+//	color:#aaa;
+	padding:0 2px;
+	line-height:16px;
+}
+#access ul ul,
+#xpress-menu ul ul {
+	display:none;
+	position:absolute;
+	top:16px;
+	left:0;
+	float:left;
+	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	z-index: 99999;
+}
+#access ul ul ul,
+#xpress-menu ul ul ul {
+	left:100%;
+	top:0;
+}
+#access ul ul a,
+#xpress-menu ul ul a {
+	background:#AAAAAA;
+	height:auto;
+	line-height:1em;
+	padding:3px;
+	width: 130px;
+}
+#access li:hover > a,
+#access ul ul :hover > a,
+#xpress-menu li:hover > a,
+#xpress-menu ul ul :hover > a {
+	color:#fff;
+	background:#333;
+}
+
+#access ul li:hover > ul,
+#xpress-menu ul li:hover > ul {
+	display:block;
+}
+
+#ed_toolbar input
+{
+	background: #14181B;
+	color: white;
+	border:2px dashed #323136; 
+	padding: 0px;
+	width: 65px;
+}
+#ed_toolbar input:hover 
+{
+	background: #323136;
+	color: white;
+	border:2px dashed #14181B; 
+	padding: 0px;
+	width: 65px;
+}
+
+#footer-widget-area {
+	overflow: hidden;
+	margin-top: 5px;
+	text-align: left;
+}
+#footer-widget-area .widget-area-type1 {
+	float: left;
+	padding-top: 0;
+	width:100%;
+}
+#footer-widget-area .widget-area-type2 {
+	float: left;
+	padding-top: 0;
+	width:49%;
+}
+#footer-widget-area .widget-area-type3 {
+	float: left;
+	padding-top: 0;
+	width:33%;
+}
+#footer-widget-area .widget-area-type4 {
+	float: left;
+	padding-top: 0;
+	width:24%;
+}
+#footer-widget-area .widget-area-type5 {
+	float: left;
+	padding-top: 0;
+	width:19%;
+}
+
+#footer-widget-area ul {
+	margin-top: 0;
+	list-style-type:none;
+	padding-left: 20px;
+
+}
+#footer-widget-area .widget-title {
+	margin-top: 0;
+	margin-bottom: 2px;
+}
Index: /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja.po
===================================================================
--- /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja.po	(revision 821)
+++ /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja.po	(revision 821)
@@ -0,0 +1,475 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: XPressME-DB-BACKUP\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-01 09:32+0900\n"
+"PO-Revision-Date: \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-SourceCharset: utf-8\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: C:\\xampp\\htdocs\\cube_euc\\modules\\xpress2011\\wp-content\\plugins\\xpressme-backup\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: xpressme-backup.php:215
+msgid "Backup Complete!"
+msgstr "バックアップ完了 !"
+
+#: xpressme-backup.php:250
+msgid "http://codex.wordpress.org/WordPress_Backups"
+msgstr ""
+
+#: xpressme-backup.php:251
+#, php-format
+msgid "Click <a href=\"%s\" target=\"_blank\">here</a> to back up your database using the WordPress Database Backup plugin. <strong>Note:</strong> WordPress Database Backup does <em>not</em> back up your files, just your database."
+msgstr ""
+
+#: xpressme-backup.php:260
+msgid "Progress"
+msgstr "進行"
+
+#: xpressme-backup.php:262
+msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
+msgstr "バックアップに失敗するので、次の事はしないでください:"
+
+#: xpressme-backup.php:265
+msgid "Close this browser"
+msgstr "このブラウザを閉じる"
+
+#: xpressme-backup.php:266
+msgid "Reload this page"
+msgstr "このページを再読み込みする"
+
+#: xpressme-backup.php:267
+msgid "Click the Stop or Back buttons in your browser"
+msgstr "ブラウザの停止もしくは戻るボタンのクリック"
+
+#: xpressme-backup.php:269
+msgid "Progress:"
+msgstr "進行状況:"
+
+#: xpressme-backup.php:278
+msgid "Navigating away from this page will cause your backup to fail."
+msgstr "このページを閉じるとバックアップに失敗します。"
+
+#: xpressme-backup.php:315
+#, php-format
+msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
+msgstr "バックアップを完了しました。ダウンロードのために<a href=\\\"%s\\\">バックアップ</a>を準備中..."
+
+#: xpressme-backup.php:322
+#, php-format
+msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
+msgstr "バックアップを完了しました。メールで<a href=\\\"%s\\\">バックアップ</a>を送信中..."
+
+#: xpressme-backup.php:329
+#, php-format
+msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
+msgstr "バックアップを完了しました。<a href=\\\"%s\\\">こちらから</a>ダウンロードしてください。"
+
+#: xpressme-backup.php:389
+msgid "Creating backup file..."
+msgstr "バックアップファイルを作成中..."
+
+#: xpressme-backup.php:392
+#, php-format
+msgid "Finished backing up table \\\"%s\\\"."
+msgstr "テーブル \\\"%s\\\" のバックアップを完了。"
+
+#: xpressme-backup.php:394
+#, php-format
+msgid "Backing up table \\\"%s\\\"..."
+msgstr "テーブル \\\"%s\\\" をバックアップ中..."
+
+#: xpressme-backup.php:401
+#: xpressme-backup.php:905
+msgid "Could not open the backup file for writing!"
+msgstr "書き込み用のバックアップファイルを開けませんでした。"
+
+#: xpressme-backup.php:402
+msgid "The backup file could not be saved.  Please check the permissions for writing to your backup directory and try again."
+msgstr "バックアップファイルを保存できませんでした。バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
+
+#: xpressme-backup.php:407
+#: xpressme-backup.php:914
+msgid "WordPress MySQL database backup"
+msgstr "WordPress MySQL データベースバックアップ"
+
+#: xpressme-backup.php:409
+#: xpressme-backup.php:916
+#, php-format
+msgid "Generated: %s"
+msgstr "生成日時: %s"
+
+#: xpressme-backup.php:410
+#: xpressme-backup.php:917
+#, php-format
+msgid "Hostname: %s"
+msgstr "ホスト名: %s"
+
+#: xpressme-backup.php:411
+#: xpressme-backup.php:918
+#, php-format
+msgid "Database: %s"
+msgstr "データベース: %s"
+
+#: xpressme-backup.php:419
+#: xpressme-backup.php:931
+#, php-format
+msgid "Table: %s"
+msgstr "テーブル: %s"
+
+#: xpressme-backup.php:426
+msgid "The backup directory is not writeable!  Please check the permissions for writing to your backup directory and try again."
+msgstr "バックアップ用ディレクトリが書き込み可能になっていません ! バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
+
+#: xpressme-backup.php:483
+msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
+msgstr "複数のチェックボックスの選択状態を切り替えるには <code>[SHIFT]</code> を押しながらクリックしてください"
+
+#: xpressme-backup.php:523
+msgid "Change"
+msgstr "変更"
+
+#: xpressme-backup.php:532
+msgid "Save"
+msgstr "保存"
+
+#: xpressme-backup.php:619
+#: xpressme-backup.php:628
+msgid "XPressME Backup"
+msgstr "XPressMEバックアップ"
+
+#: xpressme-backup.php:715
+#: xpressme-backup.php:718
+msgid "There was an error writing a line to the backup script:"
+msgstr "バックアップスクリプトへの書き込みエラーがありました:"
+
+#: xpressme-backup.php:750
+msgid "Subsequent errors have been omitted from this log."
+msgstr "このログから後続のエラーが削除されました。"
+
+#: xpressme-backup.php:784
+msgid "Error getting table details"
+msgstr "テーブル詳細の取得エラー"
+
+#: xpressme-backup.php:792
+#, php-format
+msgid "Delete any existing table %s"
+msgstr "既存テーブル %s の削除"
+
+#: xpressme-backup.php:801
+#, php-format
+msgid "Table structure of table %s"
+msgstr "テーブル %s のテーブル構造"
+
+#: xpressme-backup.php:807
+#, php-format
+msgid "Error with SHOW CREATE TABLE for %s."
+msgstr "%s のための SHOW CREATE TABLE に関するエラー。"
+
+#: xpressme-backup.php:814
+#, php-format
+msgid "Error getting table structure of %s"
+msgstr "%s のテーブル構造取得エラー"
+
+#: xpressme-backup.php:822
+#, php-format
+msgid "Data contents of table %s"
+msgstr "テーブル %s のデータコンテンツ"
+
+#: xpressme-backup.php:893
+#, php-format
+msgid "End of data contents of table %s"
+msgstr "テーブル %s のデータコンテンツの終わり"
+
+#: xpressme-backup.php:909
+msgid "The backup directory is not writeable!"
+msgstr "バックアップ用ディレクトリが書き込み可能になっていません !"
+
+#: xpressme-backup.php:1045
+#, php-format
+msgid "File not found:%s"
+msgstr "ファイルが見つかりませんでした: %s"
+
+#: xpressme-backup.php:1045
+msgid "Return to Backup"
+msgstr "バックアップに戻る"
+
+#: xpressme-backup.php:1054
+#, php-format
+msgid "File %s does not exist!"
+msgstr "ファイル %s はありません !"
+
+#: xpressme-backup.php:1061
+#, php-format
+msgid ""
+"Attached to this email is\n"
+"   %1s\n"
+"   Size:%2s kilobytes\n"
+msgstr ""
+"このメールに添付されたのは\n"
+"   %1s\n"
+"   サイズ: %2s キロバイト\n"
+
+#: xpressme-backup.php:1062
+msgid "Database Backup"
+msgstr "データベースのバックアップ"
+
+#: xpressme-backup.php:1065
+#: xpressme-backup.php:1112
+msgid "The following errors were reported:"
+msgstr "次のエラーが報告されました:"
+
+#: xpressme-backup.php:1070
+msgid "ERROR: The mail application has failed to deliver the backup."
+msgstr "エラー: メールアプリケーションがバックアップファイルの送信に失敗しました。"
+
+#: xpressme-backup.php:1087
+msgid "Backup Successful"
+msgstr "バックアップ成功"
+
+#: xpressme-backup.php:1091
+#, php-format
+msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
+msgstr "バックアップファイル: <a href=\"%1s\">%2s</a>のダウンロードはまもなく開始されます。"
+
+#: xpressme-backup.php:1099
+#, php-format
+msgid "Your backup has been emailed to %s"
+msgstr "バックアップは %s にメールで送信されました"
+
+#: xpressme-backup.php:1102
+msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
+msgstr "バックアップファイルがサーバーに保存されました。ダウンロードするには右クリックして「リンク先を名前をつけて保存」を選択してください"
+
+#: xpressme-backup.php:1103
+#, php-format
+msgid "%s bytes"
+msgstr "%s バイト"
+
+#: xpressme-backup.php:1139
+msgid "Scheduled Backup Options Saved!"
+msgstr "定期バックアップ設定が保存されました !"
+
+#: xpressme-backup.php:1166
+msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
+msgstr "注意: バックアップディレクトリが<strong>見つからず</strong>、作成もできませんでした。"
+
+#: xpressme-backup.php:1167
+#, php-format
+msgid "Using your FTP client, try to create the backup directory yourself: %s"
+msgstr "FTP クライアントを使用し、バックアップディレクトリ: %s を作成してみてください。"
+
+#: xpressme-backup.php:1171
+#: xpressme-backup.php:1182
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
+msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています ! バックアップファイルを作成できませんでした。"
+
+#: xpressme-backup.php:1172
+#, php-format
+msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
+msgstr "FTP クライアントを使用し、バックアップディレクトリの書込みパーミッションを %1$s または %2$s: %3$s にセットしてみてください。"
+
+#: xpressme-backup.php:1184
+msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
+msgstr "この問題は使用しているサーバーの <code>safe_mode</code> ファイルオーナー制限によって引き起こされているのかもしれません。これは WordPress のようなウェブアプリケーションが作成できるファイルを制限しています。"
+
+#: xpressme-backup.php:1186
+#, php-format
+msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
+msgstr "FTP クライアントを使用してバックアップディレクトリの %s を削除して作り直せば、この問題を解決できるかもしれません。"
+
+#: xpressme-backup.php:1197
+msgid "Backup"
+msgstr "バックアップ"
+
+#: xpressme-backup.php:1200
+msgid "Tables"
+msgstr "テーブル"
+
+#: xpressme-backup.php:1204
+msgid "These core WordPress tables will always be backed up:"
+msgstr "次の主要な WordPress テーブルは常にバックアップされます:"
+
+#: xpressme-backup.php:1210
+msgid "Exclude spam comments"
+msgstr "スパムコメントを除外"
+
+#: xpressme-backup.php:1213
+msgid "Exclude post revisions"
+msgstr "投稿リビジョンを除外"
+
+#: xpressme-backup.php:1224
+msgid "Select all"
+msgstr "すべて選択"
+
+#: xpressme-backup.php:1225
+msgid "Select none"
+msgstr "何も選択しない"
+
+#: xpressme-backup.php:1227
+msgid "You may choose to include any of the following tables:"
+msgstr "次のテーブルも選択して保存することができます:"
+
+#: xpressme-backup.php:1260
+msgid "Backup Options"
+msgstr "バックアップ設定"
+
+#: xpressme-backup.php:1261
+msgid "What to do with the backup file:"
+msgstr "バックアップファイルの扱い:"
+
+#: xpressme-backup.php:1265
+msgid "Save to server"
+msgstr "サーバーに保存"
+
+#: xpressme-backup.php:1270
+msgid "Download to your computer"
+msgstr "あなたのコンピュータにダウンロード"
+
+#: xpressme-backup.php:1274
+#: xpressme-backup.php:1382
+msgid "Email backup to:"
+msgstr "バックアップをメールで送信:"
+
+#: xpressme-backup.php:1278
+msgid "Data conversion option."
+msgstr "データ変換オプション"
+
+#: xpressme-backup.php:1285
+#: xpressme-backup.php:1288
+msgid "Converte EUC-JP to UTF-8"
+msgstr "EUC-JPからUTF-8への変換"
+
+#: xpressme-backup.php:1289
+msgid "The server used does not support the mb_convert_encoding() function."
+msgstr "お使いのサーバーはmb_convert_encoding()関数をサポートしていません。"
+
+#: xpressme-backup.php:1298
+msgid "Changes from the user roles name of WordPressME to the user roles name of Wordpress."
+msgstr "WordPressMEのユーザー権限名からWordPressのユーザ権限名に変更"
+
+#: xpressme-backup.php:1307
+msgid "Rename DB Prefix"
+msgstr "データベース・プレフィックスの変更"
+
+#: xpressme-backup.php:1309
+#: xpressme-backup.php:1318
+msgid "to"
+msgstr "から"
+
+#: xpressme-backup.php:1315
+msgid "Change URL"
+msgstr "URLの変更"
+
+#: xpressme-backup.php:1324
+msgid "In the backup data,all plug-ins are Deactivate state."
+msgstr "バックアップしたデータを、すべてのプラグインを無効化した状態にする。"
+
+#: xpressme-backup.php:1331
+msgid "Backup now!"
+msgstr "バックアップ !"
+
+#: xpressme-backup.php:1334
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
+msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています。"
+
+#: xpressme-backup.php:1345
+msgid "Scheduled Backup"
+msgstr "定期バックアップ"
+
+#: xpressme-backup.php:1352
+#, php-format
+msgid "Next Backup: %s"
+msgstr "次回のバックアップ: %s"
+
+#: xpressme-backup.php:1357
+#, php-format
+msgid "Last WP-Cron Daily Execution: %s"
+msgstr "最後に WP-Cron を実行した日時: %s"
+
+#: xpressme-backup.php:1358
+#, php-format
+msgid "Next WP-Cron Daily Execution: %s"
+msgstr "次に WP-Cron を実行する日時: %s"
+
+#: xpressme-backup.php:1363
+msgid "Schedule: "
+msgstr "スケジュール:"
+
+#: xpressme-backup.php:1367
+msgid "None"
+msgstr "なし"
+
+#: xpressme-backup.php:1367
+msgid "Daily"
+msgstr "毎日"
+
+#: xpressme-backup.php:1384
+msgid "Schedule backup"
+msgstr "定期バックアップ"
+
+#: xpressme-backup.php:1392
+msgid "Tables to include in the scheduled backup:"
+msgstr "定期バックアップに含めるテーブル:"
+
+#: xpressme-backup.php:1427
+msgid "Never"
+msgstr "なし"
+
+#: xpressme-backup.php:1432
+#, php-format
+msgid "%s seconds"
+msgstr "%s 秒"
+
+#: xpressme-backup.php:1465
+msgid "Once Weekly"
+msgstr "週 1 回"
+
+#: xpressme-backup.php:1479
+#, php-format
+msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin.  Hence, this plugin is automatically disabled.  Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
+msgstr "お使いになっている WordPress のバージョンは %1s です。このバージョンには WP-DB-Backup プラグインを安全に使用できる重要なセキュリティ機能が備わっていません。そのためこのプラグインは自動的に機能を停止しました。より最新の <a href=\"%2s\">WordPress へのアップグレード</a>をご検討ください。"
+
+#: xpressme-backup.php:1498
+msgid "You are not allowed to perform backups."
+msgstr "バックアップを行う権限がありません。"
+
+#: xpressme-backup.php:1513
+#, php-format
+msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s.  The attempt has been halted."
+msgstr "このサイトから %1s にあるデータベースへの未承認のアクセスがあったようです。この試みは阻止されました。"
+
+#: xpressme-backup.php:1524
+msgid "Cheatin' uh ?"
+msgstr "間違えましたか ?"
+
+#~ msgid "user_role is corrected to upgrade."
+#~ msgstr "WordPressアップグレード用にユーザ権限データを修正"
+#~ msgid "Backup Ditaile Options"
+#~ msgstr "バックアップ詳細設定"
+#~ msgid ""
+#~ "Your WordPress Langage %s, the WP-DB-Backup-to-UTF8 plugin is only for "
+#~ "EUC-JP. Hence, this plugin is automatically disabled."
+#~ msgstr ""
+#~ "お使いになっている WordPress の言語は %s です。WP-DB-Backup-to-UTF8プラグ"
+#~ "インは、EUC-JP専用です。そのためこのプラグインは自動的に機能を停止しまし"
+#~ "た。"
+#~ msgid "Backup(to UTF8)"
+#~ msgstr "バックアップ(to UTF8)"
+#~ msgid ""
+#~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
+#~ "can not create the backup directory."
+#~ msgstr ""
+#~ "注意: wp-content ディレクトリが<strong>書き込み不可</strong>になっていま"
+#~ "す ! バックアップディレクトリを作成できませんでした。"
+#~ msgid "Submit"
+#~ msgstr "保存する"
+
Index: /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_EUC.po
===================================================================
--- /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_EUC.po	(revision 821)
+++ /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_EUC.po	(revision 821)
@@ -0,0 +1,475 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: XPressME-DB-BACKUP\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-01 09:34+0900\n"
+"PO-Revision-Date: \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-SourceCharset: euc-jp\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: C:\\xampp\\htdocs\\cube_euc\\modules\\xpress2011\\wp-content\\plugins\\xpressme-backup\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: xpressme-backup.php:215
+msgid "Backup Complete!"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×´°Î» !"
+
+#: xpressme-backup.php:250
+msgid "http://codex.wordpress.org/WordPress_Backups"
+msgstr ""
+
+#: xpressme-backup.php:251
+#, php-format
+msgid "Click <a href=\"%s\" target=\"_blank\">here</a> to back up your database using the WordPress Database Backup plugin. <strong>Note:</strong> WordPress Database Backup does <em>not</em> back up your files, just your database."
+msgstr ""
+
+#: xpressme-backup.php:260
+msgid "Progress"
+msgstr "¿Ê¹Ô"
+
+#: xpressme-backup.php:262
+msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤Ë¼ºÇÔ¤¹¤ë¤Î¤Ç¡¢¼¡¤Î»ö¤Ï¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤:"
+
+#: xpressme-backup.php:265
+msgid "Close this browser"
+msgstr "¤³¤Î¥Ö¥é¥¦¥¶¤òÊÄ¤¸¤ë"
+
+#: xpressme-backup.php:266
+msgid "Reload this page"
+msgstr "¤³¤Î¥Ú¡¼¥¸¤òºÆÆÉ¤ß¹þ¤ß¤¹¤ë"
+
+#: xpressme-backup.php:267
+msgid "Click the Stop or Back buttons in your browser"
+msgstr "¥Ö¥é¥¦¥¶¤ÎÄä»ß¤â¤·¤¯¤ÏÌá¤ë¥Ü¥¿¥ó¤Î¥¯¥ê¥Ã¥¯"
+
+#: xpressme-backup.php:269
+msgid "Progress:"
+msgstr "¿Ê¹Ô¾õ¶·:"
+
+#: xpressme-backup.php:278
+msgid "Navigating away from this page will cause your backup to fail."
+msgstr "¤³¤Î¥Ú¡¼¥¸¤òÊÄ¤¸¤ë¤È¥Ð¥Ã¥¯¥¢¥Ã¥×¤Ë¼ºÇÔ¤·¤Þ¤¹¡£"
+
+#: xpressme-backup.php:315
+#, php-format
+msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò´°Î»¤·¤Þ¤·¤¿¡£¥À¥¦¥ó¥í¡¼¥É¤Î¤¿¤á¤Ë<a href=\\\"%s\\\">¥Ð¥Ã¥¯¥¢¥Ã¥×</a>¤ò½àÈ÷Ãæ..."
+
+#: xpressme-backup.php:322
+#, php-format
+msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò´°Î»¤·¤Þ¤·¤¿¡£¥á¡¼¥ë¤Ç<a href=\\\"%s\\\">¥Ð¥Ã¥¯¥¢¥Ã¥×</a>¤òÁ÷¿®Ãæ..."
+
+#: xpressme-backup.php:329
+#, php-format
+msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò´°Î»¤·¤Þ¤·¤¿¡£<a href=\\\"%s\\\">¤³¤Á¤é¤«¤é</a>¥À¥¦¥ó¥í¡¼¥É¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:389
+msgid "Creating backup file..."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºîÀ®Ãæ..."
+
+#: xpressme-backup.php:392
+#, php-format
+msgid "Finished backing up table \\\"%s\\\"."
+msgstr "¥Æ¡¼¥Ö¥ë \\\"%s\\\" ¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò´°Î»¡£"
+
+#: xpressme-backup.php:394
+#, php-format
+msgid "Backing up table \\\"%s\\\"..."
+msgstr "¥Æ¡¼¥Ö¥ë \\\"%s\\\" ¤ò¥Ð¥Ã¥¯¥¢¥Ã¥×Ãæ..."
+
+#: xpressme-backup.php:401
+#: xpressme-backup.php:905
+msgid "Could not open the backup file for writing!"
+msgstr "½ñ¤­¹þ¤ßÍÑ¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: xpressme-backup.php:402
+msgid "The backup file could not be saved.  Please check the permissions for writing to your backup directory and try again."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òÊÝÂ¸¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥¢¥¯¥»¥¹¸¢¤¬½ñ¤­¹þ¤ß²ÄÇ½¤Ë¤Ê¤Ã¤Æ¤¤¤ë¤«³ÎÇ§¤·¤Æ¤â¤¦°ìÅÙ»î¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:407
+#: xpressme-backup.php:914
+msgid "WordPress MySQL database backup"
+msgstr "WordPress MySQL ¥Ç¡¼¥¿¥Ù¡¼¥¹¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:409
+#: xpressme-backup.php:916
+#, php-format
+msgid "Generated: %s"
+msgstr "À¸À®Æü»þ: %s"
+
+#: xpressme-backup.php:410
+#: xpressme-backup.php:917
+#, php-format
+msgid "Hostname: %s"
+msgstr "¥Û¥¹¥ÈÌ¾: %s"
+
+#: xpressme-backup.php:411
+#: xpressme-backup.php:918
+#, php-format
+msgid "Database: %s"
+msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹: %s"
+
+#: xpressme-backup.php:419
+#: xpressme-backup.php:931
+#, php-format
+msgid "Table: %s"
+msgstr "¥Æ¡¼¥Ö¥ë: %s"
+
+#: xpressme-backup.php:426
+msgid "The backup directory is not writeable!  Please check the permissions for writing to your backup directory and try again."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Ç¥£¥ì¥¯¥È¥ê¤¬½ñ¤­¹þ¤ß²ÄÇ½¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤»¤ó ! ¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥¢¥¯¥»¥¹¸¢¤¬½ñ¤­¹þ¤ß²ÄÇ½¤Ë¤Ê¤Ã¤Æ¤¤¤ë¤«³ÎÇ§¤·¤Æ¤â¤¦°ìÅÙ»î¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:483
+msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
+msgstr "Ê£¿ô¤Î¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹¤ÎÁªÂò¾õÂÖ¤òÀÚ¤êÂØ¤¨¤ë¤Ë¤Ï <code>[SHIFT]</code> ¤ò²¡¤·¤Ê¤¬¤é¥¯¥ê¥Ã¥¯¤·¤Æ¤¯¤À¤µ¤¤"
+
+#: xpressme-backup.php:523
+msgid "Change"
+msgstr "ÊÑ¹¹"
+
+#: xpressme-backup.php:532
+msgid "Save"
+msgstr "ÊÝÂ¸"
+
+#: xpressme-backup.php:619
+#: xpressme-backup.php:628
+msgid "XPressME Backup"
+msgstr "XPressME¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:715
+#: xpressme-backup.php:718
+msgid "There was an error writing a line to the backup script:"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥¹¥¯¥ê¥×¥È¤Ø¤Î½ñ¤­¹þ¤ß¥¨¥é¡¼¤¬¤¢¤ê¤Þ¤·¤¿:"
+
+#: xpressme-backup.php:750
+msgid "Subsequent errors have been omitted from this log."
+msgstr "¤³¤Î¥í¥°¤«¤é¸åÂ³¤Î¥¨¥é¡¼¤¬ºï½ü¤µ¤ì¤Þ¤·¤¿¡£"
+
+#: xpressme-backup.php:784
+msgid "Error getting table details"
+msgstr "¥Æ¡¼¥Ö¥ë¾ÜºÙ¤Î¼èÆÀ¥¨¥é¡¼"
+
+#: xpressme-backup.php:792
+#, php-format
+msgid "Delete any existing table %s"
+msgstr "´ûÂ¸¥Æ¡¼¥Ö¥ë %s ¤Îºï½ü"
+
+#: xpressme-backup.php:801
+#, php-format
+msgid "Table structure of table %s"
+msgstr "¥Æ¡¼¥Ö¥ë %s ¤Î¥Æ¡¼¥Ö¥ë¹½Â¤"
+
+#: xpressme-backup.php:807
+#, php-format
+msgid "Error with SHOW CREATE TABLE for %s."
+msgstr "%s ¤Î¤¿¤á¤Î SHOW CREATE TABLE ¤Ë´Ø¤¹¤ë¥¨¥é¡¼¡£"
+
+#: xpressme-backup.php:814
+#, php-format
+msgid "Error getting table structure of %s"
+msgstr "%s ¤Î¥Æ¡¼¥Ö¥ë¹½Â¤¼èÆÀ¥¨¥é¡¼"
+
+#: xpressme-backup.php:822
+#, php-format
+msgid "Data contents of table %s"
+msgstr "¥Æ¡¼¥Ö¥ë %s ¤Î¥Ç¡¼¥¿¥³¥ó¥Æ¥ó¥Ä"
+
+#: xpressme-backup.php:893
+#, php-format
+msgid "End of data contents of table %s"
+msgstr "¥Æ¡¼¥Ö¥ë %s ¤Î¥Ç¡¼¥¿¥³¥ó¥Æ¥ó¥Ä¤Î½ª¤ï¤ê"
+
+#: xpressme-backup.php:909
+msgid "The backup directory is not writeable!"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×ÍÑ¥Ç¥£¥ì¥¯¥È¥ê¤¬½ñ¤­¹þ¤ß²ÄÇ½¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤»¤ó !"
+
+#: xpressme-backup.php:1045
+#, php-format
+msgid "File not found:%s"
+msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿: %s"
+
+#: xpressme-backup.php:1045
+msgid "Return to Backup"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ËÌá¤ë"
+
+#: xpressme-backup.php:1054
+#, php-format
+msgid "File %s does not exist!"
+msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤¢¤ê¤Þ¤»¤ó !"
+
+#: xpressme-backup.php:1061
+#, php-format
+msgid ""
+"Attached to this email is\n"
+"   %1s\n"
+"   Size:%2s kilobytes\n"
+msgstr ""
+"¤³¤Î¥á¡¼¥ë¤ËÅºÉÕ¤µ¤ì¤¿¤Î¤Ï\n"
+"   %1s\n"
+"   ¥µ¥¤¥º: %2s ¥­¥í¥Ð¥¤¥È\n"
+
+#: xpressme-backup.php:1062
+msgid "Database Backup"
+msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:1065
+#: xpressme-backup.php:1112
+msgid "The following errors were reported:"
+msgstr "¼¡¤Î¥¨¥é¡¼¤¬Êó¹ð¤µ¤ì¤Þ¤·¤¿:"
+
+#: xpressme-backup.php:1070
+msgid "ERROR: The mail application has failed to deliver the backup."
+msgstr "¥¨¥é¡¼: ¥á¡¼¥ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£"
+
+#: xpressme-backup.php:1087
+msgid "Backup Successful"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×À®¸ù"
+
+#: xpressme-backup.php:1091
+#, php-format
+msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë: <a href=\"%1s\">%2s</a>¤Î¥À¥¦¥ó¥í¡¼¥É¤Ï¤Þ¤â¤Ê¤¯³«»Ï¤µ¤ì¤Þ¤¹¡£"
+
+#: xpressme-backup.php:1099
+#, php-format
+msgid "Your backup has been emailed to %s"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤Ï %s ¤Ë¥á¡¼¥ë¤ÇÁ÷¿®¤µ¤ì¤Þ¤·¤¿"
+
+#: xpressme-backup.php:1102
+msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤¬¥µ¡¼¥Ð¡¼¤ËÊÝÂ¸¤µ¤ì¤Þ¤·¤¿¡£¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤Ë¤Ï±¦¥¯¥ê¥Ã¥¯¤·¤Æ¡Ö¥ê¥ó¥¯Àè¤òÌ¾Á°¤ò¤Ä¤±¤ÆÊÝÂ¸¡×¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤"
+
+#: xpressme-backup.php:1103
+#, php-format
+msgid "%s bytes"
+msgstr "%s ¥Ð¥¤¥È"
+
+#: xpressme-backup.php:1139
+msgid "Scheduled Backup Options Saved!"
+msgstr "Äê´ü¥Ð¥Ã¥¯¥¢¥Ã¥×ÀßÄê¤¬ÊÝÂ¸¤µ¤ì¤Þ¤·¤¿ !"
+
+#: xpressme-backup.php:1166
+msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
+msgstr "Ãí°Õ: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤¬<strong>¸«¤Ä¤«¤é¤º</strong>¡¢ºîÀ®¤â¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: xpressme-backup.php:1167
+#, php-format
+msgid "Using your FTP client, try to create the backup directory yourself: %s"
+msgstr "FTP ¥¯¥é¥¤¥¢¥ó¥È¤ò»ÈÍÑ¤·¡¢¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê: %s ¤òºîÀ®¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:1171
+#: xpressme-backup.php:1182
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
+msgstr "Ãí°Õ: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤¬<strong>½ñ¤­¹þ¤ßÉÔ²Ä</strong>¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹ ! ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: xpressme-backup.php:1172
+#, php-format
+msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
+msgstr "FTP ¥¯¥é¥¤¥¢¥ó¥È¤ò»ÈÍÑ¤·¡¢¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤Î½ñ¹þ¤ß¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤ò %1$s ¤Þ¤¿¤Ï %2$s: %3$s ¤Ë¥»¥Ã¥È¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:1184
+msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
+msgstr "¤³¤ÎÌäÂê¤Ï»ÈÍÑ¤·¤Æ¤¤¤ë¥µ¡¼¥Ð¡¼¤Î <code>safe_mode</code> ¥Õ¥¡¥¤¥ë¥ª¡¼¥Ê¡¼À©¸Â¤Ë¤è¤Ã¤Æ°ú¤­µ¯¤³¤µ¤ì¤Æ¤¤¤ë¤Î¤«¤â¤·¤ì¤Þ¤»¤ó¡£¤³¤ì¤Ï WordPress ¤Î¤è¤¦¤Ê¥¦¥§¥Ö¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬ºîÀ®¤Ç¤­¤ë¥Õ¥¡¥¤¥ë¤òÀ©¸Â¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#: xpressme-backup.php:1186
+#, php-format
+msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
+msgstr "FTP ¥¯¥é¥¤¥¢¥ó¥È¤ò»ÈÍÑ¤·¤Æ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤Î %s ¤òºï½ü¤·¤Æºî¤êÄ¾¤»¤Ð¡¢¤³¤ÎÌäÂê¤ò²ò·è¤Ç¤­¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¡£"
+
+#: xpressme-backup.php:1197
+msgid "Backup"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:1200
+msgid "Tables"
+msgstr "¥Æ¡¼¥Ö¥ë"
+
+#: xpressme-backup.php:1204
+msgid "These core WordPress tables will always be backed up:"
+msgstr "¼¡¤Î¼çÍ×¤Ê WordPress ¥Æ¡¼¥Ö¥ë¤Ï¾ï¤Ë¥Ð¥Ã¥¯¥¢¥Ã¥×¤µ¤ì¤Þ¤¹:"
+
+#: xpressme-backup.php:1210
+msgid "Exclude spam comments"
+msgstr "¥¹¥Ñ¥à¥³¥á¥ó¥È¤ò½ü³°"
+
+#: xpressme-backup.php:1213
+msgid "Exclude post revisions"
+msgstr "Åê¹Æ¥ê¥Ó¥¸¥ç¥ó¤ò½ü³°"
+
+#: xpressme-backup.php:1224
+msgid "Select all"
+msgstr "¤¹¤Ù¤ÆÁªÂò"
+
+#: xpressme-backup.php:1225
+msgid "Select none"
+msgstr "²¿¤âÁªÂò¤·¤Ê¤¤"
+
+#: xpressme-backup.php:1227
+msgid "You may choose to include any of the following tables:"
+msgstr "¼¡¤Î¥Æ¡¼¥Ö¥ë¤âÁªÂò¤·¤ÆÊÝÂ¸¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹:"
+
+#: xpressme-backup.php:1260
+msgid "Backup Options"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×ÀßÄê"
+
+#: xpressme-backup.php:1261
+msgid "What to do with the backup file:"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë¤Î°·¤¤:"
+
+#: xpressme-backup.php:1265
+msgid "Save to server"
+msgstr "¥µ¡¼¥Ð¡¼¤ËÊÝÂ¸"
+
+#: xpressme-backup.php:1270
+msgid "Download to your computer"
+msgstr "¤¢¤Ê¤¿¤Î¥³¥ó¥Ô¥å¡¼¥¿¤Ë¥À¥¦¥ó¥í¡¼¥É"
+
+#: xpressme-backup.php:1274
+#: xpressme-backup.php:1382
+msgid "Email backup to:"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¥á¡¼¥ë¤ÇÁ÷¿®:"
+
+#: xpressme-backup.php:1278
+msgid "Data conversion option."
+msgstr "¥Ç¡¼¥¿ÊÑ´¹¥ª¥×¥·¥ç¥ó"
+
+#: xpressme-backup.php:1285
+#: xpressme-backup.php:1288
+msgid "Converte EUC-JP to UTF-8"
+msgstr "EUC-JP¤«¤éUTF-8¤Ø¤ÎÊÑ´¹"
+
+#: xpressme-backup.php:1289
+msgid "The server used does not support the mb_convert_encoding() function."
+msgstr "¤ª»È¤¤¤Î¥µ¡¼¥Ð¡¼¤Ïmb_convert_encoding()´Ø¿ô¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: xpressme-backup.php:1298
+msgid "Changes from the user roles name of WordPressME to the user roles name of Wordpress."
+msgstr "WordPressME¤Î¥æ¡¼¥¶¡¼¸¢¸ÂÌ¾¤«¤éWordPress¤Î¥æ¡¼¥¶¸¢¸ÂÌ¾¤ËÊÑ¹¹"
+
+#: xpressme-backup.php:1307
+msgid "Rename DB Prefix"
+msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¡¦¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤ÎÊÑ¹¹"
+
+#: xpressme-backup.php:1309
+#: xpressme-backup.php:1318
+msgid "to"
+msgstr "¤«¤é"
+
+#: xpressme-backup.php:1315
+msgid "Change URL"
+msgstr "URL¤ÎÊÑ¹¹"
+
+#: xpressme-backup.php:1324
+msgid "In the backup data,all plug-ins are Deactivate state."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤·¤¿¥Ç¡¼¥¿¤ò¡¢¤¹¤Ù¤Æ¤Î¥×¥é¥°¥¤¥ó¤òÌµ¸ú²½¤·¤¿¾õÂÖ¤Ë¤¹¤ë¡£"
+
+#: xpressme-backup.php:1331
+msgid "Backup now!"
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥× !"
+
+#: xpressme-backup.php:1334
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
+msgstr "Ãí°Õ: ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤¬<strong>½ñ¤­¹þ¤ßÉÔ²Ä</strong>¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£"
+
+#: xpressme-backup.php:1345
+msgid "Scheduled Backup"
+msgstr "Äê´ü¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:1352
+#, php-format
+msgid "Next Backup: %s"
+msgstr "¼¡²ó¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×: %s"
+
+#: xpressme-backup.php:1357
+#, php-format
+msgid "Last WP-Cron Daily Execution: %s"
+msgstr "ºÇ¸å¤Ë WP-Cron ¤ò¼Â¹Ô¤·¤¿Æü»þ: %s"
+
+#: xpressme-backup.php:1358
+#, php-format
+msgid "Next WP-Cron Daily Execution: %s"
+msgstr "¼¡¤Ë WP-Cron ¤ò¼Â¹Ô¤¹¤ëÆü»þ: %s"
+
+#: xpressme-backup.php:1363
+msgid "Schedule: "
+msgstr "¥¹¥±¥¸¥å¡¼¥ë:"
+
+#: xpressme-backup.php:1367
+msgid "None"
+msgstr "¤Ê¤·"
+
+#: xpressme-backup.php:1367
+msgid "Daily"
+msgstr "ËèÆü"
+
+#: xpressme-backup.php:1384
+msgid "Schedule backup"
+msgstr "Äê´ü¥Ð¥Ã¥¯¥¢¥Ã¥×"
+
+#: xpressme-backup.php:1392
+msgid "Tables to include in the scheduled backup:"
+msgstr "Äê´ü¥Ð¥Ã¥¯¥¢¥Ã¥×¤Ë´Þ¤á¤ë¥Æ¡¼¥Ö¥ë:"
+
+#: xpressme-backup.php:1427
+msgid "Never"
+msgstr "¤Ê¤·"
+
+#: xpressme-backup.php:1432
+#, php-format
+msgid "%s seconds"
+msgstr "%s ÉÃ"
+
+#: xpressme-backup.php:1465
+msgid "Once Weekly"
+msgstr "½µ 1 ²ó"
+
+#: xpressme-backup.php:1479
+#, php-format
+msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin.  Hence, this plugin is automatically disabled.  Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
+msgstr "¤ª»È¤¤¤Ë¤Ê¤Ã¤Æ¤¤¤ë WordPress ¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï %1s ¤Ç¤¹¡£¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤Ï WP-DB-Backup ¥×¥é¥°¥¤¥ó¤ò°ÂÁ´¤Ë»ÈÍÑ¤Ç¤­¤ë½ÅÍ×¤Ê¥»¥­¥å¥ê¥Æ¥£µ¡Ç½¤¬È÷¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó¡£¤½¤Î¤¿¤á¤³¤Î¥×¥é¥°¥¤¥ó¤Ï¼«Æ°Åª¤Ëµ¡Ç½¤òÄä»ß¤·¤Þ¤·¤¿¡£¤è¤êºÇ¿·¤Î <a href=\"%2s\">WordPress ¤Ø¤Î¥¢¥Ã¥×¥°¥ì¡¼¥É</a>¤ò¤´¸¡Æ¤¤¯¤À¤µ¤¤¡£"
+
+#: xpressme-backup.php:1498
+msgid "You are not allowed to perform backups."
+msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¤ò¹Ô¤¦¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: xpressme-backup.php:1513
+#, php-format
+msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s.  The attempt has been halted."
+msgstr "¤³¤Î¥µ¥¤¥È¤«¤é %1s ¤Ë¤¢¤ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ø¤ÎÌ¤¾µÇ§¤Î¥¢¥¯¥»¥¹¤¬¤¢¤Ã¤¿¤è¤¦¤Ç¤¹¡£¤³¤Î»î¤ß¤ÏÁË»ß¤µ¤ì¤Þ¤·¤¿¡£"
+
+#: xpressme-backup.php:1524
+msgid "Cheatin' uh ?"
+msgstr "´Ö°ã¤¨¤Þ¤·¤¿¤« ?"
+
+#~ msgid "user_role is corrected to upgrade."
+#~ msgstr "WordPress¥¢¥Ã¥×¥°¥ì¡¼¥ÉÍÑ¤Ë¥æ¡¼¥¶¸¢¸Â¥Ç¡¼¥¿¤ò½¤Àµ"
+#~ msgid "Backup Ditaile Options"
+#~ msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×¾ÜºÙÀßÄê"
+#~ msgid ""
+#~ "Your WordPress Langage %s, the WP-DB-Backup-to-UTF8 plugin is only for "
+#~ "EUC-JP. Hence, this plugin is automatically disabled."
+#~ msgstr ""
+#~ "¤ª»È¤¤¤Ë¤Ê¤Ã¤Æ¤¤¤ë WordPress ¤Î¸À¸ì¤Ï %s ¤Ç¤¹¡£WP-DB-Backup-to-UTF8¥×¥é¥°"
+#~ "¥¤¥ó¤Ï¡¢EUC-JPÀìÍÑ¤Ç¤¹¡£¤½¤Î¤¿¤á¤³¤Î¥×¥é¥°¥¤¥ó¤Ï¼«Æ°Åª¤Ëµ¡Ç½¤òÄä»ß¤·¤Þ¤·"
+#~ "¤¿¡£"
+#~ msgid "Backup(to UTF8)"
+#~ msgstr "¥Ð¥Ã¥¯¥¢¥Ã¥×(to UTF8)"
+#~ msgid ""
+#~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
+#~ "can not create the backup directory."
+#~ msgstr ""
+#~ "Ãí°Õ: wp-content ¥Ç¥£¥ì¥¯¥È¥ê¤¬<strong>½ñ¤­¹þ¤ßÉÔ²Ä</strong>¤Ë¤Ê¤Ã¤Æ¤¤¤Þ"
+#~ "¤¹ ! ¥Ð¥Ã¥¯¥¢¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+#~ msgid "Submit"
+#~ msgstr "ÊÝÂ¸¤¹¤ë"
+
Index: /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_UTF.po
===================================================================
--- /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_UTF.po	(revision 821)
+++ /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup-ja_UTF.po	(revision 821)
@@ -0,0 +1,475 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: XPressME-DB-BACKUP\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-01 09:38+0900\n"
+"PO-Revision-Date: \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-SourceCharset: utf-8\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: C:\\xampp\\htdocs\\cube_euc\\modules\\xpress2011\\wp-content\\plugins\\xpressme-backup\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: xpressme-backup.php:215
+msgid "Backup Complete!"
+msgstr "バックアップ完了 !"
+
+#: xpressme-backup.php:250
+msgid "http://codex.wordpress.org/WordPress_Backups"
+msgstr ""
+
+#: xpressme-backup.php:251
+#, php-format
+msgid "Click <a href=\"%s\" target=\"_blank\">here</a> to back up your database using the WordPress Database Backup plugin. <strong>Note:</strong> WordPress Database Backup does <em>not</em> back up your files, just your database."
+msgstr ""
+
+#: xpressme-backup.php:260
+msgid "Progress"
+msgstr "進行"
+
+#: xpressme-backup.php:262
+msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
+msgstr "バックアップに失敗するので、次の事はしないでください:"
+
+#: xpressme-backup.php:265
+msgid "Close this browser"
+msgstr "このブラウザを閉じる"
+
+#: xpressme-backup.php:266
+msgid "Reload this page"
+msgstr "このページを再読み込みする"
+
+#: xpressme-backup.php:267
+msgid "Click the Stop or Back buttons in your browser"
+msgstr "ブラウザの停止もしくは戻るボタンのクリック"
+
+#: xpressme-backup.php:269
+msgid "Progress:"
+msgstr "進行状況:"
+
+#: xpressme-backup.php:278
+msgid "Navigating away from this page will cause your backup to fail."
+msgstr "このページを閉じるとバックアップに失敗します。"
+
+#: xpressme-backup.php:315
+#, php-format
+msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
+msgstr "バックアップを完了しました。ダウンロードのために<a href=\\\"%s\\\">バックアップ</a>を準備中..."
+
+#: xpressme-backup.php:322
+#, php-format
+msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
+msgstr "バックアップを完了しました。メールで<a href=\\\"%s\\\">バックアップ</a>を送信中..."
+
+#: xpressme-backup.php:329
+#, php-format
+msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
+msgstr "バックアップを完了しました。<a href=\\\"%s\\\">こちらから</a>ダウンロードしてください。"
+
+#: xpressme-backup.php:389
+msgid "Creating backup file..."
+msgstr "バックアップファイルを作成中..."
+
+#: xpressme-backup.php:392
+#, php-format
+msgid "Finished backing up table \\\"%s\\\"."
+msgstr "テーブル \\\"%s\\\" のバックアップを完了。"
+
+#: xpressme-backup.php:394
+#, php-format
+msgid "Backing up table \\\"%s\\\"..."
+msgstr "テーブル \\\"%s\\\" をバックアップ中..."
+
+#: xpressme-backup.php:401
+#: xpressme-backup.php:905
+msgid "Could not open the backup file for writing!"
+msgstr "書き込み用のバックアップファイルを開けませんでした。"
+
+#: xpressme-backup.php:402
+msgid "The backup file could not be saved.  Please check the permissions for writing to your backup directory and try again."
+msgstr "バックアップファイルを保存できませんでした。バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
+
+#: xpressme-backup.php:407
+#: xpressme-backup.php:914
+msgid "WordPress MySQL database backup"
+msgstr "WordPress MySQL データベースバックアップ"
+
+#: xpressme-backup.php:409
+#: xpressme-backup.php:916
+#, php-format
+msgid "Generated: %s"
+msgstr "生成日時: %s"
+
+#: xpressme-backup.php:410
+#: xpressme-backup.php:917
+#, php-format
+msgid "Hostname: %s"
+msgstr "ホスト名: %s"
+
+#: xpressme-backup.php:411
+#: xpressme-backup.php:918
+#, php-format
+msgid "Database: %s"
+msgstr "データベース: %s"
+
+#: xpressme-backup.php:419
+#: xpressme-backup.php:931
+#, php-format
+msgid "Table: %s"
+msgstr "テーブル: %s"
+
+#: xpressme-backup.php:426
+msgid "The backup directory is not writeable!  Please check the permissions for writing to your backup directory and try again."
+msgstr "バックアップ用ディレクトリが書き込み可能になっていません ! バックアップ用ディレクトリのアクセス権が書き込み可能になっているか確認してもう一度試してください。"
+
+#: xpressme-backup.php:483
+msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
+msgstr "複数のチェックボックスの選択状態を切り替えるには <code>[SHIFT]</code> を押しながらクリックしてください"
+
+#: xpressme-backup.php:523
+msgid "Change"
+msgstr "変更"
+
+#: xpressme-backup.php:532
+msgid "Save"
+msgstr "保存"
+
+#: xpressme-backup.php:619
+#: xpressme-backup.php:628
+msgid "XPressME Backup"
+msgstr "XPressMEバックアップ"
+
+#: xpressme-backup.php:715
+#: xpressme-backup.php:718
+msgid "There was an error writing a line to the backup script:"
+msgstr "バックアップスクリプトへの書き込みエラーがありました:"
+
+#: xpressme-backup.php:750
+msgid "Subsequent errors have been omitted from this log."
+msgstr "このログから後続のエラーが削除されました。"
+
+#: xpressme-backup.php:784
+msgid "Error getting table details"
+msgstr "テーブル詳細の取得エラー"
+
+#: xpressme-backup.php:792
+#, php-format
+msgid "Delete any existing table %s"
+msgstr "既存テーブル %s の削除"
+
+#: xpressme-backup.php:801
+#, php-format
+msgid "Table structure of table %s"
+msgstr "テーブル %s のテーブル構造"
+
+#: xpressme-backup.php:807
+#, php-format
+msgid "Error with SHOW CREATE TABLE for %s."
+msgstr "%s のための SHOW CREATE TABLE に関するエラー。"
+
+#: xpressme-backup.php:814
+#, php-format
+msgid "Error getting table structure of %s"
+msgstr "%s のテーブル構造取得エラー"
+
+#: xpressme-backup.php:822
+#, php-format
+msgid "Data contents of table %s"
+msgstr "テーブル %s のデータコンテンツ"
+
+#: xpressme-backup.php:893
+#, php-format
+msgid "End of data contents of table %s"
+msgstr "テーブル %s のデータコンテンツの終わり"
+
+#: xpressme-backup.php:909
+msgid "The backup directory is not writeable!"
+msgstr "バックアップ用ディレクトリが書き込み可能になっていません !"
+
+#: xpressme-backup.php:1045
+#, php-format
+msgid "File not found:%s"
+msgstr "ファイルが見つかりませんでした: %s"
+
+#: xpressme-backup.php:1045
+msgid "Return to Backup"
+msgstr "バックアップに戻る"
+
+#: xpressme-backup.php:1054
+#, php-format
+msgid "File %s does not exist!"
+msgstr "ファイル %s はありません !"
+
+#: xpressme-backup.php:1061
+#, php-format
+msgid ""
+"Attached to this email is\n"
+"   %1s\n"
+"   Size:%2s kilobytes\n"
+msgstr ""
+"このメールに添付されたのは\n"
+"   %1s\n"
+"   サイズ: %2s キロバイト\n"
+
+#: xpressme-backup.php:1062
+msgid "Database Backup"
+msgstr "データベースのバックアップ"
+
+#: xpressme-backup.php:1065
+#: xpressme-backup.php:1112
+msgid "The following errors were reported:"
+msgstr "次のエラーが報告されました:"
+
+#: xpressme-backup.php:1070
+msgid "ERROR: The mail application has failed to deliver the backup."
+msgstr "エラー: メールアプリケーションがバックアップファイルの送信に失敗しました。"
+
+#: xpressme-backup.php:1087
+msgid "Backup Successful"
+msgstr "バックアップ成功"
+
+#: xpressme-backup.php:1091
+#, php-format
+msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
+msgstr "バックアップファイル: <a href=\"%1s\">%2s</a>のダウンロードはまもなく開始されます。"
+
+#: xpressme-backup.php:1099
+#, php-format
+msgid "Your backup has been emailed to %s"
+msgstr "バックアップは %s にメールで送信されました"
+
+#: xpressme-backup.php:1102
+msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
+msgstr "バックアップファイルがサーバーに保存されました。ダウンロードするには右クリックして「リンク先を名前をつけて保存」を選択してください"
+
+#: xpressme-backup.php:1103
+#, php-format
+msgid "%s bytes"
+msgstr "%s バイト"
+
+#: xpressme-backup.php:1139
+msgid "Scheduled Backup Options Saved!"
+msgstr "定期バックアップ設定が保存されました !"
+
+#: xpressme-backup.php:1166
+msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
+msgstr "注意: バックアップディレクトリが<strong>見つからず</strong>、作成もできませんでした。"
+
+#: xpressme-backup.php:1167
+#, php-format
+msgid "Using your FTP client, try to create the backup directory yourself: %s"
+msgstr "FTP クライアントを使用し、バックアップディレクトリ: %s を作成してみてください。"
+
+#: xpressme-backup.php:1171
+#: xpressme-backup.php:1182
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
+msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています ! バックアップファイルを作成できませんでした。"
+
+#: xpressme-backup.php:1172
+#, php-format
+msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
+msgstr "FTP クライアントを使用し、バックアップディレクトリの書込みパーミッションを %1$s または %2$s: %3$s にセットしてみてください。"
+
+#: xpressme-backup.php:1184
+msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
+msgstr "この問題は使用しているサーバーの <code>safe_mode</code> ファイルオーナー制限によって引き起こされているのかもしれません。これは WordPress のようなウェブアプリケーションが作成できるファイルを制限しています。"
+
+#: xpressme-backup.php:1186
+#, php-format
+msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
+msgstr "FTP クライアントを使用してバックアップディレクトリの %s を削除して作り直せば、この問題を解決できるかもしれません。"
+
+#: xpressme-backup.php:1197
+msgid "Backup"
+msgstr "バックアップ"
+
+#: xpressme-backup.php:1200
+msgid "Tables"
+msgstr "テーブル"
+
+#: xpressme-backup.php:1204
+msgid "These core WordPress tables will always be backed up:"
+msgstr "次の主要な WordPress テーブルは常にバックアップされます:"
+
+#: xpressme-backup.php:1210
+msgid "Exclude spam comments"
+msgstr "スパムコメントを除外"
+
+#: xpressme-backup.php:1213
+msgid "Exclude post revisions"
+msgstr "投稿リビジョンを除外"
+
+#: xpressme-backup.php:1224
+msgid "Select all"
+msgstr "すべて選択"
+
+#: xpressme-backup.php:1225
+msgid "Select none"
+msgstr "何も選択しない"
+
+#: xpressme-backup.php:1227
+msgid "You may choose to include any of the following tables:"
+msgstr "次のテーブルも選択して保存することができます:"
+
+#: xpressme-backup.php:1260
+msgid "Backup Options"
+msgstr "バックアップ設定"
+
+#: xpressme-backup.php:1261
+msgid "What to do with the backup file:"
+msgstr "バックアップファイルの扱い:"
+
+#: xpressme-backup.php:1265
+msgid "Save to server"
+msgstr "サーバーに保存"
+
+#: xpressme-backup.php:1270
+msgid "Download to your computer"
+msgstr "あなたのコンピュータにダウンロード"
+
+#: xpressme-backup.php:1274
+#: xpressme-backup.php:1382
+msgid "Email backup to:"
+msgstr "バックアップをメールで送信:"
+
+#: xpressme-backup.php:1278
+msgid "Data conversion option."
+msgstr "データ変換オプション"
+
+#: xpressme-backup.php:1285
+#: xpressme-backup.php:1288
+msgid "Converte EUC-JP to UTF-8"
+msgstr "EUC-JPからUTF-8への変換"
+
+#: xpressme-backup.php:1289
+msgid "The server used does not support the mb_convert_encoding() function."
+msgstr "お使いのサーバーはmb_convert_encoding()関数をサポートしていません。"
+
+#: xpressme-backup.php:1298
+msgid "Changes from the user roles name of WordPressME to the user roles name of Wordpress."
+msgstr "WordPressMEのユーザー権限名からWordPressのユーザ権限名に変更"
+
+#: xpressme-backup.php:1307
+msgid "Rename DB Prefix"
+msgstr "データベース・プレフィックスの変更"
+
+#: xpressme-backup.php:1309
+#: xpressme-backup.php:1318
+msgid "to"
+msgstr "から"
+
+#: xpressme-backup.php:1315
+msgid "Change URL"
+msgstr "URLの変更"
+
+#: xpressme-backup.php:1324
+msgid "In the backup data,all plug-ins are Deactivate state."
+msgstr "バックアップしたデータを、すべてのプラグインを無効化した状態にする。"
+
+#: xpressme-backup.php:1331
+msgid "Backup now!"
+msgstr "バックアップ !"
+
+#: xpressme-backup.php:1334
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
+msgstr "注意: バックアップディレクトリが<strong>書き込み不可</strong>になっています。"
+
+#: xpressme-backup.php:1345
+msgid "Scheduled Backup"
+msgstr "定期バックアップ"
+
+#: xpressme-backup.php:1352
+#, php-format
+msgid "Next Backup: %s"
+msgstr "次回のバックアップ: %s"
+
+#: xpressme-backup.php:1357
+#, php-format
+msgid "Last WP-Cron Daily Execution: %s"
+msgstr "最後に WP-Cron を実行した日時: %s"
+
+#: xpressme-backup.php:1358
+#, php-format
+msgid "Next WP-Cron Daily Execution: %s"
+msgstr "次に WP-Cron を実行する日時: %s"
+
+#: xpressme-backup.php:1363
+msgid "Schedule: "
+msgstr "スケジュール:"
+
+#: xpressme-backup.php:1367
+msgid "None"
+msgstr "なし"
+
+#: xpressme-backup.php:1367
+msgid "Daily"
+msgstr "毎日"
+
+#: xpressme-backup.php:1384
+msgid "Schedule backup"
+msgstr "定期バックアップ"
+
+#: xpressme-backup.php:1392
+msgid "Tables to include in the scheduled backup:"
+msgstr "定期バックアップに含めるテーブル:"
+
+#: xpressme-backup.php:1427
+msgid "Never"
+msgstr "なし"
+
+#: xpressme-backup.php:1432
+#, php-format
+msgid "%s seconds"
+msgstr "%s 秒"
+
+#: xpressme-backup.php:1465
+msgid "Once Weekly"
+msgstr "週 1 回"
+
+#: xpressme-backup.php:1479
+#, php-format
+msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin.  Hence, this plugin is automatically disabled.  Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
+msgstr "お使いになっている WordPress のバージョンは %1s です。このバージョンには WP-DB-Backup プラグインを安全に使用できる重要なセキュリティ機能が備わっていません。そのためこのプラグインは自動的に機能を停止しました。より最新の <a href=\"%2s\">WordPress へのアップグレード</a>をご検討ください。"
+
+#: xpressme-backup.php:1498
+msgid "You are not allowed to perform backups."
+msgstr "バックアップを行う権限がありません。"
+
+#: xpressme-backup.php:1513
+#, php-format
+msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s.  The attempt has been halted."
+msgstr "このサイトから %1s にあるデータベースへの未承認のアクセスがあったようです。この試みは阻止されました。"
+
+#: xpressme-backup.php:1524
+msgid "Cheatin' uh ?"
+msgstr "間違えましたか ?"
+
+#~ msgid "user_role is corrected to upgrade."
+#~ msgstr "WordPressアップグレード用にユーザ権限データを修正"
+#~ msgid "Backup Ditaile Options"
+#~ msgstr "バックアップ詳細設定"
+#~ msgid ""
+#~ "Your WordPress Langage %s, the WP-DB-Backup-to-UTF8 plugin is only for "
+#~ "EUC-JP. Hence, this plugin is automatically disabled."
+#~ msgstr ""
+#~ "お使いになっている WordPress の言語は %s です。WP-DB-Backup-to-UTF8プラグ"
+#~ "インは、EUC-JP専用です。そのためこのプラグインは自動的に機能を停止しまし"
+#~ "た。"
+#~ msgid "Backup(to UTF8)"
+#~ msgstr "バックアップ(to UTF8)"
+#~ msgid ""
+#~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
+#~ "can not create the backup directory."
+#~ msgstr ""
+#~ "注意: wp-content ディレクトリが<strong>書き込み不可</strong>になっていま"
+#~ "す ! バックアップディレクトリを作成できませんでした。"
+#~ msgid "Submit"
+#~ msgstr "保存する"
+
Index: /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.php
===================================================================
--- /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.php	(revision 821)
+++ /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.php	(revision 821)
@@ -0,0 +1,1672 @@
+<?php
+/*
+Plugin Name: XPressME Database Backup
+Plugin URI: http://ja.xpressme.info/
+Description: On-demand backup of your WordPress database.  Navigate to <a href="edit.php?page=xpressme-backup">Tools &rarr; Backup</a> to get started.
+Author: toemon 
+Author URI: http://ja.xpressme.info
+Version: 1.2
+
+Originally modified from Austin Matzko's WordPress Database Backup(http://www.ilfilosofo.com/blog/wp-db-backup) plugin.
+
+Copyright 2008  toemon 
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
+*/
+
+/**
+ * Change WP_BACKUP_DIR if you want to
+ * use a different backup location
+ */
+
+$rand = substr( md5( md5( DB_PASSWORD ) ), -5 );
+global $wpdbb_content_dir, $wpdbb_content_url, $wpdbb_plugin_dir;
+$wpdbb_content_dir = ( defined('WP_CONTENT_DIR') ) ? WP_CONTENT_DIR : ABSPATH . 'wp-content';
+$wpdbb_content_url = ( defined('WP_CONTENT_URL') ) ? WP_CONTENT_URL : get_option('siteurl') . '/wp-content';
+$wpdbb_plugin_dir = ( defined('WP_PLUGIN_DIR') ) ? WP_PLUGIN_DIR : $wpdbb_content_dir . '/plugins';
+
+if ( ! defined('WP_BACKUP_DIR') ) {
+	define('WP_BACKUP_DIR', $wpdbb_content_dir . '/backup-' . $rand . '/');
+}
+
+if ( ! defined('WP_BACKUP_URL') ) {
+	define('WP_BACKUP_URL', $wpdbb_content_url . '/backup-' . $rand . '/');
+}
+
+if ( ! defined('ROWS_PER_SEGMENT') ) {
+	define('ROWS_PER_SEGMENT', 100);
+}
+
+/** 
+ * Set MOD_EVASIVE_OVERRIDE to true 
+ * and increase MOD_EVASIVE_DELAY 
+ * if the backup stops prematurely.
+ */
+// define('MOD_EVASIVE_OVERRIDE', false);
+if ( ! defined('MOD_EVASIVE_DELAY') ) {
+	define('MOD_EVASIVE_DELAY', '500');
+}
+load_plugin_textdomain('xpressme-backup', 'wp-content/plugins/xpressme-backup');
+
+class wpdbBackup {
+
+	var $backup_complete = false;
+	var $backup_file = '';
+	var $backup_filename;
+	var $core_table_names = array();
+	var $errors = array();
+	var $basename;
+	var $page_url;
+	var $referer_check_key;
+	var $version = '2.1.5-alpha';
+
+	function gzip() {
+		return function_exists('gzopen');
+	}
+
+	function module_check() {
+		$mod_evasive = false;
+		if ( true === MOD_EVASIVE_OVERRIDE ) return true;
+		if ( false === MOD_EVASIVE_OVERRIDE ) return false;
+		if ( function_exists('apache_get_modules') ) 
+			foreach( (array) apache_get_modules() as $mod ) 
+				if ( false !== strpos($mod,'mod_evasive') || false !== strpos($mod,'mod_dosevasive') )
+					return true;
+		return false;
+	}
+
+	function wpdbBackup() {
+		global $table_prefix, $wpdb;
+		add_action('wp_ajax_save_backup_time', array(&$this, 'save_backup_time'));
+		add_action('init', array(&$this, 'init_textdomain'));
+		add_action('load-update-core.php', array(&$this, 'update_notice_action'));
+		add_action('wp_db_backup_cron', array(&$this, 'cron_backup'));
+		add_action('xpressme_cron_daily', array(&$this, 'xpressme_cron_daily'));
+		add_filter('cron_schedules', array(&$this, 'add_sched_options'));
+		add_filter('wp_db_b_schedule_choices', array(&$this, 'schedule_choices'));
+		
+		$table_prefix = ( isset( $table_prefix ) ) ? $table_prefix : $wpdb->prefix;
+		$datum = date("Ymd_B");
+		$this->backup_filename = DB_NAME . "_$table_prefix$datum.sql";
+		if ($this->gzip()) $this->backup_filename .= '.gz';
+
+		$possible_names = array(
+			'categories',
+			'comments',
+			'link2cat',
+			'linkcategories',
+			'links',
+			'options',
+			'post2cat',
+			'postmeta',
+			'posts',
+			'terms',
+			'term_taxonomy',
+			'term_relationships',
+			'users',
+		);
+		$xpress_possible_names = array(
+			'usermeta',
+			'd3forum_link',
+			'group_role',
+			'views',
+			'notify_reserve',
+		);
+
+		foreach( $possible_names as $name ) {
+			if ( isset( $wpdb->{$name} ) ) {
+				$this->core_table_names[] = $wpdb->{$name};
+			}
+		}
+		foreach( $xpress_possible_names as $name ) {
+				$this->core_table_names[] = $table_prefix . $name;
+		}
+	
+		$this->backup_dir = trailingslashit(apply_filters('wp_db_b_backup_dir', WP_BACKUP_DIR));
+		$this->basename = 'xpressme-backup';
+	
+		$this->referer_check_key = $this->basename . '-download_' . DB_NAME;
+		$query_args = array( 'page' => $this->basename );
+		if ( function_exists('wp_create_nonce') )
+			$query_args = array_merge( $query_args, array('_wpnonce' => wp_create_nonce($this->referer_check_key)) );
+		$base = ( function_exists('site_url') ) ? site_url('', 'admin') : get_option('siteurl');
+		$this->page_url = add_query_arg( $query_args, $base . '/wp-admin/edit.php');
+		if (isset($_POST['do_backup'])) {
+			$this->wp_secure('fatal');
+			check_admin_referer($this->referer_check_key);
+			$this->can_user_backup('main');
+			// save exclude prefs
+
+			$exc_revisions = (array) $_POST['exclude-revisions'];
+			$exc_spam = (array) $_POST['exclude-spam'];
+			update_option('xpressme_backup_excs', array('revisions' => $exc_revisions, 'spam' => $exc_spam));
+			
+			$do_euc_to_utf8 = $_POST['do_euc_to_utf8'];
+			$do_rename_prefix = $_POST['do_rename_prefix'];
+			$before_prefix = $_POST['before_prefix'];
+			$after_prefix = $_POST['after_prefix'];
+			$do_change_uri = $_POST['do_change_uri'];
+			$before_uri = $_POST['before_uri'];
+			$after_uri = $_POST['after_uri'];
+			$del_active_plugin = $_POST['del_active_plugin'];
+			$set_default_role = $_POST['set_default_role'];
+			
+			update_option('xpressme_backup_extras_option', 
+				array('do_euc_to_utf8' => $do_euc_to_utf8, 
+					'do_rename_prefix' => $do_rename_prefix, 
+					'before_prefix' => $before_prefix, 
+					'after_prefix' => $after_prefix, 
+					'do_change_uri' => $do_change_uri, 
+					'before_uri' => $before_uri, 
+					'after_uri' => $after_uri,
+					'del_active_plugin' => $del_active_plugin,
+					'set_default_role' => $set_default_role
+				)
+			);
+				
+			switch($_POST['do_backup']) {
+			case 'backup':
+				add_action('init', array(&$this, 'perform_backup'));
+				break;
+			case 'fragments':
+				add_action('admin_menu', array(&$this, 'fragment_menu'));
+				break;				
+			}
+		} elseif (isset($_GET['fragment'] )) {
+			$this->can_user_backup('frame');
+			add_action('init', array(&$this, 'init'));
+		} elseif (isset($_GET['backup'] )) {
+			$this->can_user_backup();
+			add_action('init', array(&$this, 'init'));
+		} else {
+			add_action('admin_menu', array(&$this, 'admin_menu'));
+		}
+	}
+	
+	function init() {
+		$this->can_user_backup();
+		if (isset($_GET['backup'])) {
+			$via = isset($_GET['via']) ? $_GET['via'] : 'http';
+			
+			$this->backup_file = $_GET['backup'];
+			$this->validate_file($this->backup_file);
+
+			switch($via) {
+			case 'smtp':
+			case 'email':
+				$success = $this->deliver_backup($this->backup_file, 'smtp', $_GET['recipient'], 'frame');
+				$this->error_display( 'frame' );
+				if ( $success ) {
+					echo '
+						<!-- ' . $via . ' -->
+						<script type="text/javascript"><!--\\
+					';
+					echo '
+						alert("' . __('Backup Complete!','xpressme-backup') . '");
+						window.onbeforeunload = null; 
+						</script>
+					';
+				}
+				break;
+			default:
+				$this->deliver_backup($this->backup_file, $via);
+				$this->error_display( 'frame' );
+			}
+			die();
+		}
+		if (isset($_GET['fragment'] )) {
+			list($table, $segment, $filename) = explode(':', $_GET['fragment']);
+			$this->validate_file($filename);
+			$this->backup_fragment($table, $segment, $filename);
+		}
+
+		die();
+	}
+
+	function init_textdomain() {
+		load_plugin_textdomain('xpressme-backup', str_replace(ABSPATH, '', dirname(__FILE__)), dirname(plugin_basename(__FILE__)));
+	}
+
+	/*
+	 * Add a link to back up your database when doing a core upgrade 
+	 */
+	function update_notice_action() {
+		if ( 'upgrade-core' == $_REQUEST['action'] ) :
+			ob_start(array(&$this, 'update_notice'));
+			add_action('admin_footer', create_function('', 'ob_end_flush();'));
+		endif;
+	}
+		function update_notice($text = '') {
+			$pattern = '#(<a href\="' . __('http://codex.wordpress.org/WordPress_Backups') . '">.*?</p>)#';
+			$replace = '$1' . "\n<p>" . sprintf(__('Click <a href="%s" target="_blank">here</a> to back up your database using the WordPress Database Backup plugin. <strong>Note:</strong> WordPress Database Backup does <em>not</em> back up your files, just your database.', 'xpressme-backup'), 'tools.php?page=xpressme-backup') . "</p>\n"; 
+			$text = preg_replace($pattern, $replace, $text);
+			return $text;
+		}
+
+	function build_backup_script() {
+		global $table_prefix, $wpdb;
+	
+		echo "<div class='wrap'>";
+		echo 	'<fieldset class="options"><legend>' . __('Progress','xpressme-backup') . '</legend>
+			<p><strong>' .
+				__('DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:','xpressme-backup').
+			'</strong></p>
+			<ol>
+				<li>'.__('Close this browser','xpressme-backup').'</li>
+				<li>'.__('Reload this page','xpressme-backup').'</li>
+				<li>'.__('Click the Stop or Back buttons in your browser','xpressme-backup').'</li>
+			</ol>
+			<p><strong>' . __('Progress:','xpressme-backup') . '</strong></p>
+			<div id="meterbox" style="height:11px;width:80%;padding:3px;border:1px solid #659fff;"><div id="meter" style="height:11px;background-color:#659fff;width:0%;text-align:center;font-size:6pt;">&nbsp;</div></div>
+			<div id="progress_message"></div>
+			<div id="errors"></div>
+			</fieldset>
+			<iframe id="backuploader" src="about:blank" style="visibility:hidden;border:none;height:1em;width:1px;"></iframe>
+			<script type="text/javascript">
+			//<![CDATA[
+			window.onbeforeunload = function() {
+				return "' . __('Navigating away from this page will cause your backup to fail.', 'xpressme-backup') . '";
+			}
+			function setMeter(pct) {
+				var meter = document.getElementById("meter");
+				meter.style.width = pct + "%";
+				meter.innerHTML = Math.floor(pct) + "%";
+			}
+			function setProgress(str) {
+				var progress = document.getElementById("progress_message");
+				progress.innerHTML = str;
+			}
+			function addError(str) {
+				var errors = document.getElementById("errors");
+				errors.innerHTML = errors.innerHTML + str + "<br />";
+			}
+
+			function backup(table, segment) {
+				var fram = document.getElementById("backuploader");
+				fram.src = "' . $this->page_url . '&fragment=" + table + ":" + segment + ":' . $this->backup_filename . ':";
+			}
+			
+			var curStep = 0;
+			
+			function nextStep() {
+				backupStep(curStep);
+				curStep++;
+			}
+			
+			function finishBackup() {
+				var fram = document.getElementById("backuploader");				
+				setMeter(100);
+		';
+
+		$download_uri = add_query_arg('backup', $this->backup_filename, $this->page_url);
+		switch($_POST['deliver']) {
+		case 'http':
+			echo '
+				setProgress("' . sprintf(__("Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download...",'xpressme-backup'), $download_uri) . '");
+				window.onbeforeunload = null; 
+				fram.src = "' . $download_uri . '";
+			';
+			break;
+		case 'smtp':
+			echo '
+				setProgress("' . sprintf(__("Backup complete, sending <a href=\\\"%s\\\">backup</a> via email...",'xpressme-backup'), $download_uri) . '");
+				window.onbeforeunload = null; 
+				fram.src = "' . $download_uri . '&via=email&recipient=' . $_POST['backup_recipient'] . '";
+			';
+			break;
+		default:
+			echo '
+				setProgress("' . sprintf(__("Backup complete, download <a href=\\\"%s\\\">here</a>.",'xpressme-backup'), $download_uri) . '");
+				window.onbeforeunload = null; 
+			';
+		}
+		
+		echo '
+			}
+			
+			function backupStep(step) {
+				switch(step) {
+				case 0: backup("", 0); break;
+		';
+		
+		$also_backup = array();
+		if (isset($_POST['other_tables'])) {
+			$also_backup = $_POST['other_tables'];
+		} else {
+			$also_backup = array();
+		}
+		$core_tables = $_POST['core_tables'];
+		$tables = array_merge($core_tables, $also_backup);
+		$step_count = 1;
+		foreach ($tables as $table) {
+			$rec_count = $wpdb->get_var("SELECT count(*) FROM {$table}");
+			$rec_segments = ceil($rec_count / ROWS_PER_SEGMENT);
+			$table_count = 0;
+			if ( $this->module_check() ) {
+				$delay = "setTimeout('";
+				$delay_time = "', " . (int) MOD_EVASIVE_DELAY . ")";
+			}
+			else { $delay = $delay_time = ''; }
+			do {
+				echo "case {$step_count}: {$delay}backup(\"{$table}\", {$table_count}){$delay_time}; break;\n";
+				$step_count++;
+				$table_count++;
+			} while($table_count < $rec_segments);
+			echo "case {$step_count}: {$delay}backup(\"{$table}\", -1){$delay_time}; break;\n";
+			$step_count++;
+		}
+		echo "case {$step_count}: finishBackup(); break;";
+		
+		echo '
+				}
+				if(step != 0) setMeter(100 * step / ' . $step_count . ');
+			}
+
+			nextStep();
+			// ]]>
+			</script>
+	</div>
+		';
+		$this->backup_menu();
+	}
+
+	function backup_fragment($table, $segment, $filename) {
+		global $table_prefix, $wpdb;
+			
+		echo "$table:$segment:$filename";
+		
+		if($table == '') {
+			$msg = __('Creating backup file...','xpressme-backup');
+		} else {
+			if($segment == -1) {
+				$msg = sprintf(__('Finished backing up table \\"%s\\".','xpressme-backup'), $table);
+			} else {
+				$msg = sprintf(__('Backing up table \\"%s\\"...','xpressme-backup'), $table);
+			}
+		}
+		
+		if (is_writable($this->backup_dir)) {
+			$this->fp = $this->open($this->backup_dir . $filename, 'a');
+			if(!$this->fp) {
+				$this->error(__('Could not open the backup file for writing!','xpressme-backup'));
+				$this->error(array('loc' => 'frame', 'kind' => 'fatal', 'msg' =>  __('The backup file could not be saved.  Please check the permissions for writing to your backup directory and try again.','xpressme-backup')));
+			}
+			else {
+				if($table == '') {		
+					//Begin new backup of MySql
+					$this->stow("# " . __('WordPress MySQL database backup','xpressme-backup') . "\n");
+					$this->stow("#\n");
+					$this->stow("# " . sprintf(__('Generated: %s','xpressme-backup'),date("l j. F Y H:i T")) . "\n");
+					$this->stow("# " . sprintf(__('Hostname: %s','xpressme-backup'),DB_HOST) . "\n");
+					$this->stow("# " . sprintf(__('Database: %s','xpressme-backup'),$this->backquote(DB_NAME)) . "\n");
+					$this->stow("# --------------------------------------------------------\n");
+				} else {
+					if($segment == 0) {
+						// Increase script execution time-limit to 15 min for every table.
+						if ( !ini_get('safe_mode')) @set_time_limit(15*60);
+						// Create the SQL statements
+						$this->stow("# --------------------------------------------------------\n");
+						$this->stow("# " . sprintf(__('Table: %s','xpressme-backup'),$this->backquote($table)) . "\n");
+						$this->stow("# --------------------------------------------------------\n");
+					}			
+					$this->backup_table($table, $segment);
+				}
+			}
+		} else {
+			$this->error(array('kind' => 'fatal', 'loc' => 'frame', 'msg' => __('The backup directory is not writeable!  Please check the permissions for writing to your backup directory and try again.','xpressme-backup')));
+		}
+
+		if($this->fp) $this->close($this->fp);
+		
+		$this->error_display('frame');
+
+		echo '<script type="text/javascript"><!--//
+		var msg = "' . $msg . '";
+		window.parent.setProgress(msg);
+		window.parent.nextStep();
+		//--></script>
+		';
+		die();
+	}
+
+	function perform_backup() {
+		// are we backing up any other tables?
+		$also_backup = array();
+		if (isset($_POST['other_tables']))
+			$also_backup = $_POST['other_tables'];
+		$core_tables = $_POST['core_tables'];
+		$this->backup_file = $this->db_backup($core_tables, $also_backup);
+		if (false !== $this->backup_file) {
+			if ('smtp' == $_POST['deliver']) {
+				$this->deliver_backup($this->backup_file, $_POST['deliver'], $_POST['backup_recipient'], 'main');
+				wp_redirect($this->page_url);
+			} elseif ('http' == $_POST['deliver']) {
+				$download_uri = add_query_arg('backup',$this->backup_file,$this->page_url);
+				wp_redirect($download_uri); 
+				exit;
+			}
+			// we do this to say we're done.
+			$this->backup_complete = true;
+		}
+	}
+
+	function admin_header() {
+		?>
+		<script type="text/javascript">
+		//<![CDATA[
+		if ( 'undefined' != typeof addLoadEvent ) {
+			addLoadEvent(function() {
+				var t = {'extra-tables-list':{name: 'other_tables[]'}, 'include-tables-list':{name: 'xpressme_cron_backup_tables[]'}};
+
+				for ( var k in t ) {
+					t[k].s = null;
+					var d = document.getElementById(k);
+					if ( ! d )
+						continue;
+					var ul = d.getElementsByTagName('ul').item(0);
+					if ( ul ) {
+						var lis = ul.getElementsByTagName('li');
+						if ( 3 > lis.length )
+							return;
+						var text = document.createElement('p');
+						text.className = 'instructions';
+						text.innerHTML = '<?php _e('Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes', 'xpressme-backup'); ?>';
+						ul.parentNode.insertBefore(text, ul);
+					}
+					t[k].p = d.getElementsByTagName("input");
+					for(var i=0; i < t[k].p.length; i++)
+						if(t[k].name == t[k].p[i].getAttribute('name')) {
+							t[k].p[i].id = k + '-table-' + i;
+							t[k].p[i].onkeyup = t[k].p[i].onclick = function(e) {
+								e = e ? e : event;
+								if ( 16  == e.keyCode ) 
+									return;
+								var match = /([\w-]*)-table-(\d*)/.exec(this.id);
+								var listname = match[1];
+								var that = match[2];
+								if ( null === t[listname].s )
+									t[listname].s = that;
+								else if ( e.shiftKey ) {
+									var start = Math.min(that, t[listname].s) + 1;
+									var end = Math.max(that, t[listname].s);
+									for( var j=start; j < end; j++)
+										t[listname].p[j].checked = t[listname].p[j].checked ? false : true;
+									t[listname].s = null;
+								}
+							}
+						}
+				}
+
+				<?php if ( function_exists('wp_schedule_event') ) : // needs to be at least WP 2.1 for ajax ?>
+				if ( 'undefined' == typeof XMLHttpRequest ) 
+					var xml = new ActiveXObject( navigator.userAgent.indexOf('MSIE 5') >= 0 ? 'Microsoft.XMLHTTP' : 'Msxml2.XMLHTTP' );
+				else
+					var xml = new XMLHttpRequest();
+
+				var initTimeChange = function() {
+					var timeWrap = document.getElementById('backup-time-wrap');
+					var backupTime = document.getElementById('next-backup-time');
+					if ( !! timeWrap && !! backupTime ) {
+						var span = document.createElement('span');
+						span.className = 'submit';
+						span.id = 'change-wrap';
+						span.innerHTML = '<input type="submit" id="change-backup-time" name="change-backup-time" value="<?php _e('Change','xpressme-backup'); ?>" />';
+						timeWrap.appendChild(span);
+						backupTime.ondblclick = function(e) { span.parentNode.removeChild(span); clickTime(e, backupTime); };
+						span.onclick = function(e) { span.parentNode.removeChild(span); clickTime(e, backupTime); };
+					}
+				}
+
+				var clickTime = function(e, backupTime) {
+					var tText = backupTime.innerHTML;
+					backupTime.innerHTML = '<input type="text" value="' + tText + '" name="backup-time-text" id="backup-time-text" /> <span class="submit"><input type="submit" name="save-backup-time" id="save-backup-time" value="<?php _e('Save', 'xpressme-backup'); ?>" /></span>';
+					backupTime.ondblclick = null;
+					var mainText = document.getElementById('backup-time-text');
+					mainText.focus();
+					var saveTButton = document.getElementById('save-backup-time');
+					if ( !! saveTButton )
+						saveTButton.onclick = function(e) { saveTime(backupTime, mainText); return false; };
+					if ( !! mainText )
+						mainText.onkeydown = function(e) { 
+							e = e || window.event;
+							if ( 13 == e.keyCode ) {
+								saveTime(backupTime, mainText);
+								return false;
+							}
+						}
+				}
+
+				var saveTime = function(backupTime, mainText) {
+					var tVal = mainText.value;
+
+					xml.open('POST', 'admin-ajax.php', true);
+					xml.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
+					if ( xml.overrideMimeType )
+						xml.setRequestHeader('Connection', 'close');
+					xml.send('action=save_backup_time&_wpnonce=<?php echo wp_create_nonce($this->referer_check_key); ?>&backup-time='+tVal);
+					xml.onreadystatechange = function() {
+						if ( 4 == xml.readyState && '0' != xml.responseText ) {
+							backupTime.innerHTML = xml.responseText;
+							initTimeChange();
+						}
+					}
+				}
+
+				initTimeChange();
+				<?php endif; // wp_schedule_event exists ?>
+			});
+		}
+		//]]>
+		</script>
+		<style type="text/css">
+			.xpressme-backup-updated {
+				margin-top: 1em;
+			}
+
+			fieldset.options {
+				border: 1px solid;
+				margin-top: 1em;
+				padding: 1em;
+			}
+				fieldset.options div.tables-list {
+					float: left;
+					padding: 1em;
+				}
+
+				fieldset.options input {
+				}
+
+				fieldset.options legend {
+					font-size: larger;
+					font-weight: bold;
+					margin-bottom: .5em;
+					padding: 1em;
+				}
+		
+				fieldset.options .instructions {
+					font-size: smaller;
+				}
+
+				fieldset.options ul {
+					list-style-type: none;
+				}
+					fieldset.options li {
+						text-align: left;
+					}
+
+				fieldset.options .submit {
+					border-top: none;
+				}
+		</style>
+		<?php 
+	}
+
+	function admin_load() {
+		add_action('admin_head', array(&$this, 'admin_header'));
+	}
+
+	function admin_menu() {
+		$_page_hook = add_management_page(__('XPressME Backup','xpressme-backup'), __('XPressME Backup','xpressme-backup'), 'import', $this->basename, array(&$this, 'backup_menu'));
+		add_action('load-' . $_page_hook, array(&$this, 'admin_load'));
+		if ( function_exists('add_contextual_help') ) {
+			$text = $this->help_menu();
+			add_contextual_help($_page_hook, $text);
+		}
+	}
+
+	function fragment_menu() {
+		$page_hook = add_management_page(__('XPressME Backup','xpressme-backup'), __('XPressME Backup','xpressme-backup'), 'import', $this->basename, array(&$this, 'build_backup_script'));
+		add_action('load-' . $page_hook, array(&$this, 'admin_load'));
+	}
+
+	/** 
+	 * Add WP-DB-Backup-specific help options to the 2.7 =< WP contextual help menu
+	 * return string The text of the help menu.
+	 */
+	function help_menu() {
+		$text = '';
+//		$text = "\n<a href=\"http://wordpress.org/extend/plugins/xpressme-backup/faq/\" target=\"_blank\">" . __('FAQ', 'xpressme-backup') . '</a>';
+//		$text .= "\n<br />\n<a href=\"http://www.ilfilosofo.com/forum/forum/2\" target=\"_blank\">" . __('WP-DB-Backup Support Forum', 'xpressme-backup') . '</a>';
+		return $text;
+	}
+
+	function save_backup_time() {
+		if ( $this->can_user_backup() ) {
+			// try to get a time from the input string
+			$time = strtotime(strval($_POST['backup-time']));
+			if ( ! empty( $time ) && time() < $time ) {
+				wp_clear_scheduled_hook( 'wp_db_backup_cron' ); // unschedule previous
+				$scheds = (array) wp_get_schedules();
+				$name = get_option('xpressme_cron_backup_schedule');
+				if ( 0 != $time ) {
+					wp_schedule_event($time, $name, 'wp_db_backup_cron');
+					echo gmdate(get_option('date_format') . ' ' . get_option('time_format'), $time + (get_option('gmt_offset') * 3600));
+					exit;
+				}
+			}
+		} else {
+			die(0);
+		}
+	}
+
+	/**
+	 * Better addslashes for SQL queries.
+	 * Taken from phpMyAdmin.
+	 */
+	function sql_addslashes($a_string = '', $is_like = false) {
+		if ($is_like) $a_string = str_replace('\\', '\\\\\\\\', $a_string);
+		else $a_string = str_replace('\\', '\\\\', $a_string);
+		return str_replace('\'', '\\\'', $a_string);
+	} 
+
+	/**
+	 * Add backquotes to tables and db-names in
+	 * SQL queries. Taken from phpMyAdmin.
+	 */
+	function backquote($a_name) {
+		if (!empty($a_name) && $a_name != '*') {
+			if (is_array($a_name)) {
+				$result = array();
+				reset($a_name);
+				while(list($key, $val) = each($a_name)) 
+					$result[$key] = '`' . $val . '`';
+				return $result;
+			} else {
+				return '`' . $a_name . '`';
+			}
+		} else {
+			return $a_name;
+		}
+	} 
+
+	function open($filename = '', $mode = 'w') {
+		if ('' == $filename) return false;
+		if ($this->gzip()) 
+			$fp = @gzopen($filename, $mode);
+		else
+			$fp = @fopen($filename, $mode);
+		return $fp;
+	}
+
+	function close($fp) {
+		if ($this->gzip()) gzclose($fp);
+		else fclose($fp);
+	}
+
+	/**
+	 * Write to the backup file
+	 * @param string $query_line the line to write
+	 * @return null
+	 */
+	function stow($query_line) {
+		$query_line = $this->extras_filter($query_line);
+		if ($this->gzip()) {
+			if(! @gzwrite($this->fp, $query_line))
+				$this->error(__('There was an error writing a line to the backup script:','xpressme-backup') . '  ' . $query_line . '  ' . $php_errormsg);
+		} else {
+			if(false === @fwrite($this->fp, $query_line))
+				$this->error(__('There was an error writing a line to the backup script:','xpressme-backup') . '  ' . $query_line . '  ' . $php_errormsg);
+		}
+	}
+	
+	/**
+	 * Logs any error messages
+	 * @param array $args
+	 * @return bool
+	 */
+	function error($args = array()) {
+		if ( is_string( $args ) ) 
+			$args = array('msg' => $args);
+		$args = array_merge( array('loc' => 'main', 'kind' => 'warn', 'msg' => ''), $args);
+		$this->errors[$args['kind']][] = $args['msg'];
+		if ( 'fatal' == $args['kind'] || 'frame' == $args['loc'])
+			$this->error_display($args['loc']);
+		return true;
+	}
+
+	/**
+	 * Displays error messages 
+	 * @param array $errs
+	 * @param string $loc
+	 * @return string
+	 */
+	function error_display($loc = 'main', $echo = true) {
+		$errs = $this->errors;
+		unset( $this->errors );
+		if ( ! count($errs) ) return;
+		$msg = '';
+		$err_list = array_slice(array_merge( (array) $errs['fatal'], (array) $errs['warn']), 0, 10);
+		if ( 10 == count( $err_list ) )
+			$err_list[9] = __('Subsequent errors have been omitted from this log.','xpressme-backup');
+		$wrap = ( 'frame' == $loc ) ? "<script type=\"text/javascript\">\n var msgList = ''; \n %1\$s \n if ( msgList ) alert(msgList); \n </script>" : '%1$s';
+		$line = ( 'frame' == $loc ) ? 
+			"try{ window.parent.addError('%1\$s'); } catch(e) { msgList += ' %1\$s';}\n" :
+			"%1\$s<br />\n";
+		foreach( (array) $err_list as $err )
+			$msg .= sprintf($line,str_replace(array("\n","\r"), '', addslashes($err)));
+		$msg = sprintf($wrap,$msg);
+		if ( count($errs['fatal'] ) ) {
+			if ( function_exists('wp_die') && 'frame' != $loc ) wp_die(stripslashes($msg));
+			else die($msg);
+		}
+		else {
+			if ( $echo ) echo $msg;
+			else return $msg;
+		}
+	}
+
+	/**
+	 * Taken partially from phpMyAdmin and partially from
+	 * Alain Wolf, Zurich - Switzerland
+	 * Website: http://restkultur.ch/personal/wolf/scripts/db_backup/
+	
+	 * Modified by Scott Merrill (http://www.skippy.net/) 
+	 * to use the WordPress $wpdb object
+	 * @param string $table
+	 * @param string $segment
+	 * @return void
+	 */
+	function backup_table($table, $segment = 'none') {
+		global $wpdb;
+
+		$table_structure = $wpdb->get_results("DESCRIBE $table");
+		if (! $table_structure) {
+			$this->error(__('Error getting table details','xpressme-backup') . ": $table");
+			return false;
+		}
+	
+		if(($segment == 'none') || ($segment == 0)) {
+			// Add SQL statement to drop existing table
+			$this->stow("\n\n");
+			$this->stow("#\n");
+			$this->stow("# " . sprintf(__('Delete any existing table %s','xpressme-backup'),$this->backquote($table)) . "\n");
+			$this->stow("#\n");
+			$this->stow("\n");
+			$this->stow("DROP TABLE IF EXISTS " . $this->backquote($table) . ";\n");
+			
+			// Table structure
+			// Comment in SQL-file
+			$this->stow("\n\n");
+			$this->stow("#\n");
+			$this->stow("# " . sprintf(__('Table structure of table %s','xpressme-backup'),$this->backquote($table)) . "\n");
+			$this->stow("#\n");
+			$this->stow("\n");
+			
+			$create_table = $wpdb->get_results("SHOW CREATE TABLE $table", ARRAY_N);
+			if (false === $create_table) {
+				$err_msg = sprintf(__('Error with SHOW CREATE TABLE for %s.','xpressme-backup'), $table);
+				$this->error($err_msg);
+				$this->stow("#\n# $err_msg\n#\n");
+			}
+			$this->stow($create_table[0][1] . ' ;');
+			
+			if (false === $table_structure) {
+				$err_msg = sprintf(__('Error getting table structure of %s','xpressme-backup'), $table);
+				$this->error($err_msg);
+				$this->stow("#\n# $err_msg\n#\n");
+			}
+		
+			// Comment in SQL-file
+			$this->stow("\n\n");
+			$this->stow("#\n");
+			$this->stow('# ' . sprintf(__('Data contents of table %s','xpressme-backup'),$this->backquote($table)) . "\n");
+			$this->stow("#\n");
+		}
+		
+		if(($segment == 'none') || ($segment >= 0)) {
+			$defs = array();
+			$ints = array();
+			foreach ($table_structure as $struct) {
+				if ( (0 === strpos($struct->Type, 'tinyint')) ||
+					(0 === strpos(strtolower($struct->Type), 'smallint')) ||
+					(0 === strpos(strtolower($struct->Type), 'mediumint')) ||
+					(0 === strpos(strtolower($struct->Type), 'int')) ||
+					(0 === strpos(strtolower($struct->Type), 'bigint')) ) {
+						$defs[strtolower($struct->Field)] = ( null === $struct->Default ) ? 'NULL' : $struct->Default;
+						$ints[strtolower($struct->Field)] = "1";
+				}
+			}
+			
+			
+			// Batch by $row_inc
+			
+			if($segment == 'none') {
+				$row_start = 0;
+				$row_inc = ROWS_PER_SEGMENT;
+			} else {
+				$row_start = $segment * ROWS_PER_SEGMENT;
+				$row_inc = ROWS_PER_SEGMENT;
+			}
+			
+			do {	
+				// don't include extra stuff, if so requested
+				$excs = (array) get_option('xpressme_backup_excs');
+
+				$where = '';
+				if ( is_array($excs['spam'] ) && in_array($table, $excs['spam']) ) {
+					$where = ' WHERE comment_approved != "spam"';
+				} elseif ( is_array($excs['revisions'] ) && in_array($table, $excs['revisions']) ) {
+					$where = ' WHERE post_type != "revision"';
+				}
+				
+				if ( !ini_get('safe_mode')) @set_time_limit(15*60);
+				$table_data = $wpdb->get_results("SELECT * FROM $table $where LIMIT {$row_start}, {$row_inc}", ARRAY_A);
+
+				$entries = 'INSERT INTO ' . $this->backquote($table) . ' VALUES (';	
+				//    \x08\\x09, not required
+				$search = array("\x00", "\x0a", "\x0d", "\x1a");
+				$replace = array('\0', '\n', '\r', '\Z');
+				if($table_data) {
+					foreach ($table_data as $row) {
+						$values = array();
+						foreach ($row as $key => $value) {
+							if ($ints[strtolower($key)]) {
+								// make sure there are no blank spots in the insert syntax,
+								// yet try to avoid quotation marks around integers
+								$value = ( null === $value || '' === $value) ? $defs[strtolower($key)] : $value;
+								$values[] = ( '' === $value ) ? "''" : $value;
+							} else {
+								$values[] = "'" . str_replace($search, $replace, $this->sql_addslashes($value)) . "'";
+							}
+						}
+						$this->stow(" \n" . $entries . implode(', ', $values) . ');');
+					}
+					$row_start += $row_inc;
+				}
+			} while((count($table_data) > 0) and ($segment=='none'));
+		}
+		
+		if(($segment == 'none') || ($segment < 0)) {
+			// Create footer/closing comment in SQL-file
+			$this->stow("\n");
+			$this->stow("#\n");
+			$this->stow("# " . sprintf(__('End of data contents of table %s','xpressme-backup'),$this->backquote($table)) . "\n");
+			$this->stow("# --------------------------------------------------------\n");
+			$this->stow("\n");
+		}
+	} // end backup_table()
+	
+	function db_backup($core_tables, $other_tables) {
+		global $table_prefix, $wpdb;
+		
+		if (is_writable($this->backup_dir)) {
+			$this->fp = $this->open($this->backup_dir . $this->backup_filename);
+			if(!$this->fp) {
+				$this->error(__('Could not open the backup file for writing!','xpressme-backup'));
+				return false;
+			}
+		} else {
+			$this->error(__('The backup directory is not writeable!','xpressme-backup'));
+			return false;
+		}
+		
+		//Begin new backup of MySql
+		$this->stow("# " . __('WordPress MySQL database backup','xpressme-backup') . "\n");
+		$this->stow("#\n");
+		$this->stow("# " . sprintf(__('Generated: %s','xpressme-backup'),date("l j. F Y H:i T")) . "\n");
+		$this->stow("# " . sprintf(__('Hostname: %s','xpressme-backup'),DB_HOST) . "\n");
+		$this->stow("# " . sprintf(__('Database: %s','xpressme-backup'),$this->backquote(DB_NAME)) . "\n");
+		$this->stow("# --------------------------------------------------------\n");
+		
+			if ( (is_array($other_tables)) && (count($other_tables) > 0) )
+			$tables = array_merge($core_tables, $other_tables);
+		else
+			$tables = $core_tables;
+		
+		foreach ($tables as $table) {
+			// Increase script execution time-limit to 15 min for every table.
+			if ( !ini_get('safe_mode')) @set_time_limit(15*60);
+			// Create the SQL statements
+			$this->stow("# --------------------------------------------------------\n");
+			$this->stow("# " . sprintf(__('Table: %s','xpressme-backup'),$this->backquote($table)) . "\n");
+			$this->stow("# --------------------------------------------------------\n");
+			$this->backup_table($table);
+		}
+				
+		$this->close($this->fp);
+		
+		if (count($this->errors)) {
+			return false;
+		} else {
+			return $this->backup_filename;
+		}
+		
+	} //wp_db_backup
+
+	/**
+	 * Sends the backed-up file via email
+	 * @param string $to
+	 * @param string $subject
+	 * @param string $message
+	 * @return bool
+	 */
+	function send_mail( $to, $subject, $message, $diskfile) {
+		global $phpmailer;
+
+		$filename = basename($diskfile);
+
+		extract( apply_filters( 'wp_mail', compact( 'to', 'subject', 'message' ) ) );
+
+		if ( !is_object( $phpmailer ) || ( strtolower(get_class( $phpmailer )) != 'phpmailer' ) ) {
+			if ( file_exists( ABSPATH . WPINC . '/class-phpmailer.php' ) )
+				require_once ABSPATH . WPINC . '/class-phpmailer.php';
+			if ( file_exists( ABSPATH . WPINC . '/class-smtp.php' ) )
+				require_once ABSPATH . WPINC . '/class-smtp.php';
+			if ( class_exists( 'PHPMailer') )
+				$phpmailer = new PHPMailer();
+		}
+
+		// try to use phpmailer directly (WP 2.2+)
+		if ( is_object( $phpmailer ) && ( strtolower(get_class( $phpmailer )) == 'phpmailer' ) ) {
+			
+			// Get the site domain and get rid of www.
+			$sitename = strtolower( $_SERVER['SERVER_NAME'] );
+			if ( substr( $sitename, 0, 4 ) == 'www.' ) {
+				$sitename = substr( $sitename, 4 );
+			}
+			$from_email = 'wordpress@' . $sitename;
+			$from_name = 'WordPress';
+
+			// Empty out the values that may be set
+			$phpmailer->ClearAddresses();
+			$phpmailer->ClearAllRecipients();
+			$phpmailer->ClearAttachments();
+			$phpmailer->ClearBCCs();
+			$phpmailer->ClearCCs();
+			$phpmailer->ClearCustomHeaders();
+			$phpmailer->ClearReplyTos();
+
+			$phpmailer->AddAddress( $to );
+			$phpmailer->AddAttachment($diskfile, $filename);
+			$phpmailer->Body = $message;
+			$phpmailer->CharSet = apply_filters( 'wp_mail_charset', get_bloginfo('charset') );
+			$phpmailer->From = apply_filters( 'wp_mail_from', $from_email );
+			$phpmailer->FromName = apply_filters( 'wp_mail_from_name', $from_name );
+			$phpmailer->IsMail();
+			$phpmailer->Subject = $subject;
+
+			do_action_ref_array( 'phpmailer_init', array( &$phpmailer ) );
+			
+			$result = @$phpmailer->Send();
+
+		// old-style: build the headers directly
+		} else {
+			$randomish = md5(time());
+			$boundary = "==WPBACKUP-$randomish";
+			$fp = fopen($diskfile,"rb");
+			$file = fread($fp,filesize($diskfile)); 
+			$this->close($fp);
+			
+			$data = chunk_split(base64_encode($file));
+			
+			$headers .= "MIME-Version: 1.0\n";
+			$headers = 'From: wordpress@' . preg_replace('#^www\.#', '', strtolower($_SERVER['SERVER_NAME'])) . "\n";
+			$headers .= "Content-Type: multipart/mixed; boundary=\"$boundary\"\n";
+		
+			// Add a multipart boundary above the plain message
+			$message = "This is a multi-part message in MIME format.\n\n" .
+		        	"--{$boundary}\n" .
+				"Content-Type: text/plain; charset=\"" . get_bloginfo('charset') . "\"\n" .
+				"Content-Transfer-Encoding: 7bit\n\n" .
+				$message . "\n\n";
+
+			// Add file attachment to the message
+			$message .= "--{$boundary}\n" .
+				"Content-Type: application/octet-stream;\n" .
+				" name=\"{$filename}\"\n" .
+				"Content-Disposition: attachment;\n" .
+				" filename=\"{$filename}\"\n" .
+				"Content-Transfer-Encoding: base64\n\n" .
+				$data . "\n\n" .
+				"--{$boundary}--\n";
+			
+			$result = @wp_mail($to, $subject, $message, $headers);
+		}
+		return $result;
+
+	}
+
+	function deliver_backup($filename = '', $delivery = 'http', $recipient = '', $location = 'main') {
+		if ('' == $filename) { return false; }
+		
+		$diskfile = $this->backup_dir . $filename;
+		if ('http' == $delivery) {
+			if (! file_exists($diskfile)) 
+				$this->error(array('kind' => 'fatal', 'msg' => sprintf(__('File not found:%s','xpressme-backup'), "&nbsp;<strong>$filename</strong><br />") . '<br /><a href="' . $this->page_url . '">' . __('Return to Backup','xpressme-backup') . '</a>'));
+			header('Content-Description: File Transfer');
+			header('Content-Type: application/octet-stream');
+			header('Content-Length: ' . filesize($diskfile));
+			header("Content-Disposition: attachment; filename=$filename");
+			$success = readfile($diskfile);
+			unlink($diskfile);
+		} elseif ('smtp' == $delivery) {
+			if (! file_exists($diskfile)) {
+				$msg = sprintf(__('File %s does not exist!','xpressme-backup'), $diskfile);
+				$this->error($msg);
+				return false;
+			}
+			if (! is_email($recipient)) {
+				$recipient = get_option('admin_email');
+			}
+			$message = sprintf(__("Attached to this email is\n   %1s\n   Size:%2s kilobytes\n",'xpressme-backup'), $filename, round(filesize($diskfile)/1024));
+			$success = $this->send_mail($recipient, get_bloginfo('name') . ' ' . __('Database Backup','xpressme-backup'), $message, $diskfile);
+
+			if ( false === $success ) {
+				$msg = __('The following errors were reported:','xpressme-backup') . "\n ";
+				if ( function_exists('error_get_last') ) {
+					$err = error_get_last();
+					$msg .= $err['message'];
+				} else {
+					$msg .= __('ERROR: The mail application has failed to deliver the backup.','xpressme-backup'); 
+				}
+				$this->error(array('kind' => 'fatal', 'loc' => $location, 'msg' => $msg));
+			} else {
+				unlink($diskfile);
+			}
+		}
+		return $success;
+	}
+	
+	function backup_menu() {
+		global $table_prefix, $wpdb,$wp_version;
+		$feedback = '';
+		$whoops = false;
+		
+		// did we just do a backup?  If so, let's report the status
+		if ( $this->backup_complete ) {
+			$feedback = '<div class="updated xpressme-backup-updated"><p>' . __('Backup Successful','xpressme-backup') . '!';
+			$file = $this->backup_file;
+			switch($_POST['deliver']) {
+			case 'http':
+				$feedback .= '<br />' . sprintf(__('Your backup file: <a href="%1s">%2s</a> should begin downloading shortly.','xpressme-backup'), WP_BACKUP_URL . "{$this->backup_file}", $this->backup_file);
+				break;
+			case 'smtp':
+				if (! is_email($_POST['backup_recipient'])) {
+					$feedback .= get_option('admin_email');
+				} else {
+					$feedback .= $_POST['backup_recipient'];
+				}
+				$feedback = '<br />' . sprintf(__('Your backup has been emailed to %s','xpressme-backup'), $feedback);
+				break;
+			case 'none':
+				$feedback .= '<br />' . __('Your backup file has been saved on the server. If you would like to download it now, right click and select "Save As"','xpressme-backup');
+				$feedback .= ':<br /> <a href="' . WP_BACKUP_URL . "$file\">$file</a> : " . sprintf(__('%s bytes','xpressme-backup'), filesize($this->backup_dir . $file));
+			}
+			$feedback .= '</p></div>';
+		}
+	
+		// security check
+		$this->wp_secure();  
+
+		if (count($this->errors)) {
+			$feedback .= '<div class="updated xpressme-backup-updated error"><p><strong>' . __('The following errors were reported:','xpressme-backup') . '</strong></p>';
+			$feedback .= '<p>' . $this->error_display( 'main', false ) . '</p>';
+			$feedback .= "</p></div>";
+		}
+
+		// did we just save options for wp-cron?
+		if ( (function_exists('wp_schedule_event') || function_exists('xpressme_cron_init')) 
+			&& isset($_POST['xpressme_cron_backup_options']) ) :
+			do_action('wp_db_b_update_cron_options');
+			if ( function_exists('wp_schedule_event') ) {
+				wp_clear_scheduled_hook( 'wp_db_backup_cron' ); // unschedule previous
+				$scheds = (array) wp_get_schedules();
+				$name = strval($_POST['xpressme_cron_schedule']);
+				$interval = ( isset($scheds[$name]['interval']) ) ? 
+					(int) $scheds[$name]['interval'] : 0;
+				update_option('xpressme_cron_backup_schedule', $name, false);
+				if ( 0 !== $interval ) {
+					wp_schedule_event(time() + $interval, $name, 'wp_db_backup_cron');
+				}
+			}
+			else {
+				update_option('xpressme_cron_backup_schedule', intval($_POST['cron_schedule']), false);
+			}
+			update_option('xpressme_cron_backup_tables', $_POST['xpressme_cron_backup_tables']);
+			if (is_email($_POST['cron_backup_recipient'])) {
+				update_option('xpressme_cron_backup_recipient', $_POST['cron_backup_recipient'], false);
+			}
+			$feedback .= '<div class="updated xpressme-backup-updated"><p>' . __('Scheduled Backup Options Saved!','xpressme-backup') . '</p></div>';
+		endif;
+		
+		$other_tables = array();
+		$also_backup = array();
+	
+		// Get complete db table list	
+		$all_tables = $wpdb->get_results("SHOW TABLES", ARRAY_N);
+		$all_tables = array_map(create_function('$a', 'return $a[0];'), $all_tables);
+		// Get list of WP tables that actually exist in this DB (for 1.6 compat!)
+		$wp_backup_default_tables = array_intersect($all_tables, $this->core_table_names);
+		// Get list of non-WP tables
+		$other_tables = array_diff($all_tables, $wp_backup_default_tables);
+		
+		if ('' != $feedback)
+			echo $feedback;
+
+		if ( ! $this->wp_secure() ) 	
+			return;
+
+		// Give the new dirs the same perms as wp-content.
+//		$stat = stat( ABSPATH . 'wp-content' );
+//		$dir_perms = $stat['mode'] & 0000777; // Get the permission bits.
+		$dir_perms = '0777';
+
+		// the file doesn't exist and can't create it
+		if ( ! file_exists($this->backup_dir) && ! @mkdir($this->backup_dir) ) {
+			?><div class="updated xpressme-backup-updated error"><p><?php _e('WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it.','xpressme-backup'); ?></p>
+			<p><?php printf(__('Using your FTP client, try to create the backup directory yourself: %s', 'xpressme-backup'), '<code>' . $this->backup_dir . '</code>'); ?></p></div><?php
+			$whoops = true;
+		// not writable due to write permissions
+		} elseif ( !is_writable($this->backup_dir) && ! @chmod($this->backup_dir, $dir_perms) ) {
+			?><div class="updated xpressme-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files.','xpressme-backup'); ?></p>
+			<p><?php printf(__('Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s', 'xpressme-backup'), '<code>777</code>', '<code>a+w</code>', '<code>' . $this->backup_dir . '</code>'); ?>
+			</p></div><?php 
+			$whoops = true;
+		} else {
+			$this->fp = $this->open($this->backup_dir . 'test' );
+			if( $this->fp ) { 
+				$this->close($this->fp);
+				@unlink($this->backup_dir . 'test' );
+			// the directory is not writable probably due to safe mode
+			} else {
+				?><div class="updated xpressme-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files.','xpressme-backup'); ?></p><?php 
+				if( ini_get('safe_mode') ){
+					?><p><?php _e('This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create.', 'xpressme-backup'); ?></p><?php 
+				}
+				?><?php printf(__('You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s', 'xpressme-backup'), '<code>' . $this->backup_dir . '</code>');
+				?></div><?php 
+				$whoops = true;
+			}
+		}
+
+		
+
+		if ( !file_exists($this->backup_dir . 'index.php') )
+			@ touch($this->backup_dir . 'index.php');
+		?><div class='wrap'>
+		<h2><?php _e('Backup','xpressme-backup') ?></h2>
+		<form method="post" action="">
+		<?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
+		<fieldset class="options"><legend><?php _e('Tables','xpressme-backup') ?></legend>
+		<table align="center" cellspacing="5" cellpadding="5">
+		<tr><td width="50%" align="left" class="alternate" valign="top">
+		<div class="tables-list core-tables alternate">
+		<h4><?php _e('These core WordPress tables will always be backed up:','xpressme-backup') ?></h4><ul><?php
+		$excs = (array) get_option('xpressme_backup_excs');
+
+		foreach ($wp_backup_default_tables as $table) {
+			if ( $table == $wpdb->comments ) {
+				$checked = ( isset($excs['spam']) && is_array($excs['spam'] ) && in_array($table, $excs['spam']) ) ? ' checked=\'checked\'' : '';
+				echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code> <span class='instructions'> <input type='checkbox' name='exclude-spam[]' value='$table' $checked /> " . __('Exclude spam comments', 'xpressme-backup') . '</span></li>';
+			} elseif ( function_exists('wp_get_post_revisions') && $table == $wpdb->posts ) {
+					$checked = ( isset($excs['revisions']) && is_array($excs['revisions'] ) && in_array($table, $excs['revisions']) ) ? ' checked=\'checked\'' : '';
+				echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code> <span class='instructions'> <input type='checkbox' name='exclude-revisions[]' value='$table' $checked /> " . __('Exclude post revisions', 'xpressme-backup') . '</span></li>';
+			} else {
+				echo "<li><input type='hidden' name='core_tables[]' value='$table' /><code>$table</code></li>";
+			}
+		}
+		?></ul>
+		</div>
+		</td><td width="50%" align="left" valign="top">
+		<div class="tables-list extra-tables" id="extra-tables-list">
+		<?php 
+		if (count($other_tables) > 0) { 
+			$select_all = __('Select all','xpressme-backup');
+			$select_none = __('Select none','xpressme-backup');
+			?>
+			<h4><?php _e('You may choose to include any of the following tables:','xpressme-backup'); ?></h4>
+			<ul>
+			<script type="text/javascript">
+			//<![CDATA[
+				var wpdbBackup = function() {};
+				(function(b){
+					var n = function(c) {
+						var p = document.getElementsByTagName("input");
+						for(var i=0;i<p.length;i++)
+							if('other_tables[]' == p[i].getAttribute('name'))
+								p[i].checked = c;
+					}
+					b.a = function() { n(true) }
+					b.n = function() { n(false) }
+
+					document.write('<p><a href="javascript:void(0)" onclick="wpdbBackup.a()"><?php echo $select_all ?></a> / <a href="javascript:void(0)" onclick="wpdbBackup.n()"><?php echo $select_none ?></a></p>');
+				})(wpdbBackup)
+			//]]>
+			</script>
+	
+			<?php
+			foreach ($other_tables as $table) {
+				?>
+				<li><label><input type="checkbox" name="other_tables[]" value="<?php echo $table; ?>" /> <code><?php echo $table; ?></code></label>
+				<?php 
+			}
+			?></ul><?php 
+		}
+		?></div>
+		</td></tr></table>
+		</fieldset>
+		
+		<fieldset class="options">
+			<legend><?php _e('Backup Options','xpressme-backup'); ?></legend>
+			<p><?php  _e('What to do with the backup file:','xpressme-backup'); ?></p>
+			<ul>
+			<li><label for="do_save">
+				<input type="radio" id="do_save" name="deliver" value="none" style="border:none;" />
+				<?php _e('Save to server','xpressme-backup'); 
+				echo " (<code>" . $this->backup_dir . "</code>)"; ?>
+			</label></li>
+			<li><label for="do_download">
+				<input type="radio" checked="checked" id="do_download" name="deliver" value="http" style="border:none;" />
+				<?php _e('Download to your computer','xpressme-backup'); ?>
+			</label></li>
+			<li><label for="do_email">
+				<input type="radio" name="deliver" id="do_email" value="smtp" style="border:none;" />
+				<?php _e('Email backup to:','xpressme-backup'); ?>
+				<input type="text" name="backup_recipient" size="20" value="<?php echo get_option('admin_email'); ?>" />
+			</label></li>
+			</ul>
+			<p><?php  _e('Data conversion option.','xpressme-backup'); ?></p>
+			<ul>
+			<?php
+			$extras_option = (array) get_option('xpressme_backup_extras_option');
+			if(WPLANG == 'ja_EUC'){
+				echo '<li><label for="do_euc_to_utf8">';
+				if($this->is_mbstring()){
+					if ($extras_option['do_euc_to_utf8']) $checked = 'checked'; else $checked = '';
+					echo	'<input type="checkbox" name="do_euc_to_utf8" id="do_euc_to_utf8" value="1" ' .$checked .' />';
+					echo __('Converte EUC-JP to UTF-8','xpressme-backup');
+				} else {
+					echo	'<input type="checkbox" name="do_euc_to_utf8" id="do_euc_to_utf8" value="0" disabled="1"/>';
+					echo __('Converte EUC-JP to UTF-8','xpressme-backup');
+					echo ' (<span style="color:#ff0000">' . __('The server used does not support the mb_convert_encoding() function.','xpressme-backup') . '</span>)';
+				}
+				echo '</label></li>';
+			} else {
+				echo '<input type="hidden" name="do_euc_to_utf8" id="do_euc_to_utf8" value="0" />';
+			}
+			if($wp_version =='2.0.11-ME'){
+				echo '<li><label for="set_default_role">';
+				if ($extras_option['set_default_role']) $checked = 'checked'; else $checked = '';
+				echo '<input type="checkbox" name="set_default_role" id="set_default_role" value="1" '.$checked . ' />';
+				echo __('Changes from the user roles name of WordPressME to the user roles name of Wordpress.','xpressme-backup');
+				echo '</label></li>';
+			} else {
+				echo '<input type="hidden" name="set_default_role" id="set_default_role" value="0" />';
+			}
+			
+			echo '<li><label for="rename_prefix">';
+				if ($extras_option['do_rename_prefix']) $checked = 'checked'; else $checked = '';
+				echo '<input type="checkbox" name="do_rename_prefix" id="do_rename_prefix" value="1" '. $checked . ' />';
+				echo __('Rename DB Prefix','xpressme-backup');
+				echo '<input type="text" name="before_prefix" size="20" value="'.$table_prefix . '" readonly />';
+				echo __('to','xpressme-backup');
+				if (empty($extras_option['after_prefix'])){
+					echo '<input type="text" name="after_prefix" size="20" value="'. $table_prefix . '" />';
+				} else {
+					echo '<input type="text" name="after_prefix" size="20" value="'. $extras_option['after_prefix'] . '" />';
+				}
+			echo '</label></li>';
+			echo '<li><label for="change_uri">';
+				if ($extras_option['do_change_uri']) $checked = 'checked'; else $checked = '';
+				echo '<input type="checkbox" name="do_change_uri" id="do_change_uri" value="1" '. $checked . ' />';
+				$site_uri = get_option('siteurl');
+				echo __('Change URL','xpressme-backup');
+				echo '<div style="padding-left: 20px;">';
+				echo '<input type="text" name="before_uri" size="50" value="' . $site_uri . '" readonly /><br />';
+				echo __('to','xpressme-backup') . '<br />';
+				echo '<input type="text" name="after_uri" size="50" value="'. $extras_option['after_uri'] . '" />';
+				echo '</div>';
+			echo '</label></li>';
+			echo '<li><label for="del_active_plugin">';
+				if ($extras_option['del_active_plugin']) $checked = 'checked'; else $checked = '';
+
+				echo '<input type="checkbox" name="del_active_plugin" id="del_active_plugin" value="1" '. $checked . ' />';
+				echo __('In the backup data,all plug-ins are Deactivate state.','xpressme-backup');
+			echo '</label></li>';
+			?>
+			</ul>
+
+			<?php if ( ! $whoops ) : ?>
+			<input type="hidden" name="do_backup" id="do_backup" value="backup" /> 
+			<p class="submit">
+				<input type="submit" name="submit" onclick="document.getElementById('do_backup').value='fragments';" value="<?php _e('Backup now!','xpressme-backup'); ?>" />
+			</p>
+			<?php else : ?>
+				<div class="updated xpressme-backup-updated error"><p><?php _e('WARNING: Your backup directory is <strong>NOT</strong> writable!','xpressme-backup'); ?></p></div>
+			<?php endif; // ! whoops ?>
+		</fieldset>
+		<?php do_action('wp_db_b_backup_opts'); ?>
+		</form>
+		
+		<?php
+		// this stuff only displays if some sort of wp-cron is available 
+		$cron = ( function_exists('wp_schedule_event') ) ? true : false; // wp-cron in WP 2.1+
+		$cron_old = ( function_exists('xpressme_cron_init') && ! $cron ) ? true : false; // wp-cron plugin by Skippy
+		if ( $cron_old || $cron ) :
+			echo '<fieldset class="options"><legend>' . __('Scheduled Backup','xpressme-backup') . '</legend>';
+			$datetime = get_option('date_format') . ' ' . get_option('time_format');
+			if ( $cron ) :
+				$next_cron = wp_next_scheduled('wp_db_backup_cron');
+				if ( ! empty( $next_cron ) ) :
+					?>
+					<p id="backup-time-wrap">
+					<?php printf(__('Next Backup: %s','xpressme-backup'), '<span id="next-backup-time">' . gmdate($datetime, $next_cron + (get_option('gmt_offset') * 3600)) . '</span>'); ?>
+					</p>
+					<?php 
+				endif;
+			elseif ( $cron_old ) :
+				?><p><?php printf(__('Last WP-Cron Daily Execution: %s','xpressme-backup'), gmdate($datetime, get_option('xpressme_cron_daily_lastrun') + (get_option('gmt_offset') * 3600))); ?><br /><?php 
+				printf(__('Next WP-Cron Daily Execution: %s','xpressme-backup'), gmdate($datetime, (get_option('xpressme_cron_daily_lastrun') + (get_option('gmt_offset') * 3600) + 86400))); ?></p><?php 
+			endif;
+			?><form method="post" action="">
+			<?php if ( function_exists('wp_nonce_field') ) wp_nonce_field($this->referer_check_key); ?>
+			<div class="tables-list">
+			<h4><?php _e('Schedule: ','xpressme-backup'); ?></h4>
+			<?php 
+			if ( $cron_old ) :
+				$xpressme_cron_backup_schedule = get_option('xpressme_cron_backup_schedule');
+				$schedule = array(0 => __('None','xpressme-backup'), 1 => __('Daily','xpressme-backup'));
+				foreach ($schedule as $value => $name) {
+					echo ' <input type="radio" style="border:none;" name="cron_schedule"';
+					if ($xpressme_cron_backup_schedule == $value) {
+						echo ' checked="checked" ';
+					}
+					echo 'value="' . $value . '" /> ' . $name;
+				}
+			elseif ( $cron ) :
+				echo apply_filters('wp_db_b_schedule_choices', wp_get_schedules() );
+			endif;
+			$cron_recipient = get_option('xpressme_cron_backup_recipient');
+			if (! is_email($cron_recipient)) {
+				$cron_recipient = get_option('admin_email');
+			}
+			$cron_recipient_input = '<p><label for="cron_backup_recipient">' . __('Email backup to:','xpressme-backup') . ' <input type="text" name="cron_backup_recipient" id="cron_backup_recipient" size="20" value="' . $cron_recipient . '" /></label></p>';
+			echo apply_filters('wp_db_b_cron_recipient_input', $cron_recipient_input);
+			echo '<p class="submit"><input type="submit" name="submit" value="' . __('Schedule backup','xpressme-backup') . '" /></p>';
+			echo '</div>';
+			$cron_tables = get_option('xpressme_cron_backup_tables');
+			if (! is_array($cron_tables)) {
+				$cron_tables = array();
+			}
+			if (count($other_tables) > 0) {
+				echo '<div class="tables-list alternate" id="include-tables-list">';
+				echo '<h4>' . __('Tables to include in the scheduled backup:','xpressme-backup') . '</h4><ul>';
+				foreach ($other_tables as $table) {
+					echo '<li><input type="checkbox" ';
+					if (in_array($table, $cron_tables)) {
+						echo 'checked="checked" ';
+					}
+					echo "name='xpressme_cron_backup_tables[]' value='{$table}' /> <code>{$table}</code></li>";
+				}
+				echo '</ul></div>';
+			}
+			echo '<input type="hidden" name="xpressme_cron_backup_options" value="SET" /></form>';
+			echo '</fieldset>';
+		endif; // end of wp_cron (legacy) section
+		
+		echo '</div><!-- .wrap -->';
+		
+	} // end wp_backup_menu()
+
+	function get_sched() {
+		$options = array_keys( (array) wp_get_schedules() );
+		$freq = get_option('xpressme_cron_backup_schedule'); 
+		$freq = ( in_array( $freq , $options ) ) ? $freq : 'never';
+		return $freq;
+	}
+
+	function schedule_choices($schedule) { // create the cron menu based on the schedule
+		$xpressme_cron_backup_schedule = $this->get_sched();
+		$next_cron = wp_next_scheduled('wp_db_backup_cron');
+		$xpressme_cron_backup_schedule = ( empty( $next_cron ) ) ? 'never' : $xpressme_cron_backup_schedule;
+		$sort = array();
+		foreach ( (array) $schedule as $key => $value ) $sort[$key] = $value['interval'];
+		asort( $sort );
+		$schedule_sorted = array();
+		foreach ( (array) $sort as $key => $value ) $schedule_sorted[$key] = $schedule[$key];
+		$menu = '<ul>';
+		$schedule = array_merge( array( 'never' => array( 'interval' => 0, 'display' => __('Never','xpressme-backup') ) ),
+			(array) $schedule_sorted );
+		foreach ( $schedule as $name => $settings) {
+			$interval = (int) $settings['interval'];
+			if ( 0 == $interval && ! 'never' == $name ) continue;
+			$display = ( ! '' == $settings['display'] ) ? $settings['display'] : sprintf(__('%s seconds','xpressme-backup'),$interval);
+			$menu .= "<li><input type='radio' name='xpressme_cron_schedule' style='border:none;' ";
+			if ($xpressme_cron_backup_schedule == $name) {
+				$menu .= " checked='checked' ";
+			}
+			$menu .= "value='$name' /> $display</li>";
+		}
+		$menu .= '</ul>';
+		return $menu;
+	} // end schedule_choices()
+	
+	function wp_cron_daily() { // for legacy cron plugin
+		$schedule = intval(get_option('xpressme_cron_backup_schedule'));
+		// If scheduled backup is disabled
+		if (0 == $schedule)
+		        return;
+		else return $this->cron_backup();
+	} 
+
+	function cron_backup() {
+		global $table_prefix, $wpdb;
+		$all_tables = $wpdb->get_results("SHOW TABLES", ARRAY_N);
+		$all_tables = array_map(create_function('$a', 'return $a[0];'), $all_tables);
+		$core_tables = array_intersect($all_tables, $this->core_table_names);
+		$other_tables = get_option('xpressme_cron_backup_tables');
+		$recipient = get_option('xpressme_cron_backup_recipient');
+		$backup_file = $this->db_backup($core_tables, $other_tables);
+		if (false !== $backup_file) 
+			return $this->deliver_backup($backup_file, 'smtp', $recipient, 'main');
+		else return false;
+	}
+
+	function add_sched_options($sched) {
+		$sched['weekly'] = array('interval' => 604800, 'display' => __('Once Weekly','xpressme-backup'));
+		return $sched;
+	}
+
+	/**
+	 * Checks that WordPress has sufficient security measures 
+	 * @param string $kind
+	 * @return bool
+	 */
+	function wp_secure($kind = 'warn', $loc = 'main') {
+		global $wp_version;
+		
+		if ( function_exists('wp_verify_nonce') ) return true;
+		else {
+			$this->error(array('kind' => $kind, 'loc' => $loc, 'msg' => sprintf(__('Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin.  Hence, this plugin is automatically disabled.  Please consider <a href="%2s">upgrading WordPress</a> to a more recent version.','xpressme-backup'),$wp_version,'http://wordpress.org/download/')));
+			return false;
+		}
+		
+	}
+
+	/**
+	 * Checks that the user has sufficient permission to backup
+	 * @param string $loc
+	 * @return bool
+	 */
+	function can_user_backup($loc = 'main') {
+		$can = false;
+		// make sure WPMU users are site admins, not ordinary admins
+		if ( function_exists('is_site_admin') && ! is_site_admin() )
+			return false;
+		if ( ( $this->wp_secure('fatal', $loc) ) && current_user_can('import') )
+			$can = $this->verify_nonce($_REQUEST['_wpnonce'], $this->referer_check_key, $loc);
+		if ( false == $can ) 
+			$this->error(array('loc' => $loc, 'kind' => 'fatal', 'msg' => __('You are not allowed to perform backups.','xpressme-backup')));
+		return $can;
+	}
+
+	/**
+	 * Verify that the nonce is legitimate
+	 * @param string $rec 	the nonce received
+	 * @param string $nonce	what the nonce should be
+	 * @param string $loc 	the location of the check
+	 * @return bool
+	 */
+	function verify_nonce($rec = '', $nonce = 'X', $loc = 'main') {
+		if ( wp_verify_nonce($rec, $nonce) )
+			return true;
+		else 
+			$this->error(array('loc' => $loc, 'kind' => 'fatal', 'msg' => sprintf(__('There appears to be an unauthorized attempt from this site to access your database located at %1s.  The attempt has been halted.','xpressme-backup'),get_option('home'))));
+	}
+
+	/**
+	 * Check whether a file to be downloaded is  
+	 * surreptitiously trying to download a non-backup file
+	 * @param string $file
+	 * @return null
+	 */ 
+	function validate_file($file) {
+		if ( (false !== strpos($file, '..')) || (false !== strpos($file, './')) || (':' == substr($file, 1, 1)) )
+			$this->error(array('kind' => 'fatal', 'loc' => 'frame', 'msg' => __("Cheatin' uh ?",'xpressme-backup')));
+	}
+	
+	function extras_filter($query_line){
+		$extras_option = get_option('xpressme_backup_extras_option');
+		
+		// Change EUC to UTF-8
+		if ($extras_option['do_euc_to_utf8'] && $this->is_mbstring()){
+			$query_line = mb_convert_encoding(mb_convert_encoding($query_line,"sjis-win","EUC-JP"),"UTF-8","sjis-win");
+			$tmp = preg_replace('/DEFAULT\s*CHARSET\s*=\s*ujis/','DEFAULT CHARSET=utf8',$query_line);
+			if (empty($buf)) $query_line = $tmp;
+			if (preg_match_all('/s:([0-9]+):"(.*?)";/',$query_line,$matchs)){
+				$i_count = count($matchs[0]);
+				for($i=0; $i < $i_count ;$i++){
+					$org = $matchs[0][$i];
+					$num = $matchs[1][$i];
+					$str = $matchs[2][$i];
+					$str =  str_replace('\r\n','\n',$str);
+
+					$volm = strlen(bin2hex($str)) / 2;
+					
+					if ($num != $volm){
+						$org =  str_replace('\\','\\\\',$org);
+						$org =  str_replace('/','\\/',$org);
+						$org =  str_replace('(','\\(',$org);
+						$org =  str_replace(')','\\)',$org);
+						$org =  str_replace('?','\\?',$org);
+						$org =  str_replace('+','\\+',$org);
+						$org =  str_replace('*','\\*',$org);
+						$org =  str_replace('[','\\[',$org);
+						$org =  str_replace(']','\\]',$org);					
+						$org =  str_replace('$','\\$',$org);
+						$org =  str_replace('{','\\{',$org);					
+						$org =  str_replace('}','\\}',$org);
+						$org =  str_replace('^','\\^',$org);
+						$org =  str_replace('.','\\.',$org);
+				
+						$src = '/' . $org . '/';
+						$dist = 's:'. $volm . ':"' . $str . '";';
+						if(preg_match($src,$query_line)){
+							$query_line = preg_replace($src,$dist,$query_line);
+						}
+					}
+				}
+			}
+			$seach = "/'blog_charset'.*'EUC-JP'/";
+			$src = "/'EUC-JP'/";
+			$dist = "'UTF-8'";
+			if(preg_match($seach,$query_line)){
+				$query_line = preg_replace($src,$dist,$query_line);
+			}
+		}
+		
+		// Change Data Prefix
+		if ($extras_option['do_rename_prefix']){
+			if (!empty($extras_option['before_prefix']) && !empty($extras_option['after_prefix'])){
+				$src = '/' . $extras_option['before_prefix'] . '/';
+				$dist = $extras_option['after_prefix'];
+				if(preg_match($src,$query_line)){
+					$query_line = preg_replace($src,$dist,$query_line);
+				}
+			}
+		}
+		
+		// Change User_Role_Name(WordPressME to Wordpress)
+		if ($extras_option['set_default_role']){
+			$src = '/' . "(INSERT INTO `.+_options` VALUES \([0-9]+, [0-9]+, '.+_user_roles', 'Y', [0-9]+, ')(a:.+}}})('.+\);)" . '/';
+			if(preg_match($src,$query_line)){
+				$patterns = array();
+				$patterns[0] = '/s:[0-9]+:"[^"]+ - \(Administrator\)"/';
+				$patterns[1] = '/s:[0-9]+:"[^"]+ - \(Editor\)"/';
+				$patterns[2] = '/s:[0-9]+:"[^"]+ - \(Author\)"/';
+				$patterns[3] = '/s:[0-9]+:"[^"]+ - \(Contributor\)"/';
+				$patterns[4] = '/s:[0-9]+:"[^"]+ - \(Subscriber\)"/';
+				$replacements = array();
+				$replacements[0] = 's:13:"Administrator"';
+				$replacements[1] = 's:6:"Editor"';
+				$replacements[2] = 's:6:"Author"';
+				$replacements[3] = 's:11:"Contributor"';
+				$replacements[4] = 's:10:"Subscriber"';
+				$ans = preg_replace($patterns,$replacements,$query_line);
+				if (!empty($ans)) $query_line = $ans;
+			}
+		}
+		
+		// Change URI Clear
+		if ($extras_option['do_change_uri']){
+			if (!empty($extras_option['before_uri']) && !empty($extras_option['after_uri'])){
+				$org =  $extras_option['before_uri'];
+				$org =  str_replace('/','\\/',$org);
+				$src = '/' . $org . '/';
+				$dist = $extras_option['after_uri'];
+				if(preg_match($src,$query_line)){
+					$query_line = preg_replace($src,$dist,$query_line);
+					
+				}
+			}
+		}
+		
+		// Active Plugin Clear
+		if ($extras_option['del_active_plugin']){
+				$src = '/' . "(INSERT INTO `.+_options` VALUES \([0-9]+, [0-9]+, 'active_plugins', 'Y', [0-9]+, ')(a:.+})('.+\);)" . '/';
+				if(preg_match($src,$query_line,$matches)){
+					if(preg_match('/xpressme\/xpressme.php/',$matches[2])){
+						$query_line = "\n" . $matches[1] . 'a:1:{i:0;s:21:"xpressme/xpressme.php";}' . $matches[3];
+					} else {
+						$query_line = "\n" . $matches[1] . 'a:0:{}' . $matches[3];
+					}
+				}			
+		}
+		
+		// XPressME Buckup Option Data Clear
+		$src = '/' . "INSERT INTO `.+_options` VALUES \([0-9]+, [0-9]+, 'xpressme_backup_excs'" . '/';
+		if(preg_match($src,$query_line)){
+			$query_line = "\n# Skip XPressME Buckup 'xpressme_backup_excs' Option Data\n";
+		}
+		$src = '/' . "INSERT INTO `.+_options` VALUES \([0-9]+, [0-9]+, 'xpressme_backup_extras_option'" . '/';
+		if(preg_match($src,$query_line)){
+			$query_line = "\n# Skip XPressME Buckup 'xpressme_backup_extras_option' Option Data\n";
+		}
+
+		return $query_line;
+		
+	}
+	function is_mbstring(){
+		return function_exists('mb_convert_encoding');
+	}
+}
+
+function wpdbBackup_init() {
+	global $mywpdbbackup;
+	$mywpdbbackup = new wpdbBackup(); 	
+}
+
+add_action('plugins_loaded', 'wpdbBackup_init');
+?>
Index: /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.pot
===================================================================
--- /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.pot	(revision 821)
+++ /trunk/extras/wp_plugin/xpressme-backup/xpressme-backup.pot	(revision 821)
@@ -0,0 +1,452 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: XPressME-DB-BACKUP\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-05-18 09:03+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: xpressme-backup.php:205
+msgid "Backup Complete!"
+msgstr ""
+
+#: xpressme-backup.php:240
+msgid "http://codex.wordpress.org/WordPress_Backups"
+msgstr ""
+
+#: xpressme-backup.php:241
+#, php-format
+msgid "Click <a href=\"%s\" target=\"_blank\">here</a> to back up your database using the WordPress Database Backup plugin. <strong>Note:</strong> WordPress Database Backup does <em>not</em> back up your files, just your database."
+msgstr ""
+
+#: xpressme-backup.php:250
+msgid "Progress"
+msgstr ""
+
+#: xpressme-backup.php:252
+msgid "DO NOT DO THE FOLLOWING AS IT WILL CAUSE YOUR BACKUP TO FAIL:"
+msgstr ""
+
+#: xpressme-backup.php:255
+msgid "Close this browser"
+msgstr ""
+
+#: xpressme-backup.php:256
+msgid "Reload this page"
+msgstr ""
+
+#: xpressme-backup.php:257
+msgid "Click the Stop or Back buttons in your browser"
+msgstr ""
+
+#: xpressme-backup.php:259
+msgid "Progress:"
+msgstr ""
+
+#: xpressme-backup.php:268
+msgid "Navigating away from this page will cause your backup to fail."
+msgstr ""
+
+#: xpressme-backup.php:305
+#, php-format
+msgid "Backup complete, preparing <a href=\\\"%s\\\">backup</a> for download..."
+msgstr ""
+
+#: xpressme-backup.php:312
+#, php-format
+msgid "Backup complete, sending <a href=\\\"%s\\\">backup</a> via email..."
+msgstr ""
+
+#: xpressme-backup.php:319
+#, php-format
+msgid "Backup complete, download <a href=\\\"%s\\\">here</a>."
+msgstr ""
+
+#: xpressme-backup.php:379
+msgid "Creating backup file..."
+msgstr ""
+
+#: xpressme-backup.php:382
+#, php-format
+msgid "Finished backing up table \\\"%s\\\"."
+msgstr ""
+
+#: xpressme-backup.php:384
+#, php-format
+msgid "Backing up table \\\"%s\\\"..."
+msgstr ""
+
+#: xpressme-backup.php:391
+#: xpressme-backup.php:895
+msgid "Could not open the backup file for writing!"
+msgstr ""
+
+#: xpressme-backup.php:392
+msgid "The backup file could not be saved.  Please check the permissions for writing to your backup directory and try again."
+msgstr ""
+
+#: xpressme-backup.php:397
+#: xpressme-backup.php:904
+msgid "WordPress MySQL database backup"
+msgstr ""
+
+#: xpressme-backup.php:399
+#: xpressme-backup.php:906
+#, php-format
+msgid "Generated: %s"
+msgstr ""
+
+#: xpressme-backup.php:400
+#: xpressme-backup.php:907
+#, php-format
+msgid "Hostname: %s"
+msgstr ""
+
+#: xpressme-backup.php:401
+#: xpressme-backup.php:908
+#, php-format
+msgid "Database: %s"
+msgstr ""
+
+#: xpressme-backup.php:409
+#: xpressme-backup.php:921
+#, php-format
+msgid "Table: %s"
+msgstr ""
+
+#: xpressme-backup.php:416
+msgid "The backup directory is not writeable!  Please check the permissions for writing to your backup directory and try again."
+msgstr ""
+
+#: xpressme-backup.php:473
+msgid "Click and hold down <code>[SHIFT]</code> to toggle multiple checkboxes"
+msgstr ""
+
+#: xpressme-backup.php:513
+msgid "Change"
+msgstr ""
+
+#: xpressme-backup.php:522
+msgid "Save"
+msgstr ""
+
+#: xpressme-backup.php:609
+#: xpressme-backup.php:618
+msgid "XPressME Backup"
+msgstr ""
+
+#: xpressme-backup.php:705
+#: xpressme-backup.php:708
+msgid "There was an error writing a line to the backup script:"
+msgstr ""
+
+#: xpressme-backup.php:740
+msgid "Subsequent errors have been omitted from this log."
+msgstr ""
+
+#: xpressme-backup.php:774
+msgid "Error getting table details"
+msgstr ""
+
+#: xpressme-backup.php:782
+#, php-format
+msgid "Delete any existing table %s"
+msgstr ""
+
+#: xpressme-backup.php:791
+#, php-format
+msgid "Table structure of table %s"
+msgstr ""
+
+#: xpressme-backup.php:797
+#, php-format
+msgid "Error with SHOW CREATE TABLE for %s."
+msgstr ""
+
+#: xpressme-backup.php:804
+#, php-format
+msgid "Error getting table structure of %s"
+msgstr ""
+
+#: xpressme-backup.php:812
+#, php-format
+msgid "Data contents of table %s"
+msgstr ""
+
+#: xpressme-backup.php:883
+#, php-format
+msgid "End of data contents of table %s"
+msgstr ""
+
+#: xpressme-backup.php:899
+msgid "The backup directory is not writeable!"
+msgstr ""
+
+#: xpressme-backup.php:1035
+#, php-format
+msgid "File not found:%s"
+msgstr ""
+
+#: xpressme-backup.php:1035
+msgid "Return to Backup"
+msgstr ""
+
+#: xpressme-backup.php:1044
+#, php-format
+msgid "File %s does not exist!"
+msgstr ""
+
+#: xpressme-backup.php:1051
+#, php-format
+msgid ""
+"Attached to this email is\n"
+"   %1s\n"
+"   Size:%2s kilobytes\n"
+msgstr ""
+"このメールに添付されたのは\n"
+"   %1s\n"
+"   サイズ: %2s キロバイト\n"
+
+#: xpressme-backup.php:1052
+msgid "Database Backup"
+msgstr ""
+
+#: xpressme-backup.php:1055
+#: xpressme-backup.php:1102
+msgid "The following errors were reported:"
+msgstr ""
+
+#: xpressme-backup.php:1060
+msgid "ERROR: The mail application has failed to deliver the backup."
+msgstr ""
+
+#: xpressme-backup.php:1077
+msgid "Backup Successful"
+msgstr ""
+
+#: xpressme-backup.php:1081
+#, php-format
+msgid "Your backup file: <a href=\"%1s\">%2s</a> should begin downloading shortly."
+msgstr ""
+
+#: xpressme-backup.php:1089
+#, php-format
+msgid "Your backup has been emailed to %s"
+msgstr ""
+
+#: xpressme-backup.php:1092
+msgid "Your backup file has been saved on the server. If you would like to download it now, right click and select \"Save As\""
+msgstr ""
+
+#: xpressme-backup.php:1093
+#, php-format
+msgid "%s bytes"
+msgstr ""
+
+#: xpressme-backup.php:1129
+msgid "Scheduled Backup Options Saved!"
+msgstr ""
+
+#: xpressme-backup.php:1156
+msgid "WARNING: Your backup directory does <strong>NOT</strong> exist, and we cannot create it."
+msgstr ""
+
+#: xpressme-backup.php:1157
+#, php-format
+msgid "Using your FTP client, try to create the backup directory yourself: %s"
+msgstr ""
+
+#: xpressme-backup.php:1161
+#: xpressme-backup.php:1172
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable! We cannot create the backup files."
+msgstr ""
+
+#: xpressme-backup.php:1162
+#, php-format
+msgid "Using your FTP client, try to set the backup directory&rsquo;s write permission to %1$s or %2$s: %3$s"
+msgstr ""
+
+#: xpressme-backup.php:1174
+msgid "This problem seems to be caused by your server&rsquo;s <code>safe_mode</code> file ownership restrictions, which limit what files web applications like WordPress can create."
+msgstr ""
+
+#: xpressme-backup.php:1176
+#, php-format
+msgid "You can try to correct this problem by using your FTP client to delete and then re-create the backup directory: %s"
+msgstr ""
+
+#: xpressme-backup.php:1187
+msgid "Backup"
+msgstr ""
+
+#: xpressme-backup.php:1190
+msgid "Tables"
+msgstr ""
+
+#: xpressme-backup.php:1194
+msgid "These core WordPress tables will always be backed up:"
+msgstr ""
+
+#: xpressme-backup.php:1200
+msgid "Exclude spam comments"
+msgstr ""
+
+#: xpressme-backup.php:1203
+msgid "Exclude post revisions"
+msgstr ""
+
+#: xpressme-backup.php:1214
+msgid "Select all"
+msgstr ""
+
+#: xpressme-backup.php:1215
+msgid "Select none"
+msgstr ""
+
+#: xpressme-backup.php:1217
+msgid "You may choose to include any of the following tables:"
+msgstr ""
+
+#: xpressme-backup.php:1250
+msgid "Backup Options"
+msgstr ""
+
+#: xpressme-backup.php:1251
+msgid "What to do with the backup file:"
+msgstr ""
+
+#: xpressme-backup.php:1255
+msgid "Save to server"
+msgstr ""
+
+#: xpressme-backup.php:1260
+msgid "Download to your computer"
+msgstr ""
+
+#: xpressme-backup.php:1264
+#: xpressme-backup.php:1348
+msgid "Email backup to:"
+msgstr ""
+
+#: xpressme-backup.php:1268
+msgid "Backup Ditaile Options"
+msgstr ""
+
+#: xpressme-backup.php:1275
+#: xpressme-backup.php:1278
+msgid "Converte EUC-JP to UTF-8"
+msgstr ""
+
+#: xpressme-backup.php:1279
+msgid "The server used does not support the mb_convert_encoding() function."
+msgstr ""
+
+#: xpressme-backup.php:1288
+msgid "Rename DB Prefix"
+msgstr ""
+
+#: xpressme-backup.php:1290
+msgid "to"
+msgstr ""
+
+#: xpressme-backup.php:1297
+msgid "Backup now!"
+msgstr ""
+
+#: xpressme-backup.php:1300
+msgid "WARNING: Your backup directory is <strong>NOT</strong> writable!"
+msgstr ""
+
+#: xpressme-backup.php:1311
+msgid "Scheduled Backup"
+msgstr ""
+
+#: xpressme-backup.php:1318
+#, php-format
+msgid "Next Backup: %s"
+msgstr ""
+
+#: xpressme-backup.php:1323
+#, php-format
+msgid "Last WP-Cron Daily Execution: %s"
+msgstr ""
+
+#: xpressme-backup.php:1324
+#, php-format
+msgid "Next WP-Cron Daily Execution: %s"
+msgstr ""
+
+#: xpressme-backup.php:1329
+msgid "Schedule: "
+msgstr ""
+
+#: xpressme-backup.php:1333
+msgid "None"
+msgstr ""
+
+#: xpressme-backup.php:1333
+msgid "Daily"
+msgstr ""
+
+#: xpressme-backup.php:1350
+msgid "Schedule backup"
+msgstr ""
+
+#: xpressme-backup.php:1358
+msgid "Tables to include in the scheduled backup:"
+msgstr ""
+
+#: xpressme-backup.php:1393
+msgid "Never"
+msgstr ""
+
+#: xpressme-backup.php:1398
+#, php-format
+msgid "%s seconds"
+msgstr ""
+
+#: xpressme-backup.php:1431
+msgid "Once Weekly"
+msgstr ""
+
+#: xpressme-backup.php:1445
+#, php-format
+msgid "Your WordPress version, %1s, lacks important security features without which it is unsafe to use the WP-DB-Backup plugin.  Hence, this plugin is automatically disabled.  Please consider <a href=\"%2s\">upgrading WordPress</a> to a more recent version."
+msgstr ""
+
+#: xpressme-backup.php:1464
+msgid "You are not allowed to perform backups."
+msgstr ""
+
+#: xpressme-backup.php:1479
+#, php-format
+msgid "There appears to be an unauthorized attempt from this site to access your database located at %1s.  The attempt has been halted."
+msgstr ""
+
+#: xpressme-backup.php:1490
+msgid "Cheatin' uh ?"
+msgstr ""
+
+#~ msgid ""
+#~ "Your WordPress Langage %s, the WP-DB-Backup-to-UTF8 plugin is only for "
+#~ "EUC-JP. Hence, this plugin is automatically disabled."
+#~ msgstr ""
+#~ "お使いになっている WordPress の言語は %s です。WP-DB-Backup-to-UTF8プラグ"
+#~ "インは、EUC-JP専用です。そのためこのプラグインは自動的に機能を停止しまし"
+#~ "た。"
+#~ msgid "Backup(to UTF8)"
+#~ msgstr ""
+#~ msgid ""
+#~ "WARNING: Your wp-content directory is <strong>NOT</strong> writable! We "
+#~ "can not create the backup directory."
+#~ msgstr ""
+#~ "注意: wp-content ディレクトリが<strong>書き込み不可</strong>になっていま"
+#~ "す ! バックアップディレクトリを作成できませんでした。"
+#~ msgid "Submit"
+#~ msgstr ""
+
Index: /trunk/extras/xpress_i18n/en/howto_make_xpressme.html
===================================================================
--- /trunk/extras/xpress_i18n/en/howto_make_xpressme.html	(revision 821)
+++ /trunk/extras/xpress_i18n/en/howto_make_xpressme.html	(revision 821)
@@ -0,0 +1,76 @@
+<!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" dir="ltr" lang="en">
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+
+<title>XPressME module Making & Install| XPressME Integration Kit</title>
+
+</head>
+	
+<body id='xpress_page'>
+	<div id="xpress_header">
+		<h1><a href="http://ja.xpressme.info/">XPressME Integration Kit</a></h1>
+	</div>
+	
+	<div>
+		<h3>Notes</strong></h3>
+			<ol>
+				<li>XpressME Integration Kit doesn&#8217;t function only by it as XOOPS module.</li>
+				<li>Being able to integrate by this is WordPress version 2.7 or more.</li>
+			</ol>
+		
+		<h3>Download of necessary file</h3>
+			<ol>
+				<li>Download of XPressME Integration Kit<br />
+					<p>XPressME Integration Kit is downloaded on the <a href="http://ja.xpressme.info/download/">download page</a>. </p>
+					<p>The composition of the downloaded file is as follows.</p>
+					<p style="padding-left: 60px;"><img title="xp_intrgration_kit" src="../document_image/xp_intrgration_kit.png" alt="xp_intrgration_kit"/></p>
+				</li>
+				<li> Download of WordPress<br />
+					WordPress is downloaded from <a href="http://wordpress.org/download/" target="_blank">WordPress.org</a></p>
+					<p>The composition of the downloaded file is as follows for WordPress2.7. </p>
+					<p style="padding-left: 60px;"><img title="wordpress_file" src="../document_image/wordpress_file.png" alt="wordpress_file"/></p>
+				</li>
+			</ol>
+		
+		<h3>Making XPressME module for XOOPS</h3>
+			<ol> 
+				<li>
+					The work directory is made. The directory name is made the module name such as &#8216;xpress&#8217;. 
+				</li>
+				<li>
+					The file of  XPressME Integration Kit is copied onto the work directory of step 1. 
+				</li>
+				<li>
+					The file of  WordPress is copied onto the work directory of step 1. 
+				</li>
+			</ol>
+			<p style="padding-left: 60px;"><img title="make_xp_module" src="../document_image/make_xp_module.png" alt="make_xp_module"/></p>
+
+		<h3><strong>Localaize</strong></h3>
+			<p style="padding-left: 30px;">
+				If the language & wp-config.php file that you need exists in the extras/xpress_i18n folder<br />
+				The file and the folder in extras/xpress_i18n/test/xpressme_modules_root are overwrited to the route of the module.<br />
+				<p style="padding-left: 60px;">
+				wp-config.php file<br />
+				language folder<br />
+				wp-content folder<br />
+				</p>
+			</p>
+			<p style="padding-left: 60px;"><img title="xp_i18n" src="../document_image/xp_i18n.png" alt="xp_i18n"/></p>
+		
+		<h3>Installation of XpressME module</h3>
+			<p style="padding-left: 30px;">The made module is used.</p>
+			<ol style="padding-left: 30px;">
+				<li>Up-loads it in the directory 'XOOPS_ROOT_PATH/modules/' as well as other modules.</li>
+				<li>The permission of /templates directory and the /wp-contents directory of the XPressME module is changed to 777. </li>
+		
+				<li>The module is installed on the XOOPS admin page. </li>
+			</ol>
+		<p style="padding-left: 30px;"><strong>Others</strong></p>
+		<p style="padding-left: 60px;">The module name (directory name) can give an arbitrary name as long as it doesn't overlap with other modules of XOOPS. <br />
+		Two or more XPressME modules can be installed by changing the module name. (However, it is not D3 module. )</p>
+	</div>
+</body>
+</html>
Index: /trunk/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php
===================================================================
--- /trunk/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php	(revision 821)
+++ /trunk/extras/xpress_i18n/en/xpressme_modules_root/wp-config.php	(revision 821)
@@ -0,0 +1,88 @@
+<?php
+/** It is an additional loading for XPressME. */
+require_once dirname( __FILE__ ).'/include/add_xpress_config.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');
+define('AUTH_SALT',        'put your unique phrase here');
+define('SECURE_AUTH_SALT', 'put your unique phrase here');
+define('LOGGED_IN_SALT',   'put your unique phrase here');
+define('NONCE_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 English.
+ *
+ * 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', '');
+
+/* That's all, stop editing! Happy blogging. */
+
+/** WordPress absolute path to the Wordpress directory. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+/** Processing for XPressME is done.*/
+require_once( ABSPATH .'/include/add_xpress_process.php');
+
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: /trunk/extras/xpress_i18n/portuguese-br/howto_make_xpressme.html
===================================================================
--- /trunk/extras/xpress_i18n/portuguese-br/howto_make_xpressme.html	(revision 821)
+++ /trunk/extras/xpress_i18n/portuguese-br/howto_make_xpressme.html	(revision 821)
@@ -0,0 +1,73 @@
+<!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" dir="ltr" lang="ja">
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+
+<title>モジュール作成とインストール | XPressME Integration Kit</title>
+
+</head>
+	
+<body id='xpress_page'>
+	<!-- Brazilian Portuguese Translation by Marcelo Yuji Himoro <http://yuji.ws> -->
+	<div id="xpress_header">
+		<h1><a href="http://ja.xpressme.info/">XPressME Integration Kit</a></h1>
+	</div>
+	
+	<div>
+		<h3>ATENÇÃO</strong></h3>
+			<ol>
+				<li>O XpressME Integration Kit não funciona por si só como módulo do XOOPS.</li>
+				<li>Recomenda-se utilizar o WordPress 2.7 ou superior. (versões inferiores não foram testadas)</li>
+			</ol>
+		
+		<h3>ARQUIVOS NECESSÁRIOS</h3>
+			<ol>
+				<li>XPressME Integration Kit<br />
+					Pode ser obtido na <a href="http://ja.xpressme.info/download/" target="_blank">página de downloads</a>.</p>
+					<p>O conteúdo do arquivo é o seguinte:</p>
+					<p style="padding-left: 60px;"><img title="xp_intrgration_kit" src="../document_image/xp_intrgration_kit.png" alt="xp_intrgration_kit"/></p>
+				</li>
+				<li>WordPress<br />
+					Pode ser obtido em <a href="http://wordpress.org/download/" target="_blank">WordPress.org</a> (ou no <a href="http://br.wordpress.org/" target="_blank">WordPress Brasil</a>).</p>
+					<p>O conteúdo do arquivo é o seguinte (para WordPress 2.7):</p>
+					<p style="padding-left: 60px;"><img title="wordpress_file" src="../document_image/wordpress_file.png" alt="wordpress_file"/></p>
+				</li>
+			</ol>
+		
+		<h3>CONSTRUINDO O MÓDULO</h3>
+			<ol> 
+				<li>
+					Crie uma pasta para o módulo (no exemplo utilizaremos xpress como nome).</li>
+				<li>
+					Copie os arquivos do XPressME Integration Kit para a pasta criada no 1º passo.
+				</li>
+				<li>
+					Copie os arquivos do WordPress para a pasta criada no 1º passo.
+				</li>
+			</ol>
+			<p style="padding-left: 60px;"><img title="make_xp_module" src="../document_image/make_xp_module.png" alt="make_xp_module"/></p>
+
+		<h3><strong>LOCALIZAÇÃO</strong></h3>
+			<p style="padding-left: 30px;">
+				Se os arquivos de idioma necessários e o wp-config.php existirem na pasta extras/xpress_i18n, sobreescreva:<br />
+				o arquivo wp-config.php;<br />
+				a pasta language;<br />
+				a pasta wp-content;<br />
+				contido em extras/xpress_i18n/**/xpressme_modules_root na raiz do seu módulo.
+			</p>
+			<p style="padding-left: 60px;"><img title="xp_i18n" src="../document_image/xp_i18n.png" alt="xp_i18n"/></p>
+		
+		<h3>INSTALAÇÃO DO MÓDULO XpressME</h3>
+			<p style="padding-left: 30px;">A partir do módulo criado em "CONSTRUINDO O MÓDULO", siga os seguintes passos para realizar a instalação:</p>
+			<ol style="padding-left: 30px;">
+				<li>Faça upload, como qualquer outro módulo, para o diretório XOOPS_ROOT_PATH/modules/.</li>
+				<li>Defina as permissões dos diretórios /templates e /wp-contents para 777.</li>
+				<li>Instale o módulo.</li>
+			</ol>
+		<p style="padding-left: 30px;"><strong>DICAS</strong></p>
+		<p style="padding-left: 60px;">Desde que não coincida com o de nenhum outro do seu XOOPS, você pode escolher livremente o nome do diretório.<br />
+		É possível duplicar o módulo apenas alterando seu nome (não D3 ready)</p>
+	</div>
+</body>
+</html>
Index: /trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-config.php
===================================================================
--- /trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-config.php	(revision 821)
+++ /trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-config.php	(revision 821)
@@ -0,0 +1,84 @@
+<?php
+/** Carregamento adicional do XPressME */
+require_once dirname( __FILE__ ).'/include/add_xpress_config.php' ;
+
+/**
+ * mb_language() define o idioma. Se ele for omitido, ele retorna o idioma atual.
+ * Configurações de idioma são utilizadas para codificar mensagens de e-mail. 
+ * Exemplos de idiomas válidos são "Japanese", "ja","English", "en" e "uni" (UTF-8). 
+ * mb_send_mail() utiliza estas configurações para codificar os e-mails.
+ * Idioma e configurações para Japanese, uni e English são respectivamente ISO-2022-JP/Base64, UTF-8/Base64, ISO-8859-1/quoted printable. 
+ */
+// if (function_exists("mb_language")) mb_language('uni');
+
+
+// ** Configurações do MySQL - Você pode pegar essas informações com o serviço de hospedagem ** //
+// Não altere 'DB_NAME','DB_USER','DB_PASSWORD' & 'DB_HOST'
+// pois são obtidos os valores definidos no XOOPS.
+
+/** Não altere. O nome do banco de dados do WordPress */
+define('DB_NAME', $xoops_config->xoops_db_name);
+
+/** Não altere. Usuário do banco de dados MySQL */
+define('DB_USER', $xoops_config->xoops_db_user);
+
+/** Não altere. Senha do banco de dados MySQL */
+define('DB_PASSWORD', $xoops_config->xoops_db_pass);
+
+/** Não altere. Nome do host do MySQL */
+define('DB_HOST', $xoops_config->xoops_db_host);
+	
+/** Conjunto de caracteres do banco de dados a ser usado na criação das tabelas. */
+define('DB_CHARSET', 'utf8');
+
+/** O tipo de collate do banco de dados. Não altere isso se tiver dúvidas. */
+define('DB_COLLATE', '');
+
+/**#@+
+ * Chaves únicas de autenticação.
+ *
+ * Altere cada chave para um frase única!
+ * Você pode gerá-las usando {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
+ *
+ * @since 2.6.0
+ */
+define('AUTH_KEY', 'coloque sua frase única aqui');
+define('SECURE_AUTH_KEY', 'coloque sua frase única aqui');
+define('LOGGED_IN_KEY', 'coloque sua frase única aqui');
+define('NONCE_KEY', 'coloque sua frase única aqui');
+define('AUTH_SALT',        'put your unique phrase here');
+define('SECURE_AUTH_SALT', 'put your unique phrase here');
+define('LOGGED_IN_SALT',   'put your unique phrase here');
+define('NONCE_SALT',       'put your unique phrase here');
+/**#@-*/
+
+/**
+ * Prefixo da tabela do banco de dados do WordPress.
+ *
+ * Você pode ter várias instalações em um único banco de dados se você der para cada um um único
+ * prefixo. Somente números, letras e sublinhados!
+ */
+// Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 
+$table_prefix  = $xoops_config->module_db_prefix;
+
+/**
+ * O idioma localizado do WordPress é o inglês por padrão.
+ *
+ * Altere esta definição para localizar o WordPress. Um arquivo MO correspondente a
+ * língua escolhida deve ser instalado em wp-content/languages. Por exemplo, instale
+ * pt_BR.mo em wp-content/languages e altere WPLANG para 'pt_BR' para habilitar o suporte
+ * ao português do Brasil.
+ */
+define ('WPLANG', 'pt_BR');
+
+/* Isto é tudo, pode parar de editar! :) */
+
+/** Caminho absoluto do WordPress para o diretório Wordpress. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__) . '/');
+
+/** Processamento do XPressME finalizado */
+require_once( ABSPATH .'/include/add_xpress_process.php');
+
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: /trunk/extras/xpress_i18n/template/howto_make_xpressme.html
===================================================================
--- /trunk/extras/xpress_i18n/template/howto_make_xpressme.html	(revision 821)
+++ /trunk/extras/xpress_i18n/template/howto_make_xpressme.html	(revision 821)
@@ -0,0 +1,76 @@
+<!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" dir="ltr" lang="en">
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+
+<title>XPressME module Making & Install| XPressME Integration Kit</title>
+
+</head>
+	
+<body id='xpress_page'>
+	<div id="xpress_header">
+		<h1><a href="http://ja.xpressme.info/">XPressME Integration Kit</a></h1>
+	</div>
+	
+	<div>
+		<h3>Notes</strong></h3>
+			<ol>
+				<li>XpressME Integration Kit doesn&#8217;t function only by it as XOOPS module.</li>
+				<li>Being able to integrate by this is WordPress version 2.7 or more.</li>
+			</ol>
+		
+		<h3>Download of necessary file</h3>
+			<ol>
+				<li>Download of XPressME Integration Kit<br />
+					<p>XPressME Integration Kit is downloaded on the <a href="http://ja.xpressme.info/download/">download page</a>. </p>
+					<p>The composition of the downloaded file is as follows.</p>
+					<p style="padding-left: 60px;"><img title="xp_intrgration_kit" src="../document_image/xp_intrgration_kit.png" alt="xp_intrgration_kit"/></p>
+				</li>
+				<li> Download of WordPress<br />
+					WordPress is downloaded from <a href="http://wordpress.org/download/" target="_blank">WordPress.org</a></p>
+					<p>The composition of the downloaded file is as follows for WordPress2.7. </p>
+					<p style="padding-left: 60px;"><img title="wordpress_file" src="../document_image/wordpress_file.png" alt="wordpress_file"/></p>
+				</li>
+			</ol>
+		
+		<h3>Making XPressME module for XOOPS</h3>
+			<ol> 
+				<li>
+					The work directory is made. The directory name is made the module name such as &#8216;xpress&#8217;. 
+				</li>
+				<li>
+					The file of  XPressME Integration Kit is copied onto the work directory of step 1. 
+				</li>
+				<li>
+					The file of  WordPress is copied onto the work directory of step 1. 
+				</li>
+			</ol>
+			<p style="padding-left: 60px;"><img title="make_xp_module" src="../document_image/make_xp_module.png" alt="make_xp_module"/></p>
+
+		<h3><strong>Localaize</strong></h3>
+			<p style="padding-left: 30px;">
+				If the language & wp-config.php file that you need exists in the extras/xpress_i18n folder<br />
+				The file and the folder in extras/xpress_i18n/test/xpressme_modules_root are overwrited to the route of the module.<br />
+				<p style="padding-left: 60px;">
+				wp-config.php file<br />
+				language folder<br />
+				wp-content folder<br />
+				</p>
+			</p>
+			<p style="padding-left: 60px;"><img title="xp_i18n" src="../document_image/xp_i18n.png" alt="xp_i18n"/></p>
+		
+		<h3>Installation of XpressME module</h3>
+			<p style="padding-left: 30px;">The made module is used.</p>
+			<ol style="padding-left: 30px;">
+				<li>Up-loads it in the directory 'XOOPS_ROOT_PATH/modules/' as well as other modules.</li>
+				<li>The permission of /templates directory and the /wp-contents directory of the XPressME module is changed to 777. </li>
+		
+				<li>The module is installed on the XOOPS admin page. </li>
+			</ol>
+		<p style="padding-left: 30px;"><strong>Others</strong></p>
+		<p style="padding-left: 60px;">The module name (directory name) can give an arbitrary name as long as it doesn't overlap with other modules of XOOPS. <br />
+		Two or more XPressME modules can be installed by changing the module name. (However, it is not D3 module. )</p>
+	</div>
+</body>
+</html>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/admin.php
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/admin.php	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/admin.php	(revision 821)
@@ -0,0 +1,44 @@
+<?php
+if( ! defined( 'XP2_ADMIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_ADMIN_LANG_INCLUDED' , 1 ) ;
+	
+// altsys
+	define('_MD_A_MYMENU_MYTPLSADMIN','templates');
+	define('_MD_A_MYMENU_MYBLOCKSADMIN','blocks/permissions');
+	define('_MD_A_MYMENU_MYLANGADMIN','languages');
+	define('_MD_A_MYMENU_MYPREFERENCES','general');
+
+	define("_AM_XP2_SYSTEM_INFO","System infomation");
+	define("_AM_XP2_XOOPS_CONFIG_INFO","Set value that XPressME acquired from XOOPS");
+	define("_AM_XP2_PLUGIN","Active plug-in list at wordpress");
+	define("_AM_XP2_BLOCK_STATS","Block Status");
+	define("_AM_XP2_STATS","WordPress Status");
+	define("_AM_XP2_CATEGORIES","Category count");
+	define("_AM_XP2_ARTICLES","Blog article count");
+	define("_AM_XP2_AUTHORS","Author count");
+	define("_AM_XP2_SYS_REPORT","Show Report Mode");
+	define("_AM_XP2_SYS_NORMAL","Show Normal Mode");
+	define("_AM_XP2_BLOCK_OPTIONS","Block Options");
+	define("_AM_XP2_GROUP_ROLE","Group Role");
+
+// Block Check	
+	define("_AM_XP2_BLOCK_OK","The block is normal. ");
+	define("_AM_XP2_BLOCK_NG","There is an abnormal block. ");
+	define("_AM_XP2_BLOCK_REPAIR_HOWTO","Please correct the block according to the following procedures. ");
+	define("_AM_XP2_BLOCK_REPAIR_STEP1","Step 1");
+	define("_AM_XP2_BLOCK_REMOVE","Remove xoops block table");
+	define("_AM_XP2_BLOCK_REMOVE_NOTE","Please use carefully, because <b>Remove Block</b> deletes records in block table");
+	define("_AM_XP2_BLOCK_REPAIR_STEP2","Step 2");
+	define("_AM_XP2_BLOCK_UPDATE","The block is restructured with the update of the module.");
+	define("_AM_XP2_TO_MODELE_UPDATE","To the module update");
+	define("_AM_XP2_BLOCK_REPAIR_STEP3","Step3");
+	define("_AM_XP2_BLOCK_ADMIN_SETTING","The arrangement setting of the block and the access authority of the block are set again. ");
+	define("_AM_XP2_BLOCK_TO_SETTING","to blocks/permissions");
+	define("_AM_XP2_USER_META_KEY","User meta information");
+	define("_AM_XP2_USER_META_NONE","There is no meta key necessary for the user level.");
+	define("_AM_XP2_USER_META_ERR","There is a meta key named %s that the prefix is different in %d piece.");
+	define("_AM_XP2_USER_META_OK","The user meta key is normal.");		
+	define("_AM_XP2_NG_BLOCK_REMOVE","Remove xoops abnormal block table");
+	define("_AM_XP2_BLOCK_OR","OR");
+}
+?>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/blocks.php
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/blocks.php	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/blocks.php	(revision 821)
@@ -0,0 +1,151 @@
+<?php
+if( ! defined( 'XP2_BLOCK_LANG_INCLUDED' ) ) {
+	define( 'XP2_BLOCK_LANG_INCLUDED' , 1 ) ;
+// general	
+	define("_MB_XP2_COUNT",'Number of displays');
+	define("_MB_XP2_COUNT_ZERO_ALL",'Number of displays (Everything is displayed in case of 0)');
+	define("_MB_XP2_LENGTH","length");
+	define("_MB_XP2_ALL","all");
+	define("_MB_XP2_BLOCK_CACHE_ERR","Cash doesn't exist. <br />Please access the %s module first.");
+	define("_MB_XP2_SHOW_NUM_OF_POST","The number of entries is displayed.");
+	define("_MB_XP2_SHOW_DROP_DOWN","It displays it by the drop down list.");
+	define("_MB_XP2_HIDE_EMPTY","hide empty");
+	define("_MB_XP2_TITLE","title");
+	define("_MB_XP2_PUBLISH_DATE","publish date");
+	define("_MB_XP2_SORT_ORDER","sort order");
+	define("_MB_XP2_SORT_ASC","ASC");
+	define("_MB_XP2_SORT_DESC","DESC");
+	define("_MB_XP2_SHOW_DATE_SELECT","Date Display");
+	define("_MB_XP2_SHOW_DATE_NONE","Not display");
+	define("_MB_XP2_SHOW_POST_DATE","Post Date");
+	define("_MB_XP2_SHOW_MODIFY_DATE","Modify Date");
+	define("_MB_XP2_SHOW_DATE","The date is displayed.");
+	define("_MB_XP2_DATE_FORMAT","Format at date (The setting with WordPress is applied for the blank).");
+	define("_MB_XP2_TIME_FORMAT","Format at time (The setting with WordPress is applied for the blank).");
+	define("_MB_XP2_FLAT","Flat");
+	define("_MB_XP2_LIST","List");
+	define("_MB_XP2_FILE_NAME","Files Name");
+	define("_MB_XP2_THISTEMPLATE","Template");
+	define("_MB_XP2_NO_JSCRIPT","Javascript should be enable by a browser.");	
+	
+// recent comment block	
+	define("_MB_XP2_COMM_DISP_AUTH","The comment author name is displayed.");
+	define("_MB_XP2_COMM_DISP_TYPE","The comment type is displayed.");
+	define("_MB_XP2_COM_TYPE","select the type of the displayed comment.");
+	define("_MB_XP2_COMMENT","Comment");
+	define("_MB_XP2_TRUCKBACK","Trackback");
+	define("_MB_XP2_PINGBACK","Pingback");
+	
+// recent posts content
+	define("_MB_XP2_P_EXCERPT","The post is displayed by the except.");
+	define("_MB_XP2_P_EXCERPT_SIZE","Number of except characters");
+	define("_MB_XP2_CATS_SELECT","Select categorie");
+	define("_MB_XP2_TAGS_SELECT","Tags Select(Comma separated list of tags)");
+	define("_MB_XP2_DAY_SELECT","Select Post Date");
+	define("_MB_XP2_NONE","None");
+	define("_MB_XP2_TODAY","Today");
+	define("_MB_XP2_LATEST","Latest");
+	define("_MB_XP2_DAY_BETWEEN","Between");
+	define("_MB_XP2_DAYS_AND","and");
+	define("_MB_XP2_DAYS_AGO","days ago");
+	define("_MB_XP2_CATS_DIRECT_SELECT","Direct input of ID(Comma separated list of categorie ID)");
+	
+// recent posts list	
+	define("_MB_XP2_REDNEW_DAYS","Passed days displayed by marking red 'New'");
+	define("_MB_XP2_GREENNEW_DAYS","Passed days displayed by marking green 'New'");	
+
+// calender		
+	define("_MB_XP2_SUN_COLOR","Color on Sunday");
+	define("_MB_XP2_SAT_COLOR","Color on Saturday");
+	
+// popular		
+	define("_MB_XP2_MONTH_RANGE","The one in the number a specified month is displayed (0; all).");
+	
+// archives
+	define("_MB_XP2_ARC_TYPE","The type of archive");
+	define("_MB_XP2_ARC_YEAR","yearly");
+	define("_MB_XP2_ARC_MONTH","monthly");
+	define("_MB_XP2_ARC_WEEK","weekly");
+	define("_MB_XP2_ARC_DAY","daily");
+	define("_MB_XP2_ARC_POST","post by post");
+
+// authors	
+	define("_MB_XP2_EXCLUEDEADMIN","The manager is excluded from the list.");
+	define("_MB_XP2_SHOW_FULLNAME","The author name is displayed by the full name.");
+
+// page 	
+	define("_MB_XP2_PAGE_ORDERBY","List Pages by Page Order ");
+	define("_MB_XP2_PAGE_TITLE","post_title");
+	define("_MB_XP2_PAGE_MENU_ORDER","menu_order");
+	define("_MB_XP2_PAGE_POST_DATE","post_date");
+	define("_MB_XP2_PAGE_POST_MODIFY","post_modified");
+	define("_MB_XP2_PAGE_ID","ID");
+	define("_MB_XP2_PAGE_AUTHOR","post_author ID");
+	define("_MB_XP2_PAGE_SLUG","post_name");
+	define("_MB_XP2_PAGE_EXCLUDE","Define a comma-separated list of Page IDs to be excluded from the list ");
+	define("_MB_XP2_PAGE_EXCLUDE_TREE","Define a comma-separated list of parent Page IDs to be excluded. Use this parameter to exclude a parent and all of that parent's child Pages.");
+	define("_MB_XP2_PAGE_INCLUDE","Only include certain Pages in the list , this parameter takes a comma-separated list of Page IDs. ");
+	define("_MB_XP2_PAGE_DEPTH","how many levels in the hierarchy of pages are to be included in the list (0=all Pages and sub-pages displayedj");
+	define("_MB_XP2_PAGE_CHILD_OF","Displays the sub-pages of a single Page onlyB(uses the ID for a Page as the valuej");
+	define("_MB_XP2_PAGE_HIERARCHICAL","Display sub-Pages in an indented manner below their parent or list the Pages inline.");
+	define("_MB_XP2_PAGE_META_KEY","Only include the Pages that have this Custom Field Key (use in conjunction with the meta_value field).");
+	define("_MB_XP2_PAGE_META_VALUE","Only include the Pages that have this Custom Field Value (use in conjuntion with the meta_key field).");
+	
+// Search
+	define("_MB_XP2_SEARCH_LENGTH","Length of search textbox");
+	
+// tag cloud
+	define("_MB_XP2_CLOUD_SMALLEST",'The text size of the tag with the smallest count value ');
+	define("_MB_XP2_CLOUD_LARGEST",'The text size of the tag with the highest count value');
+	define("_MB_XP2_CLOUD_UNIT","Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %;");
+	define("_MB_XP2_CLOUD_NUMBER","The number of actual tags to display in the cloud. (Use '0' to display all tags.)");
+	define("_MB_XP2_CLOUD_FORMAT","Format of the cloud display");
+	define("_MB_XP2_CLOUD_ORDERBY","Order of the tags");
+	define("_MB_XP2_CLOUD_ORDER","Sort order. Valid values('RAND' tags are in a random order. Note: this parameter was introduced with Version 2.5.)");
+	define("_MB_XP2_CLOUD_EXCLUDE","Comma separated list of tags (term_id) to exclude.");
+	define("_MB_XP2_CLOUD_INCLUDE","Comma separated list of tags (term_id) to include.");
+	define("_MB_XP2_RAND","RAND");
+	define("_MB_XP2_TAG_NAME","tag name");
+	define("_MB_XP2_TAG_COUNT","count");
+	
+// Categorie
+	define("_MB_XP2_CAT_ALL_STR","All categories link Display Title. (blank is not display)");
+	define("_MB_XP2_CAT_ORDERBY","Order of the categories");
+	define("_MB_XP2_CAT_NAME","name");
+	define("_MB_XP2_CAT_COUNT","count");
+	define("_MB_XP2_CAT_ID","ID");
+	define("_MB_XP2_SHOW_LAST_UPDATE","Should the last updated timestamp for posts be displayed.");
+	define("_MB_XP2_CAT_HIDE_EMPTY","hide display of categories with no posts.");
+	define("_MB_XP2_DESC_FOR_TITLE","Sets whether a category's description is inserted into the title attribute of the links created");
+	define("_MB_XP2_CAT_EXCLUDE","Exclude one or more categories from the results. This parameter takes a comma-separated list of categories by unique ID");
+	define("_MB_XP2_CAT_INCLUDE","Only include the categories detailed in a comma-separated list by unique ID, in ascending order.");
+	define("_MB_XP2_CAT_HIERARCHICAL","Display sub-categories as inner list items (below the parent list item) or inline.");
+	define("_MB_XP2_CAT_DEPTH","how many levels in the hierarchy of Categories are to be included in the list of Categories.(0=All Categories and child Categories)");
+	
+// meta 
+	define("_MB_XP2_META_WP_LINK","The link to the WordPress site is displayed.");
+	define("_MB_XP2_META_XOOPS_LINK","The link to the Xoops site is displayed.");
+	define("_MB_XP2_META_POST_RSS","RSS of the posts is displayed.");
+	define("_MB_XP2_META_COMMENT_RSS","RSS of the comments is displayed.");
+	define("_MB_XP2_META_POST_NEW","'new post' is displayed.");
+	define("_MB_XP2_META_ADMIN","'admin' is displayed.");
+	define("_MB_XP2_META_README","ReadMe is displayed.");
+	define("_MB_XP2_META_CH_STYLE","'display mode' is displayed.");
+
+// widget 
+	define("_MB_XP2_SELECT_WIDGET","Displayed Widget is selected.");
+	define("_MB_XP2_NO_WIDGET","Widget displayed on the WordPress side has not been selected. ");
+	define("_MB_XP2_WIDGET_TITLE_SHOW","When only one Widget has been selected, the title of Widget is displayed.");
+	
+// custom 
+	define("_MB_XP2_ENHACED_FILE","Input the file name used in the custom block.");
+	define("_MB_XP2_MAKE_ENHACED_FILE","Please make the file specified here in the block directory of the theme.");
+
+// blog_list
+	define("_MB_XP2_BLOG_ORDERBY","Order of the blogs");
+	define("_MB_XP2_BLOG_NAME","name");
+	define("_MB_XP2_BLOG_COUNT","count");
+	define("_MB_XP2_BLOG_ID","ID");
+
+}
+?>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/index.html
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/index.html	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/index.html	(revision 821)
@@ -0,0 +1,1 @@
+ <script>history.go(-1);</script>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newcomment.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newcomment.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newcomment.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+A new comment is contributed in article {XPRESS_POST_TITLE} on contributor {XPRESS_AUTH_NAME}. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newpost.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newpost.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/author_newpost.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+Article {XPRESS_POST_TITLE} on contributor {XPRESS_AUTH_NAME} is contributed. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newcomment.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newcomment.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newcomment.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+A new comment is contributed in article {XPRESS_POST_TITLE} that belongs to category {XPRESS_CAT_TITLE}. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newpost.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newpost.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/category_newpost.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+The article "{XPRESS_POST_TITLE}" is contributed in  {XPRESS_CAT_TITLE} category. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newcomment.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newcomment.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newcomment.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+The comment was contributed in article "{XPRESS_POST_TITLE}" in the {X_MODULE} module. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newpost.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newpost.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_newpost.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+
+ There was new contribution "{XPRESS_POST_TITLE}" in the {X_MODULE} module. 
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_waiting.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_waiting.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/global_waiting.tpl	(revision 821)
@@ -0,0 +1,3 @@
+Hello {X_UNAME}. 
+
+ The needed approval was contributed in the {X_MODULE} module. 
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_editpost.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_editpost.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_editpost.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}. 
+{X_SITENAME} {X_MODULE}
+The change in the content of the article is done by "{POST_TITLE}". 
+
+Please access following URL to see this article:
+{POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_newcomment.tpl
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_newcomment.tpl	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/mail_template/post_newcomment.tpl	(revision 821)
@@ -0,0 +1,6 @@
+Hello {X_UNAME}
+
+A new comment is contributed in specified article {XPRESS_POST_TITLE}.
+
+Please access following URL to see this contribution:
+{XPRESS_POST_URL}
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/main.php
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/main.php	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/main.php	(revision 821)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XP2_MAIN_LANG_INCLUDED' ) ) {
+	define( 'XP2_MAIN_LANG_INCLUDED' , 1 ) ;
+	
+}
+?>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/modinfo.php
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/modinfo.php	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/language/english/modinfo.php	(revision 821)
@@ -0,0 +1,104 @@
+<?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","System information");
+	define("_MI_XP2_MENU_BLOCK_ADMIN","blocks/permissions");
+	define("_MI_XP2_MENU_BLOCK_CHECK","blocks check");
+	define("_MI_XP2_MENU_WP_ADMIN","WordPress Admin");
+	define("_MI_XP2_MOD_ADMIN","Module Admin");
+
+	// The name of this module
+	define("_MI_XP2_NAME","blog");
+
+	// A brief description of this module
+	define("_MI_XP2_DESC","WordPress For XOOPS Community");
+
+	// Sub menu titles
+	define("_MI_XP2_MENU_POST_NEW","New Post");
+	define("_MI_XP2_MENU_EDIT","Edit Post");
+	define("_MI_XP2_MENU_ADMIN","WordPress Admin");
+	define("_MI_XP2_MENU_XPRESS","XPressME Setting");
+	define("_MI_XP2_MENU_TO_MODULE","to Modules");
+	define("_MI_XP2_TO_UPDATE","Update");
+
+	// Module Config
+	define("_MI_LIBXML_PATCH","Force a patch for the libxml2 bug in a block");
+	define("_MI_LIBXML_PATCH_DESC","libxml2 Ver 2.70-2.72 have the bug that '<' and '>' are removed. 
+XPressME acquires a version of libxml2 automatically, and it is adapted a patch if it is necessary. 
+When XPressME cannot acquire a version of libxml2, you can let a patch fit it with this option forcibly.");
+	
+	define("_MI_MEMORY_LIMIT","Memory size(MB) at least necessary for module");
+	define("_MI_MEMORY_LIMIT_DESC","Se o memory_limit avaliam de php.ini &eacute; menor que este valor. Tente o re-coloca&ccedil;&atilde;o de memory_limit com ini_set ('memory_limit', Valor);.");
+
+	// Block Name
+	define("_MI_XP2_BLOCK_COMMENTS","Recent Comments");
+	define("_MI_XP2_BLOCK_CONTENT","Recent Posts with content");
+	define("_MI_XP2_BLOCK_POSTS","Recent Post Title");
+	define("_MI_XP2_BLOCK_CALENDER","Calendar");
+	define("_MI_XP2_BLOCK_POPULAR","Popular post list");
+	define("_MI_XP2_BLOCK_ARCHIVE","Archive");
+	define("_MI_XP2_BLOCK_AUTHORS","Author List");
+	define("_MI_XP2_BLOCK_PAGE","Page");
+	define("_MI_XP2_BLOCK_SEARCH","Search");
+	define("_MI_XP2_BLOCK_TAG","Tag Cloud");
+	define("_MI_XP2_BLOCK_CATEGORY","Category");
+	define("_MI_XP2_BLOCK_META","Meta");
+	define("_MI_XP2_BLOCK_SIDEBAR","Sidebar Navigation");
+	define("_MI_XP2_BLOCK_WIDGET","Widget");
+	define("_MI_XP2_BLOCK_ENHANCED","Enhanced");
+	define("_MI_XP2_BLOCK_BLOG_LIST","Blogs List");
+	define("_MI_XP2_BLOCK_GLOBAL_POSTS","Recent Posts(All blogs)");
+	define("_MI_XP2_BLOCK_GLOBAL_COMM","Recent Comments(All blogs)");
+	define("_MI_XP2_BLOCK_GLOBAL_POPU","Popular post(All blogs)");
+
+	// Notify Categories
+	define('_MI_XP2_NOTCAT_GLOBAL', 'ALL');
+	define('_MI_XP2_NOTCAT_GLOBALDSC', 'Notification option in the entire blog');
+	define('_MI_XP2_NOTCAT_CAT', 'Category under selection');
+	define('_MI_XP2_NOTCAT_CATDSC', 'Notification option to category under selection');
+	define('_MI_XP2_NOTCAT_AUTHOR', 'Author who is selecting it'); 
+	define('_MI_XP2_NOTCAT_AUTHORDSC', 'Notification option to author who is selecting it');
+	define('_MI_XP2_NOTCAT_POST', 'Article on display'); 
+	define('_MI_XP2_NOTCAT_POSTDSC', 'Notification option to article on display');
+
+	// Each Notifications
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITING', 'Approval waiting');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGCAP', 'It notifies when the contribution and the edit that requires approving are done. Manager exclusive use');
+	define('_MI_XP2_NOTIFY_GLOBAL_WAITINGSBJ', '[{X_SITENAME}] {X_MODULE}: Approval waiting');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOST', 'Contribution of article');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTCAP', 'It notifies when the article is contributed in either of the entire this blog. ');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENT', 'Comment contribution');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTCAP', 'It notifies when the comment is contributed in either of the entire this blog. ');
+	define('_MI_XP2_NOTIFY_GLOBAL_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: "{XPRESS_POST_TITLE}"');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWPOST', 'Article contribution to selection category');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTCAP', 'It notifies when there is an article contribution in this category.');
+	define('_MI_XP2_NOTIFY_CAT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}" (Condition:Category="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENT', 'Comment contribution to selection category');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTCAP', 'It notifies when there is a comment contribution in this category. ');
+	define('_MI_XP2_NOTIFY_CAT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Category="{XPRESS_CAT_TITLE}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWPOST', 'Article contribution by selection contributor');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTCAP', 'It notifies when there is an article contribution from this contributor. ');
+	define('_MI_XP2_NOTIFY_AUT_NEWPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}" (Condition:Author="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENT', 'Comment contribution to selection contributor article');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTCAP', 'It notifies when the comment contribution is in the article by this contributor. ');
+	define('_MI_XP2_NOTIFY_AUT_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Author="{XPRESS_AUTH_NAME}")');
+
+	define('_MI_XP2_NOTIFY_POST_EDITPOST', 'Article change');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTCAP', 'It notifies when there is a change in the article on the display. ');
+	define('_MI_XP2_NOTIFY_POST_EDITPOSTSBJ', '[{XPRESS_BLOG_NAME}]Article: "{XPRESS_POST_TITLE}"Change (Condition:Article specification)');
+
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENT', 'Comment contribution to article');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTCAP', 'It notifies when the comment is contributed in the article on the display. ');
+	define('_MI_XP2_NOTIFY_POST_NEWCOMMENTSBJ', '[{XPRESS_BLOG_NAME}]Comment: (Article"{XPRESS_POST_TITLE}") (Condition:Article specification)');
+
+}
+?>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-config.php	(revision 821)
@@ -0,0 +1,88 @@
+<?php
+/** It is an additional loading for XPressME. */
+require_once dirname( __FILE__ ).'/include/add_xpress_config.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');
+define('AUTH_SALT',        'put your unique phrase here');
+define('SECURE_AUTH_SALT', 'put your unique phrase here');
+define('LOGGED_IN_SALT',   'put your unique phrase here');
+define('NONCE_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 English.
+ *
+ * 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', '');
+
+/* That's all, stop editing! Happy blogging. */
+
+/** WordPress absolute path to the Wordpress directory. */
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+/** Processing for XPressME is done.*/
+require_once( ABSPATH .'/include/add_xpress_process.php');
+
+require_once(ABSPATH.'wp-settings.php');
+?>
Index: /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot
===================================================================
--- /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot	(revision 821)
+++ /trunk/extras/xpress_i18n/template/xpressme_modules_root/wp-content/plugins/xpressme/language/xpressme-lang.pot	(revision 821)
@@ -0,0 +1,769 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR XPressME
+# This file is distributed under the same license as the XPressME package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: XPressME Plugin\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-08-23 09:53+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: xpressme.php:59
+msgid "Display Settings"
+msgstr ""
+
+#: xpressme.php:60
+msgid "Integration Settings"
+msgstr ""
+
+#: xpressme.php:61
+msgid "Other Settings"
+msgstr ""
+
+#: xpressme.php:64
+msgid "Upgrade"
+msgstr ""
+
+#: xpressme.php:65
+msgid "to Modules Admin"
+msgstr ""
+
+#: xpressme.php:196
+msgid "XPressME Display Setting"
+msgstr ""
+
+#: xpressme.php:202
+msgid "Thema Sidebar Display"
+msgstr ""
+
+#: xpressme.php:203
+#: xpressme.php:296
+#: xpressme.php:302
+#: xpressme.php:307
+#: xpressme.php:313
+#: xpressme_class.php:470
+#: xpressme_class.php:488
+#: xpressme_class.php:675
+#: xpressme_class.php:686
+#: xpressme_class.php:710
+msgid "YES"
+msgstr ""
+
+#: xpressme.php:204
+#: xpressme.php:297
+#: xpressme.php:303
+#: xpressme.php:308
+#: xpressme.php:314
+#: xpressme_class.php:471
+#: xpressme_class.php:489
+#: xpressme_class.php:676
+#: xpressme_class.php:687
+#: xpressme_class.php:711
+msgid "NO"
+msgstr ""
+
+#: xpressme.php:213
+#: xpressme.php:265
+#: xpressme.php:324
+msgid "Update Config"
+msgstr ""
+
+#: xpressme.php:214
+#: xpressme.php:266
+#: xpressme.php:325
+msgid "Preset Config"
+msgstr ""
+
+#: xpressme.php:247
+msgid "XPressME Integration Setting"
+msgstr ""
+
+#: xpressme.php:251
+msgid "Media Upload Base Path"
+msgstr ""
+
+#: xpressme.php:254
+msgid "Use XOOPS UPLOAD PATH"
+msgstr ""
+
+#: xpressme.php:255
+msgid "USE WordPress BASE_PATH"
+msgstr ""
+
+#: xpressme.php:290
+msgid "XPressME Other Setting"
+msgstr ""
+
+#: xpressme.php:295
+msgid "The change tracking of the post is preserved"
+msgstr ""
+
+#: xpressme.php:301
+msgid "Select Multi user mode"
+msgstr ""
+
+#: xpressme.php:306
+msgid "Is the posts author views counted?"
+msgstr ""
+
+#: xpressme.php:312
+msgid "Is SQL debugging window displayed?"
+msgstr ""
+
+#: xpressme.php:317
+msgid "Select warning display of block file version check"
+msgstr ""
+
+#: xpressme.php:318
+msgid "Do display"
+msgstr ""
+
+#: xpressme.php:319
+msgid "Do not display"
+msgstr ""
+
+#: xpressme_class.php:64
+#: xpressme_class.php:418
+msgid "Older Post"
+msgstr ""
+
+#: xpressme_class.php:65
+#: xpressme_class.php:421
+msgid "Newer Post"
+msgstr ""
+
+#: xpressme_class.php:67
+#: xpressme_class.php:424
+msgid "Older Entries"
+msgstr ""
+
+#: xpressme_class.php:68
+#: xpressme_class.php:427
+msgid "Newer Entries"
+msgstr ""
+
+#: xpressme_class.php:82
+#: xpressme_class.php:83
+#: xpressme_class.php:430
+msgid "Read the rest of this entry &raquo;"
+msgstr ""
+
+#: xpressme_class.php:530
+msgid "Single Post Navi Setting"
+msgstr ""
+
+#: xpressme_class.php:535
+#: xpressme_class.php:610
+msgid "Adjustment of Navi link display position"
+msgstr ""
+
+#: xpressme_class.php:538
+msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right"
+msgstr ""
+
+#: xpressme_class.php:539
+msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right"
+msgstr ""
+
+#: xpressme_class.php:545
+msgid "Select Display name of PostNavi Link"
+msgstr ""
+
+#: xpressme_class.php:548
+msgid "Title of post"
+msgstr ""
+
+#: xpressme_class.php:549
+msgid "Title of Navi"
+msgstr ""
+
+#: xpressme_class.php:555
+msgid "Display Navi Title of Old Post Link"
+msgstr ""
+
+#: xpressme_class.php:562
+msgid "Display Navi Title of Newer Post Link"
+msgstr ""
+
+#: xpressme_class.php:569
+#: xpressme_class.php:634
+msgid "Left arrow image src"
+msgstr ""
+
+#: xpressme_class.php:574
+#: xpressme_class.php:589
+#: xpressme_class.php:639
+#: xpressme_class.php:652
+msgid "Not Found"
+msgstr ""
+
+#: xpressme_class.php:584
+#: xpressme_class.php:647
+msgid "Right arrow image src"
+msgstr ""
+
+#: xpressme_class.php:605
+msgid "Posts List Page Navi Setting"
+msgstr ""
+
+#: xpressme_class.php:613
+msgid "'Old Page Link' is displayed in the left, and 'Newer Page Link' is displayed in the right"
+msgstr ""
+
+#: xpressme_class.php:614
+msgid "'Newer Page Link' is displayed in the left, and 'Old Page Link' is displayed in the right"
+msgstr ""
+
+#: xpressme_class.php:620
+msgid "Display Navi Title of Old Page Link"
+msgstr ""
+
+#: xpressme_class.php:627
+msgid "Display Navi Title of Newer Page Link"
+msgstr ""
+
+#: xpressme_class.php:666
+msgid "Dashboard feed Display Setting"
+msgstr ""
+
+#: xpressme_class.php:672
+msgid "Display XPressMe Integration Kit Blog"
+msgstr ""
+
+#: xpressme_class.php:683
+msgid "Display XPressMe Integration Kit Forum"
+msgstr ""
+
+#: xpressme_class.php:701
+msgid "Role Setting at Login"
+msgstr ""
+
+#: xpressme_class.php:707
+msgid "XOOPS administrators role is set as all blog administrators."
+msgstr ""
+
+#: xpressme_class.php:716
+msgid "XOOPS Groupe"
+msgstr ""
+
+#: xpressme_class.php:716
+msgid "WordPress Role"
+msgstr ""
+
+#: xpressme_class.php:716
+msgid "Role is set at each login"
+msgstr ""
+
+#: xpressme_class.php:721
+msgid "module cannot be read"
+msgstr ""
+
+#: xpressme_class.php:762
+#: xpressme_class.php:766
+#: xpressme_class.php:769
+msgid "Default Role of WordPress"
+msgstr ""
+
+#: xpressme_class.php:763
+#: xpressme_class.php:767
+#: xpressme_class.php:770
+msgid "Group User Doesn't Register"
+msgstr ""
+
+#: xpressme_class.php:783
+msgid "Only the Admin can set Group Role Setting"
+msgstr ""
+
+#: xpressme_class.php:805
+msgid "WordPress MultiBlog cannot integrate the comments."
+msgstr ""
+
+#: xpressme_class.php:807
+msgid "Do Not Comment Integration."
+msgstr ""
+
+#: xpressme_class.php:842
+msgid "Create New Forum"
+msgstr ""
+
+#: xpressme_class.php:854
+msgid "Comment integration with D3Forum"
+msgstr ""
+
+#: xpressme_class.php:856
+msgid "Select the forum of D3Forum that does the comment integration from the following lists."
+msgstr ""
+
+#: xpressme_class.php:861
+msgid "Select the Type of display of D3Forum comment."
+msgstr ""
+
+#: xpressme_class.php:863
+#: xpressme_class.php:866
+msgid "Flat"
+msgstr ""
+
+#: xpressme_class.php:864
+#: xpressme_class.php:867
+msgid "Threaded"
+msgstr ""
+
+#: xpressme_class.php:870
+msgid "Select the order of display of D3Forum comment."
+msgstr ""
+
+#: xpressme_class.php:872
+#: xpressme_class.php:875
+msgid "DESC"
+msgstr ""
+
+#: xpressme_class.php:873
+#: xpressme_class.php:876
+msgid "ASC"
+msgstr ""
+
+#: xpressme_class.php:879
+msgid "Number of displays of D3Forum comments."
+msgstr ""
+
+#: xpressme_class.php:882
+msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. "
+msgstr ""
+
+#: xpressme_class.php:883
+msgid "Export to D3Forum"
+msgstr ""
+
+#: xpressme_class.php:884
+msgid "Import from D3Forum"
+msgstr ""
+
+#: xpressme_class.php:897
+msgid "Contents Excerpt Setting"
+msgstr ""
+
+#: xpressme_class.php:902
+msgid "Is the excerpt display done with the archive of contents?"
+msgstr ""
+
+#: xpressme_class.php:909
+msgid "When ASCII character more than the set ratio is included, it is judged ASCII contents. "
+msgstr ""
+
+#: xpressme_class.php:916
+msgid "Excerpt length of word for ASCII contents"
+msgstr ""
+
+#: xpressme_class.php:923
+msgid "Excerpt length of character for multibyte contents"
+msgstr ""
+
+#: xpressme_class.php:930
+msgid "This text is displayed in the link that reads contents not excerpted.(Is not displayed for the blank.)"
+msgstr ""
+
+#: xpressme_class.php:937
+msgid "This text is displayed in the link that more tag (&lt;!--more--&gt;). "
+msgstr ""
+
+#: xpressme_class.php:949
+msgid "Display Mode Setting"
+msgstr ""
+
+#: xpressme_class.php:952
+msgid "Select the XPressME Display Mode."
+msgstr ""
+
+#: xpressme_class.php:957
+msgid "Xoops Mode"
+msgstr ""
+
+#: xpressme_class.php:961
+msgid "WordPress Mode"
+msgstr ""
+
+#: xpressme_class.php:965
+msgid "User select"
+msgstr ""
+
+#: xpressme_class.php:970
+msgid "Select the theme used in the XOOPS Mode."
+msgstr ""
+
+#: xpressme_class.php:975
+msgid "Use WordPress Selected Themes"
+msgstr ""
+
+#: xpressme_class.php:993
+msgid "Header Meta Option"
+msgstr ""
+
+#: xpressme_class.php:998
+msgid "Select the Header keyword."
+msgstr ""
+
+#: xpressme_class.php:1003
+msgid "Xoops KeyWord"
+msgstr ""
+
+#: xpressme_class.php:1006
+msgid "WordPress KeyWord"
+msgstr ""
+
+#: xpressme_class.php:1009
+msgid "WordPress & Xoops KeyWord"
+msgstr ""
+
+#: xpressme_class.php:1015
+msgid "Select the Header Description."
+msgstr ""
+
+#: xpressme_class.php:1020
+msgid "Xoops Description"
+msgstr ""
+
+#: xpressme_class.php:1023
+msgid "WordPress Description"
+msgstr ""
+
+#: xpressme_class.php:1026
+msgid "WordPress & Xoops Description"
+msgstr ""
+
+#: xpressme_class.php:1032
+msgid "Select the Header Robots Index."
+msgstr ""
+
+#: xpressme_class.php:1037
+msgid "Xoops Robots Index"
+msgstr ""
+
+#: xpressme_class.php:1040
+msgid "WordPress Robots Index"
+msgstr ""
+
+#: xpressme_class.php:1086
+#, php-format
+msgid "Unable to create directory %s. Is its parent directory writable by the server?"
+msgstr ""
+
+#: xpressme_widget_class.php:17
+msgid "XPressME User Menu Widget"
+msgstr ""
+
+#: xpressme_widget_class.php:19
+msgid "XPressME MENU"
+msgstr ""
+
+#: xpressme_widget_class.php:143
+#: xpressme_widget_class.php:195
+#: xpressme_widget_class.php:200
+#: xpressme_widget_class.php:205
+msgid "Link"
+msgstr ""
+
+#: xpressme_widget_class.php:144
+#: xpressme_widget_class.php:160
+msgid "Site Home"
+msgstr ""
+
+#: xpressme_widget_class.php:145
+#: xpressme_widget_class.php:165
+msgid "Add New"
+msgstr ""
+
+#: xpressme_widget_class.php:146
+#: xpressme_widget_class.php:170
+msgid "User Profile"
+msgstr ""
+
+#: xpressme_widget_class.php:147
+#: xpressme_widget_class.php:176
+msgid "WordPress Admin"
+msgstr ""
+
+#: xpressme_widget_class.php:148
+#: xpressme_widget_class.php:181
+msgid "Module Admin"
+msgstr ""
+
+#: xpressme_widget_class.php:149
+#: xpressme_widget_class.php:186
+msgid "XPressME Setting"
+msgstr ""
+
+#: xpressme_widget_class.php:150
+msgid "Display Mode Select"
+msgstr ""
+
+#: xpressme_widget_class.php:152
+#: xpressme_widget_class.php:171
+msgid "Auto Setting"
+msgstr ""
+
+#: xpressme_widget_class.php:157
+msgid "User Menu"
+msgstr ""
+
+#: xpressme_widget_class.php:245
+msgid "Title:"
+msgstr ""
+
+#: include/custom_functions.php:113
+#, php-format
+msgid "Permanent Link to %s"
+msgstr ""
+
+#: include/custom_functions.php:498
+#: include/custom_functions.php:531
+#, php-format
+msgid "views :%d"
+msgstr ""
+
+#: include/custom_functions.php:695
+msgid "Main"
+msgstr ""
+
+#: include/custom_functions.php:698
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr ""
+
+#: include/custom_functions.php:701
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr ""
+
+#: include/custom_functions.php:704
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr ""
+
+#: include/custom_functions.php:704
+msgid "F jS, Y"
+msgstr ""
+
+#: include/custom_functions.php:706
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr ""
+
+#: include/custom_functions.php:706
+msgid "F, Y"
+msgstr ""
+
+#: include/custom_functions.php:708
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr ""
+
+#: include/custom_functions.php:708
+msgid "Y"
+msgstr ""
+
+#: include/custom_functions.php:711
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Author"
+msgstr ""
+
+#: include/custom_functions.php:714
+#, php-format
+msgid "Search Results of word &#8216;%s&#8217;"
+msgstr ""
+
+#: include/custom_functions.php:720
+#: include/custom_functions.php:722
+#, php-format
+msgid "Article of %s"
+msgstr ""
+
+#: include/custom_functions.php:744
+#, php-format
+msgid "From %1$s on site %2$s"
+msgstr ""
+
+#: include/custom_functions.php:765
+msgid "No Trackback/Pingback"
+msgstr ""
+
+#: include/custom_functions.php:766
+msgid "One Trackback/Pingback"
+msgstr ""
+
+#: include/custom_functions.php:767
+msgid "% TrackBack/Pingback"
+msgstr ""
+
+#: include/custom_functions.php:945
+msgid "Tags:"
+msgstr ""
+
+#: include/custom_functions.php:988
+msgid "Comments (0)"
+msgstr ""
+
+#: include/custom_functions.php:988
+msgid "Comments (1)"
+msgstr ""
+
+#: include/custom_functions.php:988
+msgid "Comments (%)"
+msgstr ""
+
+#: include/custom_functions.php:992
+#, fuzzy, php-format
+msgid "Views :%d"
+msgstr ""
+
+#: include/custom_functions.php:1070
+msgid "Create New Blog"
+msgstr ""
+
+#: include/custom_functions.php:1096
+msgid "Your Primary Blog"
+msgstr ""
+
+#: include/dashboard_feed.php:19
+msgid "XPressME Integration Kit Blog"
+msgstr ""
+
+#: include/dashboard_feed.php:32
+msgid "XPressME Integration Kit Folum"
+msgstr ""
+
+#: include/dashboard_feed.php:92
+msgid "Unknown Feed"
+msgstr ""
+
+#: include/functions_for_wp_old.php:21
+msgid "<strong>ERROR</strong>: The password field is empty."
+msgstr ""
+
+#: include/functions_for_wp_old.php:29
+msgid "<strong>ERROR</strong>: Invalid username."
+msgstr ""
+
+#: include/functions_for_wp_old.php:37
+msgid "<strong>ERROR</strong>: Incorrect password."
+msgstr ""
+
+#: include/pluggable-override.php:265
+#, php-format
+msgid "If the page does not automatically reload, please click <a href='%s'>here</a>"
+msgstr ""
+
+#: include/xpress_common_functions.php:8
+msgid "After Blog address (URL) is set, it is necessary to set the permalink again."
+msgstr ""
+
+#: include/xpress_common_functions.php:9
+msgid "Can not access WordPress address (URL)."
+msgstr ""
+
+#: include/xpress_common_functions.php:10
+msgid "WordPress Blog address (URL) is different from access URL."
+msgstr ""
+
+#: include/xpress_common_functions.php:210
+msgid "Themes"
+msgstr ""
+
+#: include/xpress_common_functions.php:225
+msgid "Switch to XOOPS mode"
+msgstr ""
+
+#: include/xpress_common_functions.php:229
+#: include/xpress_common_functions.php:232
+msgid "Switch to WordPress mode"
+msgstr ""
+
+#: include/xpress_common_functions.php:390
+#, php-format
+msgid "Block file %1$s is an old version %2$s.<br />used block file %3$s of new version %4$s."
+msgstr ""
+
+#: include/xpress_upgrade.php:13
+msgid "XPressME Upgrade"
+msgstr ""
+
+#: include/xpress_upgrade.php:27
+#, php-format
+msgid "You are using a XPressME Integration Kit development version (%1$s). Cool! Please <a href=\"%2$s\">stay updated</a>."
+msgstr ""
+
+#: include/xpress_upgrade.php:31
+msgid "There is a new version of XPressME Integration Kit available for upgrade"
+msgstr ""
+
+#: include/xpress_upgrade.php:33
+#, php-format
+msgid "You can upgrade to version %s download the package and install it manually:"
+msgstr ""
+
+#: include/xpress_upgrade.php:36
+#: include/xpress_upgrade.php:60
+#, php-format
+msgid "Download %s"
+msgstr ""
+
+#: include/xpress_upgrade.php:41
+#: include/xpress_upgrade.php:68
+#, php-format
+msgid "You can download the differential file from version %s to %s and upgrade it manually:"
+msgstr ""
+
+#: include/xpress_upgrade.php:44
+#: include/xpress_upgrade.php:71
+#, php-format
+msgid "Download differential file for %s"
+msgstr ""
+
+#: include/xpress_upgrade.php:48
+msgid "You have the latest version of XPressME Integration Kit. You do not need to upgrade"
+msgstr ""
+
+#: include/xpress_upgrade.php:57
+#, php-format
+msgid "You can use the development version %s download the package and install it manually:"
+msgstr ""
+
+#: include/xpress_upgrade.php:78
+#, php-format
+msgid "There is no response from <a href=\"%s\">version check API</a> now. sorry, please confirm it after."
+msgstr ""
+
+#: include/xpress_upgrade.php:235
+#, php-format
+msgid "XPressME Integration Kit Version %1$s is available! <a href=\"%2$s\">Please update now</a>."
+msgstr ""
+
+#: include/xpress_upgrade.php:237
+#, php-format
+msgid "XPressME Integration Kit Version %1$s is available! Please notify the site administrator."
+msgstr ""
+
+#~ msgid "Title"
+#~ msgstr ""
+#~ msgid "URL"
+#~ msgstr ""
+#~ msgid "more"
+#~ msgstr ""
+#~ msgid "More Link Text (Is not displayed for the blank.)"
+#~ msgstr ""
+#~ msgid "Calendar"
+#~ msgstr ""
+#~ msgid "%1$s %2$s|Used as a calendar caption"
+#~ msgstr ""
+#~ msgid "View posts for %1$s %2$s"
+#~ msgstr ""
+#~ msgid "XPressME Configuration Page"
+#~ msgstr ""
+
