Changeset 28 for trunk/wp-content/plugins/xpressme
- Timestamp:
- Dec 15, 2008, 5:47:59 PM (16 years ago)
- Location:
- trunk/wp-content/plugins/xpressme
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
r26 r28 3 3 "Project-Id-Version: fckeditor for xpress\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2008-12-1 4 13:55+0900\n"5 "PO-Revision-Date: 2008-12-15 17:50+0900\n" 6 6 "Last-Translator: toemon <toychee@toemon.com>\n" 7 7 "Language-Team: \n" … … 12 12 "X-Poedit-Country: JAPAN\n" 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 "X-Poedit-Basepath: C:\\ XPressME2_SVN\\trunk\\wp-content\\plugins\\xpressme\n"14 "X-Poedit-Basepath: C:\\xampp\\htdocs\\cube\\modules\\xpress2\\wp-content\\plugins\\xpressme\n" 15 15 "X-Poedit-SearchPath-0: .\n" 16 16 17 #: xpressme_class.php: 1917 #: xpressme_class.php:20 18 18 msgid "XPressME Settings" 19 19 msgstr "XPressME設定" 20 20 21 #: xpressme_class.php:66 21 #: xpressme_class.php:73 22 #: xpressme_class.php:118 23 #: xpressme_class.php:123 22 24 msgid "YES" 23 25 msgstr "はい" 24 26 25 #: xpressme_class.php:67 27 #: xpressme_class.php:74 28 #: xpressme_class.php:119 29 #: xpressme_class.php:124 26 30 msgid "NO" 27 31 msgstr "いいえ" 28 32 29 #: xpressme_class.php:10 133 #: xpressme_class.php:108 30 34 msgid "XPressME Configuration Page" 31 35 msgstr "XPressMEの設定ページ" 32 36 33 #: xpressme_class.php:1 0537 #: xpressme_class.php:112 34 38 msgid "Media Upload Base Path" 35 39 msgstr "メディアアップロードのベースパス設定" 36 40 37 #: xpressme_class.php:1 0641 #: xpressme_class.php:113 38 42 msgid "Use XOOPS UPLOAD PATH" 39 43 msgstr "XOOPSのアップロードパスを使用する。" 40 44 41 #: xpressme_class.php:1 0745 #: xpressme_class.php:114 42 46 msgid "USE WordPress BASE_PATH" 43 47 msgstr "WordPressのベースパスを使用する。" 44 48 45 #: xpressme_class.php:114 49 #: xpressme_class.php:117 50 msgid "Thema Sidebar Display" 51 msgstr "テーマ表示時にサイドバー表示する。" 52 53 #: xpressme_class.php:122 54 msgid "The change tracking of the post is preserved" 55 msgstr "投稿の変更履歴を有効にする。" 56 57 #: xpressme_class.php:131 46 58 msgid "Update Config" 47 59 msgstr "更新" 48 60 49 #: xpressme_class.php:1 1561 #: xpressme_class.php:132 50 62 msgid "Preset Config" 51 63 msgstr "プリセット" -
trunk/wp-content/plugins/xpressme/xpressme.php
r19 r28 14 14 add_action('admin_head', array(&$xpessme, 'add_admin_head')); 15 15 add_filter("upload_dir",array(&$xpessme, 'xpress_upload_filter'), 1); // Change wp-include/wp_upload_dir() 16 if (!$xpressme->is_save_post_revision){ 17 remove_action( 'pre_post_update', 'wp_save_post_revision' ); // Not Save Post Revision 18 } 16 19 17 20 ?> -
trunk/wp-content/plugins/xpressme/xpressme_class.php
r26 r28 7 7 var $is_use_xoops_upload_path; 8 8 var $is_theme_sidebar_disp; 9 9 var $is_save_post_revision; 10 10 //constructor 11 11 function XPressME_Class() … … 32 32 $this->is_use_xoops_upload_path = true; 33 33 $this->is_theme_sidebar_disp = true; 34 $this->is_save_post_revision = true; 34 35 } 35 36 … … 65 66 $this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path'])); 66 67 $this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp'])); 68 $this->is_save_post_revision = stripslashes(trim($_POST['ch_is_save_post_revision'])); 67 69 } 68 70 … … 116 118 __('NO','xpressme') 117 119 ); 120 echo $this->yes_no_radio_option('is_save_post_revision', 121 __('The change tracking of the post is preserved','xpressme'), 122 __('YES','xpressme'), 123 __('NO','xpressme') 124 ); 118 125 119 126 // $this->is_use_xoops_upload_path_html(); … … 149 156 return $uploads; 150 157 } 158 151 159 } 152 160 ?>
Note: See TracChangeset
for help on using the changeset viewer.