Changeset 141 for trunk/wp-content/plugins/xpressme
- Timestamp:
- Mar 29, 2009, 2:09:34 PM (16 years ago)
- Location:
- trunk/wp-content/plugins/xpressme
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/include/custom_functions.php
r140 r141 264 264 function xpress_conditional_title($display = true) 265 265 { 266 $output = __('Main', 'xpress ');266 $output = __('Main', 'xpressme'); 267 267 if (is_category()) 268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpress '), single_cat_title('', false));268 $output = sprintf(__('Archive for the ‘%s’ Category', 'xpressme'), single_cat_title('', false)); 269 269 if (is_tag()) 270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpress '), single_tag_title('', false) );270 $output = sprintf(__('Posts Tagged ‘%s’', 'xpressme'), single_tag_title('', false) ); 271 271 if (is_day()) 272 $output = sprintf(_ c('Archive for %s|Daily archive page', 'xpress'), get_the_time(__('F jS, Y', 'xpress')));272 $output = sprintf(__('Archive for %s|Daily archive page', 'xpressme'), get_the_time(__('F jS, Y', 'xpressme'))); 273 273 if (is_month()) 274 $output = sprintf(_ c('Archive for %s|Monthly archive page', 'xpress'), get_the_time(__('F, Y', 'xpress')));274 $output = sprintf(__('Archive for %s|Monthly archive page', 'xpressme'), get_the_time(__('F, Y', 'xpressme'))); 275 275 if (is_year()) 276 $output = sprintf(_ c('Archive for %s|Yearly archive page', 'xpress'), get_the_time(__('Y', 'xpress')));276 $output = sprintf(__('Archive for %s|Yearly archive page', 'xpressme'), get_the_time(__('Y', 'xpressme'))); 277 277 if (is_author()) 278 $output = get_author_name( get_query_var('author')); __('Author Archive', 'xpress');278 $output = sprintf(__('Archive for the ‘%s’ Author', 'xpressme'), get_author_name( get_query_var('author'))); 279 279 if (is_search()) 280 $output = __('Search Results', 'xpress ');280 $output = __('Search Results', 'xpressme'); 281 281 282 282 if ($display) -
trunk/wp-content/plugins/xpressme/include/xpress_common_functions.php
r140 r141 128 128 } 129 129 130 function block_cache_refresh() 131 { 132 global $xoops_db; 133 $mid = get_xpress_modid(); 134 $sql = "SELECT bid,options,func_file FROM " . get_xoops_prefix() . "newblocks WHERE mid = $mid"; 135 $blocks = $xoops_db->get_results($sql); 136 $mydirname = get_xpress_dir_name(); 137 require_once get_xpress_dir_path() . '/include/xpress_block_render.php'; 138 139 140 foreach($blocks as $block){ 141 $func_file = $block->func_file; 142 $call_theme_function_name = str_replace(".php", "", $func_file); 143 $inc_theme_file_name = str_replace(".php", "", $func_file) . '_theme.php'; 144 $cache_title = str_replace(".php", "", $func_file); 145 $blockID = $block->bid; 146 $options = explode("|", $block->options); 147 148 $block_theme_file = get_block_file_path($mydirname,$inc_theme_file_name); 149 require_once $block_theme_file; 150 $block_render = $call_theme_function_name($options); //The block name and the called function name should be assumed to be the same name. 151 $xml['block'] = $block_render; 152 $xml['block']['options'] = $block->options; 153 xpress_block_cache_write($mydirname,$cache_title. $blockID, $xml); 154 } 155 } 130 156 ?> -
trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
r140 r141 3 3 "Project-Id-Version: XPressME Plugin\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2009-03-2 5 00:47+0900\n"5 "PO-Revision-Date: 2009-03-29 13:01+0900\n" 6 6 "Last-Translator: toemon <toychee@toemon.com>\n" 7 7 "Language-Team: \n" … … 30 30 31 31 #: xpressme_class.php:204 32 #: xpressme_class.php:41 033 #: xpressme_class.php:4 1534 #: xpressme_class.php:4 3635 #: xpressme_class.php:44 132 #: xpressme_class.php:416 33 #: xpressme_class.php:421 34 #: xpressme_class.php:442 35 #: xpressme_class.php:447 36 36 msgid "YES" 37 37 msgstr "はい" 38 38 39 39 #: xpressme_class.php:205 40 #: xpressme_class.php:41 141 #: xpressme_class.php:4 1642 #: xpressme_class.php:4 3743 #: xpressme_class.php:44 240 #: xpressme_class.php:417 41 #: xpressme_class.php:422 42 #: xpressme_class.php:443 43 #: xpressme_class.php:448 44 44 msgid "NO" 45 45 msgstr "いいえ" … … 61 61 msgstr "ログイン時、常に権限を更新する" 62 62 63 #: xpressme_class.php:2 6964 #: xpressme_class.php:27 365 #: xpressme_class.php:2 7663 #: xpressme_class.php:274 64 #: xpressme_class.php:278 65 #: xpressme_class.php:281 66 66 msgid "Default Role of WordPress" 67 67 msgstr "WordPressのデフォルト権限" 68 68 69 #: xpressme_class.php:27 070 #: xpressme_class.php:27 471 #: xpressme_class.php:2 7769 #: xpressme_class.php:275 70 #: xpressme_class.php:279 71 #: xpressme_class.php:282 72 72 msgid "Group User Doesn't Register" 73 73 msgstr "ユーザ登録しない" 74 74 75 #: xpressme_class.php:3 0575 #: xpressme_class.php:311 76 76 msgid "Do Not Comment Integration." 77 77 msgstr "コメント統合しません。" 78 78 79 #: xpressme_class.php:3 3979 #: xpressme_class.php:345 80 80 msgid "Comment integration with D3Forum" 81 81 msgstr "D3Forumとのコメント統合" 82 82 83 #: xpressme_class.php:34 183 #: xpressme_class.php:347 84 84 msgid "Select the forum of D3Forum that does the comment integration from the following lists." 85 85 msgstr "以下のリストからコメント統合をするD3Forumのフォーラムを選択してください。" 86 86 87 #: xpressme_class.php:3 4587 #: xpressme_class.php:351 88 88 msgid "Select the Type of display of D3Forum comment." 89 89 msgstr "D3Forumの表示タイプを選択" 90 90 91 #: xpressme_class.php:3 4792 #: xpressme_class.php:35 091 #: xpressme_class.php:353 92 #: xpressme_class.php:356 93 93 msgid "Flat" 94 94 msgstr "フラット" 95 95 96 #: xpressme_class.php:3 4897 #: xpressme_class.php:35 196 #: xpressme_class.php:354 97 #: xpressme_class.php:357 98 98 msgid "Threaded" 99 99 msgstr "スレッド" 100 100 101 #: xpressme_class.php:3 54101 #: xpressme_class.php:360 102 102 msgid "Select the order of display of D3Forum comment." 103 103 msgstr "D3Forumコメントの表示順を選択" 104 104 105 #: xpressme_class.php:3 56106 #: xpressme_class.php:3 59105 #: xpressme_class.php:362 106 #: xpressme_class.php:365 107 107 msgid "DESC" 108 108 msgstr "降順" 109 109 110 #: xpressme_class.php:3 57111 #: xpressme_class.php:36 0110 #: xpressme_class.php:363 111 #: xpressme_class.php:366 112 112 msgid "ASC" 113 113 msgstr "昇順" 114 114 115 #: xpressme_class.php:36 3115 #: xpressme_class.php:369 116 116 msgid "Number of displays of D3Forum comments." 117 117 msgstr "D3Forumのコメント表示数" 118 118 119 #: xpressme_class.php:3 67119 #: xpressme_class.php:373 120 120 msgid "The import and the export between Wordpress Comments and the D3Forum Posts can be done. " 121 121 msgstr "WordPressコメントとD3Forumポスト間の一括転送(エクスポート・インポート)" 122 122 123 #: xpressme_class.php:3 68123 #: xpressme_class.php:374 124 124 msgid "Export to D3Forum" 125 125 msgstr "D3Forumへ一括エクスポート" 126 126 127 #: xpressme_class.php:3 69127 #: xpressme_class.php:375 128 128 msgid "Import from D3Forum" 129 129 msgstr "D3Forumから一括インポート" 130 130 131 #: xpressme_class.php:40 0131 #: xpressme_class.php:406 132 132 msgid "XPressME Configuration Page" 133 133 msgstr "XPressMEの設定ページ" 134 134 135 #: xpressme_class.php:4 04135 #: xpressme_class.php:410 136 136 msgid "Media Upload Base Path" 137 137 msgstr "メディアアップロードのベースパス設定" 138 138 139 #: xpressme_class.php:4 05139 #: xpressme_class.php:411 140 140 msgid "Use XOOPS UPLOAD PATH" 141 141 msgstr "XOOPSのアップロードパスを使用する。" 142 142 143 #: xpressme_class.php:4 06143 #: xpressme_class.php:412 144 144 msgid "USE WordPress BASE_PATH" 145 145 msgstr "WordPressのベースパスを使用する。" 146 146 147 #: xpressme_class.php:4 09147 #: xpressme_class.php:415 148 148 msgid "Thema Sidebar Display" 149 149 msgstr "テーマ表示時にサイドバー表示する。" 150 150 151 #: xpressme_class.php:4 14151 #: xpressme_class.php:420 152 152 msgid "The change tracking of the post is preserved" 153 153 msgstr "投稿の変更履歴を有効にする。" 154 154 155 #: xpressme_class.php:4 19155 #: xpressme_class.php:425 156 156 msgid "Display Navi Title of Old Post Link" 157 157 msgstr "古い記事へのナビタイトルを設定" 158 158 159 #: xpressme_class.php:42 2159 #: xpressme_class.php:428 160 160 msgid "Display Navi Title of Newer Post Link" 161 161 msgstr "新しい記事へのナビタイトルを設定" 162 162 163 #: xpressme_class.php:4 25163 #: xpressme_class.php:431 164 164 msgid "Select Display name of PostNavi Link" 165 165 msgstr "投稿記事リンクナビのタイトル設定" 166 166 167 #: xpressme_class.php:4 26167 #: xpressme_class.php:432 168 168 msgid "Title of post" 169 169 msgstr "投稿記事のタイトルを表示" 170 170 171 #: xpressme_class.php:4 27171 #: xpressme_class.php:433 172 172 msgid "Title of Navi" 173 173 msgstr "ナビタイトルを表示" 174 174 175 #: xpressme_class.php:43 0175 #: xpressme_class.php:436 176 176 msgid "Adjustment of Navi link display position" 177 177 msgstr "投稿記事ナビリンクの表示位置設定" 178 178 179 #: xpressme_class.php:43 1179 #: xpressme_class.php:437 180 180 msgid "'Old Post Link' is displayed in the left, and 'Newer Post Link' is displayed in the right" 181 181 msgstr "古い記事へのリンクを左に、より新しい記事へのリンクを右に表示" 182 182 183 #: xpressme_class.php:43 2183 #: xpressme_class.php:438 184 184 msgid "'Newer Post Link' is displayed in the left, and 'Old Post Link' is displayed in the right" 185 185 msgstr "より新しい記事へのリンクを左に、古い記事へのリンクを右に表示" 186 186 187 #: xpressme_class.php:4 35187 #: xpressme_class.php:441 188 188 msgid "Is the posts author views counted?" 189 189 msgstr "投稿者の閲覧をカウントしますか?" 190 190 191 #: xpressme_class.php:44 0191 #: xpressme_class.php:446 192 192 msgid "Is SQL debugging window displayed?" 193 193 msgstr "SQLデバッグウィンドを表示しますか?" 194 194 195 #: xpressme_class.php:45 2195 #: xpressme_class.php:458 196 196 msgid "Update Config" 197 197 msgstr "更新" 198 198 199 #: xpressme_class.php:45 3199 #: xpressme_class.php:459 200 200 msgid "Preset Config" 201 201 msgstr "プリセット" … … 206 206 msgstr "閲覧数 :%d" 207 207 208 #: include/custom_functions.php:266 209 msgid "Main" 210 msgstr "メイン" 211 212 #: include/custom_functions.php:268 213 #, php-format 214 msgid "Archive for the ‘%s’ Category" 215 msgstr "カテゴリー ‘%s’ のアーカイブ" 216 217 #: include/custom_functions.php:270 218 #, php-format 219 msgid "Posts Tagged ‘%s’" 220 msgstr "" 221 222 #: include/custom_functions.php:272 223 #, php-format 224 msgid "Archive for %s|Daily archive page" 225 msgstr "%sの日別アーカイブ" 226 227 #: include/custom_functions.php:272 228 msgid "F jS, Y" 229 msgstr "Y年n月j日" 230 231 #: include/custom_functions.php:274 232 #, php-format 233 msgid "Archive for %s|Monthly archive page" 234 msgstr "%sの月別アーカイブ" 235 236 #: include/custom_functions.php:274 237 msgid "F, Y" 238 msgstr "Y年n月" 239 240 #: include/custom_functions.php:276 241 #, php-format 242 msgid "Archive for %s|Yearly archive page" 243 msgstr "%sの年別アーカイブ " 244 245 #: include/custom_functions.php:276 246 msgid "Y" 247 msgstr "Y年" 248 249 #: include/custom_functions.php:278 250 #, php-format 251 msgid "Archive for the ‘%s’ Author" 252 msgstr "投稿者 ‘%s’ のアーカイブ" 253 254 #: include/custom_functions.php:280 255 msgid "Search Results" 256 msgstr "検索結果" 257
Note: See TracChangeset
for help on using the changeset viewer.