Index: trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
===================================================================
--- trunk/wp-content/plugins/xpressme/language/xpressme-ja.po	(revision 27)
+++ trunk/wp-content/plugins/xpressme/language/xpressme-ja.po	(revision 28)
@@ -3,5 +3,5 @@
 "Project-Id-Version: fckeditor for xpress\n"
 "POT-Creation-Date: \n"
-"PO-Revision-Date: 2008-12-14 13:55+0900\n"
+"PO-Revision-Date: 2008-12-15 17:50+0900\n"
 "Last-Translator: toemon <toychee@toemon.com>\n"
 "Language-Team: \n"
@@ -12,40 +12,52 @@
 "X-Poedit-Country: JAPAN\n"
 "X-Poedit-KeywordsList: _e;__\n"
-"X-Poedit-Basepath: C:\\XPressME2_SVN\\trunk\\wp-content\\plugins\\xpressme\n"
+"X-Poedit-Basepath: C:\\xampp\\htdocs\\cube\\modules\\xpress2\\wp-content\\plugins\\xpressme\n"
 "X-Poedit-SearchPath-0: .\n"
 
-#: xpressme_class.php:19
+#: xpressme_class.php:20
 msgid "XPressME Settings"
 msgstr "XPressME設定"
 
-#: xpressme_class.php:66
+#: xpressme_class.php:73
+#: xpressme_class.php:118
+#: xpressme_class.php:123
 msgid "YES"
 msgstr "はい"
 
-#: xpressme_class.php:67
+#: xpressme_class.php:74
+#: xpressme_class.php:119
+#: xpressme_class.php:124
 msgid "NO"
 msgstr "いいえ"
 
-#: xpressme_class.php:101
+#: xpressme_class.php:108
 msgid "XPressME Configuration Page"
 msgstr "XPressMEの設定ページ"
 
-#: xpressme_class.php:105
+#: xpressme_class.php:112
 msgid "Media Upload Base Path"
 msgstr "メディアアップロードのベースパス設定"
 
-#: xpressme_class.php:106
+#: xpressme_class.php:113
 msgid "Use XOOPS UPLOAD PATH"
 msgstr "XOOPSのアップロードパスを使用する。"
 
-#: xpressme_class.php:107
+#: xpressme_class.php:114
 msgid "USE WordPress BASE_PATH"
 msgstr "WordPressのベースパスを使用する。"
 
-#: xpressme_class.php:114
+#: xpressme_class.php:117
+msgid "Thema Sidebar Display"
+msgstr "テーマ表示時にサイドバー表示する。"
+
+#: xpressme_class.php:122
+msgid "The change tracking of the post is preserved"
+msgstr "投稿の変更履歴を有効にする。"
+
+#: xpressme_class.php:131
 msgid "Update Config"
 msgstr "更新"
 
-#: xpressme_class.php:115
+#: xpressme_class.php:132
 msgid "Preset Config"
 msgstr "プリセット"
Index: trunk/wp-content/plugins/xpressme/xpressme.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme.php	(revision 27)
+++ trunk/wp-content/plugins/xpressme/xpressme.php	(revision 28)
@@ -14,4 +14,7 @@
 add_action('admin_head', array(&$xpessme, 'add_admin_head'));
 add_filter("upload_dir",array(&$xpessme, 'xpress_upload_filter'),	1);		// Change wp-include/wp_upload_dir()
+if (!$xpressme->is_save_post_revision){
+	remove_action( 'pre_post_update', 'wp_save_post_revision' );			// Not Save Post Revision
+}
 
 ?>
Index: trunk/wp-content/plugins/xpressme/xpressme_class.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 27)
+++ trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 28)
@@ -7,5 +7,5 @@
 	var $is_use_xoops_upload_path;
 	var $is_theme_sidebar_disp;
-	
+	var $is_save_post_revision;
 	//constructor
 	function XPressME_Class()
@@ -32,4 +32,5 @@
 		$this->is_use_xoops_upload_path = true;
 		$this->is_theme_sidebar_disp = true;
+		$this->is_save_post_revision = true;
 	}
 	
@@ -65,4 +66,5 @@
 		$this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path']));
 		$this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp']));
+		$this->is_save_post_revision = stripslashes(trim($_POST['ch_is_save_post_revision']));
 	}
 	
@@ -116,4 +118,9 @@
 												__('NO','xpressme')
 												);
+		echo				$this->yes_no_radio_option('is_save_post_revision',
+												__('The change tracking of the post is preserved','xpressme'),
+												__('YES','xpressme'),
+												__('NO','xpressme')
+												);
 			
 //		$this->is_use_xoops_upload_path_html();
@@ -149,4 +156,5 @@
 		return $uploads;
 	}	
+
 }
 ?>
