- Timestamp:
- Mar 17, 2009, 6:45:27 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/xpress_templates_make.php
r109 r110 78 78 'calender_block.html', 79 79 'popular_posts_block.html', 80 'archives_block.html', 81 'authors_block.html', 80 82 'index.html', 81 83 ); -
trunk/language/ja_utf8/blocks.php
r109 r110 2 2 if( ! defined( 'XPRESS_BLOCK_LANG_INCLUDED' ) ) { 3 3 define( 'XPRESS_BLOCK_LANG_INCLUDED' , 1 ) ; 4 // general 4 5 define("_MB_XPRESS_COUNT",'表示数'); 5 6 define("_MB_XPRESS_LENGTH","長さ"); 7 define("_MB_XPRESS_ALL","すべて"); 8 define("_MB_XPRESS_BLOCK_CACHE_ERR","キャッシュが存在しません。<br />最初に%sモジュールにアクセスしてください。"); 9 define("_MB_XPRESS_SHOW_NUM_OF_POST","エントリー数の表示"); 10 define("_MB_XPRESS_SHOW_DROP_DOWN","ドロップダウンリストで表示"); 11 define("_MB_XPRESS_HIDE_EMPTY","エントリーのない項目をリスト一覧から除く"); 12 13 // recent comment block 6 14 define("_MB_XPRESS_COMM_DISP_AUTH","コメント投稿者を表示する"); 7 15 define("_MB_XPRESS_COMM_DISP_TYPE","コメントタイプを表示する"); … … 10 18 define("_MB_XPRESS_TRUCKBACK","トラックバック"); 11 19 define("_MB_XPRESS_PINGBACK","ピンバック"); 12 define("_MB_XPRESS_ALL","すべて");20 13 21 // recent posts content 14 22 define("_MB_XPRESS_P_EXCEPT","記事を概要で表示する"); … … 16 24 define("_MB_XPRESS_CATS_SELECT","対象のカテゴリー選択"); 17 25 define("_MB_XPRESS_TAGS_SELECT","対象のタグ選択(複数ある場合はカンマ区切りで入力"); 26 18 27 // recent posts list 19 28 define("_MB_XPRESS_REDNEW_DAYS","赤のNewマークを表示する日数"); 20 define("_MB_XPRESS_GREENNEW_DAYS","緑のNewマークを表示する日数"); 21 22 define("_MB_XPRESS_BLOCK_CACHE_ERR","キャッシュが存在しません。<br />最初に%sモジュールにアクセスしてください。"); 29 define("_MB_XPRESS_GREENNEW_DAYS","緑のNewマークを表示する日数"); 23 30 24 31 // calender … … 28 35 // popular 29 36 define("_MB_MONTH_RANGE","指定月数内のものを表示(0;指定なし)"); 37 38 // archives 39 define("_MB_XPRESS_ARC_MONTH","月間アーカイブ"); 40 define("_MB_XPRESS_ARC_WEEK","週間アーカイブ"); 41 define("_MB_XPRESS_ARC_TYPE","アーカイブタイプ"); 42 43 // authors 44 define("_MB_XPRESS_EXCLUEDEADMIN","リスト一覧から管理人を除く"); 45 define("_MB_XPRESS_SHOW_FULLNAME","著者名をフルネームで表示"); 46 47 30 48 } 31 49 ?> -
trunk/language/ja_utf8/modinfo.php
r109 r110 22 22 define("_MI_XPRESS_BLOCK_CALENDER","カレンダー"); 23 23 define("_MI_XPRESS_BLOCK_POPULAR","人気記事リスト"); 24 define("_MI_XPRESS_BLOCK_ARCHIVE","アーカイブ"); 25 define("_MI_XPRESS_BLOCK_AUTHORS","投稿者"); 24 26 25 27 // Notify Categories -
trunk/templates/source/popular_posts_block.html
r109 r110 1 1 <{* ************************** usage **************************** 2 2 The template tag of the following list can be used. 3 <{$block.data_count}> 4 <{$content.post_id}> 5 <{$content.post_title}> 6 <{$content.post_date}> 7 <{$content.post_time}> 8 <{$content.post_date_time}> 9 <{$content.post_modified_date}> 10 <{$content.post_modified_time}> 11 <{$content.post_modified_date_time}> 12 <{$content.post_author}> 13 <{$content.post_category}> 14 <{$content.post_tags}> 15 <{$content.post_views}> 16 <{$content.comment_link}> 17 <{$content.trackback_url}> 3 <{$block.err_message}> // When the block cannot be displayed, this outputs the reason. Please do not delete it. 4 <{$block.data_count}> // The number of contents is displayed. 5 <{$block.contents}> // Data array of contents. 6 // Examples of <{$block.contents}> 7 <{foreach from=$block.contents item=content}> // Loop 8 <{$content.post_id}> // Displays the numeric ID of the post. 9 <{$content.post_title}> // Displays the post's permalink, where the link text value is the posts title name. 10 <{$content.post_date}> // Displays the published date of a post. Format at date set by general setting of Wordpress. 11 <{$content.post_time}> // Displays the published time of a post. Format at time set by general setting of Wordpress. 12 <{$content.post_date_time}> // Displays the published date-time of a post. 13 <{$content.post_modified_date}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 14 <{$content.post_modified_time}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 15 <{$content.post_modified_date_time}> // Displays the modified date-time of a post. 16 <{$content.post_author}> // Displays the author's archive link, where the link text value is the user's Display name. 17 <{$content.post_category}> // Displays a link to the category or categories a post belongs to. 18 <{$content.post_tags}> // Displays a link to the tag or tags a post belongs to. 19 <{$content.post_views}> // Displays the number of posts viewer. 20 <{$content.comment_link}> // Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 21 <{$content.trackback_url}> // Displays the trackback URL for the current post. 22 <{/foreach}> // End of Loop 18 23 ************************* End of usage ************************ *}> 19 24 <{* Start Template *}> -
trunk/templates/source/recent_comments_block.html
r96 r110 1 1 <{* ************************** usage **************************** 2 2 The template tag of the following list can be used. 3 <{$block.data_count}> 4 <{$content.from_auther_to_post}> 5 <{$content.comment_ID}> 6 <{$content.comment_post_ID}> 7 <{$content.comment_date}> 8 <{$content.comment_date_time}> 9 <{$content.comment_content}> 10 <{$content.comment_excerpt}> 11 <{$content.comment_link}> 12 <{$content.comment_title}> 13 <{$content.comment_title_link}> 14 <{$content.post_link}> 15 <{$content.post_title}> 16 <{$content.post_title_link}> 17 <{$content.author_link}> 18 <{$content.author_name}> 19 <{$content.author_name_link}> 20 <{$content.comment_type}> 3 <{$block.err_message}> // When the block cannot be displayed, this outputs the reason. Please do not delete it. 4 <{$block.data_count}> // The number of contents is displayed. 5 <{$block.contents}> // Data array of contents. 6 // Examples of <{$block.contents}> 7 <{foreach from=$block.contents item=content}> // Loop 8 <{$content.from_auther_to_post}> // It is displayed by "Author of the comment on the post" format. Each link is included in it. 9 <{$content.comment_ID}> // Displays the numeric ID of a comment. 10 <{$content.comment_post_ID}> // Displays the numeric ID of the target post for the comment is displayed. 11 <{$content.comment_date}> // Displays the published date of a comment. Format at date set by general setting of Wordpress. 12 <{$content.comment_date_time}> // Displays the published date-time of a comment. Format at date-time set by general setting of Wordpress. 13 <{$content.comment_content}> // Displays the contents of a comment. 14 <{$content.comment_excerpt}> // Displays the excerpt@contents of a comment. 15 <{$content.comment_link}> // Displays the comment link. 16 <{$content.comment_title}> // Displays the title of a comment. 17 <{$content.comment_title_link}> // Displays the comment link, where the link text value is the comment's title name. 18 <{$content.post_link}> // Displays a link to the post a comment belongs to. 19 <{$content.post_title}> // Displays a title to the post a comment belongs to. 20 <{$content.post_title_link}> // Displays the post's permalink, where the link text value is the posts title name. 21 <{$content.author_link}> // Displays the link of comment author's web homepages. 22 <{$content.author_name}> // Displays the comment author's name. 23 <{$content.author_name_link}> // Displays the link of comment author's web homepages, where the link text value is the author's name. 24 <{$content.comment_type}> // Displays the comment type. (type is comment,truckback or pingback) 25 <{/foreach}> // End of Loop 21 26 ************************* End of usage ************************ *}> 22 27 <{* Start Template *}> 23 28 24 < divid="xpress_recent_comments">29 <ul id="xpress_recent_comments"> 25 30 <{$block.err_message}> 26 31 <{$block.data_count}> 27 32 <{foreach from=$block.contents item=content}> 28 < ul>29 < li><{$content.from_auther_to_post}></li>30 < li><{$content.comment_excerpt}></li>31 < li><{$content.comment_date_time}></li>32 </ ul>33 <li> 34 <{$content.from_auther_to_post}><br /> 35 <{$content.comment_excerpt}><br /> 36 <{$content.comment_date_time}> 37 </li> 33 38 <{/foreach}> 34 </ div>39 </ul> -
trunk/templates/source/recent_posts_content_block.html
r100 r110 1 1 <{* ************************** usage **************************** 2 2 The template tag of the following list can be used. 3 <{$block.data_count}> 4 <{$content.post_id}> 5 <{$content.post_title}> 6 <{$content.post_content}> 7 <{$content.post_date}> 8 <{$content.post_time}> 9 <{$content.post_date_time}> 10 <{$content.post_modified_date}> 11 <{$content.post_modified_time}> 12 <{$content.post_modified_date_time}> 13 <{$content.post_author}> 14 <{$content.post_category}> 15 <{$content.post_tags}> 16 <{$content.post_views}> 17 <{$content.comment_link}> 18 <{$content.trackback_url}> 3 <{$block.err_message}> // When the block cannot be displayed, this outputs the reason. Please do not delete it. 4 <{$block.data_count}> // The number of contents is displayed. 5 <{$block.contents}> // Data array of contents. 6 // Examples of <{$block.contents}> 7 <{foreach from=$block.contents item=content}> // Loop 8 <{$content.post_id}> // Displays the numeric ID of the post. 9 <{$content.post_title}> // Displays the post's permalink, where the link text value is the posts title name. 10 <{$content.post_content}> // Displays the contents of the post. 11 <{$content.post_date}> // Displays the published date of a post. Format at date set by general setting of Wordpress. 12 <{$content.post_time}> // Displays the published time of a post. Format at time set by general setting of Wordpress. 13 <{$content.post_date_time}> // Displays the published date-time of a post. 14 <{$content.post_modified_date}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 15 <{$content.post_modified_time}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 16 <{$content.post_modified_date_time}> // Displays the modified date-time of a post. 17 <{$content.post_author}> // Displays the author's archive link, where the link text value is the user's Display name. 18 <{$content.post_category}> // Displays a link to the category or categories a post belongs to. 19 <{$content.post_tags}> // Displays a link to the tag or tags a post belongs to. 20 <{$content.post_views}> // Displays the number of posts viewer. 21 <{$content.comment_link}> // Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 22 <{$content.trackback_url}> // Displays the trackback URL for the current post. 23 <{/foreach}> // End of Loop 19 24 ************************* End of usage ************************ *}> 20 25 <{* Start Template *}> -
trunk/templates/source/recent_posts_list_block.html
r100 r110 1 1 <{* ************************** usage **************************** 2 2 The template tag of the following list can be used. 3 <{$block.data_count}> 4 <{$content.post_id}> 5 <{$content.new_mark}> 6 <{$content.post_title}> 7 <{$content.post_date}> 8 <{$content.post_time}> 9 <{$content.post_date_time}> 10 <{$content.post_modified_date}> 11 <{$content.post_modified_time}> 12 <{$content.post_modified_date_time}> 13 <{$content.post_author}> 14 <{$content.post_category}> 15 <{$content.post_tags}> 16 <{$content.post_views}> 17 <{$content.comment_link}> 18 <{$content.trackback_url}> 3 <{$block.err_message}> // When the block cannot be displayed, this outputs the reason. Please do not delete it. 4 <{$block.data_count}> // The number of contents is displayed. 5 <{$block.contents}> // Data array of contents. 6 // Examples of <{$block.contents}> 7 <{foreach from=$block.contents item=content}> // Loop 8 <{$content.post_id}> // Displays the numeric ID of the post. 9 <{$content.new_mark}> // The mark is displayed. The mark is different according to lapsed days from the release date. 10 <{$content.post_title}> // Displays the post's permalink, where the link text value is the posts title name. 11 <{$content.post_date}> // Displays the published date of a post. Format at date set by general setting of Wordpress. 12 <{$content.post_time}> // Displays the published time of a post. Format at time set by general setting of Wordpress. 13 <{$content.post_date_time}> // Displays the published date-time of a post. 14 <{$content.post_modified_date}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 15 <{$content.post_modified_time}> // Displays the modified date of a post. Format at date set by general setting of Wordpress. 16 <{$content.post_modified_date_time}> // Displays the modified date-time of a post. 17 <{$content.post_author}> // Displays the author's archive link, where the link text value is the user's Display name. 18 <{$content.post_category}> // Displays a link to the category or categories a post belongs to. 19 <{$content.post_tags}> // Displays a link to the tag or tags a post belongs to. 20 <{$content.post_views}> // Displays the number of posts viewer. 21 <{$content.comment_link}> // Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 22 <{$content.trackback_url}> // Displays the trackback URL for the current post. 23 <{/foreach}> // End of Loop 19 24 ************************* End of usage ************************ *}> 20 25 <{* Start Template *}> -
trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
r108 r110 3 3 "Project-Id-Version: XPressME Plugin\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2009-03-1 5 18:39+0900\n"5 "PO-Revision-Date: 2009-03-17 10:45+0900\n" 6 6 "Last-Translator: toemon <toychee@toemon.com>\n" 7 7 "Language-Team: \n" … … 20 20 21 21 #: xpressme_class.php:50 22 #: xpressme_class.php:15 222 #: xpressme_class.php:158 23 23 msgid "to Old Post" 24 24 msgstr "前の投稿へ" 25 25 26 26 #: xpressme_class.php:51 27 #: xpressme_class.php:1 5427 #: xpressme_class.php:160 28 28 msgid "to Newer Post" 29 29 msgstr "次の投稿へ" 30 30 31 #: xpressme_class.php: 19532 #: xpressme_class.php: 39033 #: xpressme_class.php: 39534 #: xpressme_class.php:4 1635 #: xpressme_class.php:4 2131 #: xpressme_class.php:204 32 #: xpressme_class.php:410 33 #: xpressme_class.php:415 34 #: xpressme_class.php:436 35 #: xpressme_class.php:441 36 36 msgid "YES" 37 37 msgstr "はい" 38 38 39 #: xpressme_class.php: 19640 #: xpressme_class.php: 39141 #: xpressme_class.php: 39642 #: xpressme_class.php:4 1743 #: xpressme_class.php:4 2239 #: xpressme_class.php:205 40 #: xpressme_class.php:411 41 #: xpressme_class.php:416 42 #: xpressme_class.php:437 43 #: xpressme_class.php:442 44 44 msgid "NO" 45 45 msgstr "いいえ" 46 46 47 #: xpressme_class.php:2 3647 #: xpressme_class.php:245 48 48 msgid "Role Setting at Login" 49 49 msgstr "ログイン時の権限設定" 50 50 51 #: xpressme_class.php:2 3951 #: xpressme_class.php:248 52 52 msgid "XOOPS Groupe" 53 53 msgstr "XOOPSグループ名" 54 54 55 #: xpressme_class.php:2 3955 #: xpressme_class.php:248 56 56 msgid "WordPress Role" 57 57 msgstr "WordPressでの権限" 58 58 59 #: xpressme_class.php:2 3959 #: xpressme_class.php:248 60 60 msgid "Role is set at each login" 61 61 msgstr "ログイン時、常に権限を更新する" 62 62 63 #: xpressme_class.php:26 064 #: xpressme_class.php:2 6465 #: xpressme_class.php:2 6763 #: xpressme_class.php:269 64 #: xpressme_class.php:273 65 #: xpressme_class.php:276 66 66 msgid "Default Role of WordPress" 67 67 msgstr "WordPressのデフォルト権限" 68 68 69 #: xpressme_class.php:2 6170 #: xpressme_class.php:2 6571 #: xpressme_class.php:2 6869 #: xpressme_class.php:270 70 #: xpressme_class.php:274 71 #: xpressme_class.php:277 72 72 msgid "Group User Doesn't Register" 73 73 msgstr "ユーザ登録しない" 74 74 75 #: xpressme_class.php: 29675 #: xpressme_class.php:305 76 76 msgid "Do Not Comment Integration." 77 77 msgstr "コメント統合しません。" 78 78 79 #: xpressme_class.php:33 079 #: xpressme_class.php:339 80 80 msgid "Comment integration with D3Forum" 81 81 msgstr "D3Forumとのコメント統合" 82 82 83 #: xpressme_class.php:3 3283 #: xpressme_class.php:341 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 3587 #: xpressme_class.php:345 88 88 msgid "Select the Type of display of D3Forum comment." 89 89 msgstr "D3Forumの表示タイプを選択" 90 90 91 #: xpressme_class.php:3 3792 #: xpressme_class.php:3 4091 #: xpressme_class.php:347 92 #: xpressme_class.php:350 93 93 msgid "Flat" 94 94 msgstr "フラット" 95 95 96 #: xpressme_class.php:3 3897 #: xpressme_class.php:3 4196 #: xpressme_class.php:348 97 #: xpressme_class.php:351 98 98 msgid "Threaded" 99 99 msgstr "スレッド" 100 100 101 #: xpressme_class.php:3 44101 #: xpressme_class.php:354 102 102 msgid "Select the order of display of D3Forum comment." 103 103 msgstr "D3Forumコメントの表示順を選択" 104 104 105 #: xpressme_class.php:3 46106 #: xpressme_class.php:3 49105 #: xpressme_class.php:356 106 #: xpressme_class.php:359 107 107 msgid "DESC" 108 108 msgstr "降順" 109 109 110 #: xpressme_class.php:3 47111 #: xpressme_class.php:3 50110 #: xpressme_class.php:357 111 #: xpressme_class.php:360 112 112 msgid "ASC" 113 113 msgstr "昇順" 114 114 115 #: xpressme_class.php:3 53115 #: xpressme_class.php:363 116 116 msgid "Number of displays of D3Forum comments." 117 117 msgstr "D3Forumのコメント表示数" 118 118 119 #: xpressme_class.php:3 57119 #: xpressme_class.php:367 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 58123 #: xpressme_class.php:368 124 124 msgid "Export to D3Forum" 125 125 msgstr "D3Forumへ一括エクスポート" 126 126 127 #: xpressme_class.php:3 59127 #: xpressme_class.php:369 128 128 msgid "Import from D3Forum" 129 129 msgstr "D3Forumから一括インポート" 130 130 131 #: xpressme_class.php: 380131 #: xpressme_class.php:400 132 132 msgid "XPressME Configuration Page" 133 133 msgstr "XPressMEの設定ページ" 134 134 135 #: xpressme_class.php: 384135 #: xpressme_class.php:404 136 136 msgid "Media Upload Base Path" 137 137 msgstr "メディアアップロードのベースパス設定" 138 138 139 #: xpressme_class.php: 385139 #: xpressme_class.php:405 140 140 msgid "Use XOOPS UPLOAD PATH" 141 141 msgstr "XOOPSのアップロードパスを使用する。" 142 142 143 #: xpressme_class.php: 386143 #: xpressme_class.php:406 144 144 msgid "USE WordPress BASE_PATH" 145 145 msgstr "WordPressのベースパスを使用する。" 146 146 147 #: xpressme_class.php: 389147 #: xpressme_class.php:409 148 148 msgid "Thema Sidebar Display" 149 149 msgstr "テーマ表示時にサイドバー表示する。" 150 150 151 #: xpressme_class.php: 394151 #: xpressme_class.php:414 152 152 msgid "The change tracking of the post is preserved" 153 153 msgstr "投稿の変更履歴を有効にする。" 154 154 155 #: xpressme_class.php: 399155 #: xpressme_class.php:419 156 156 msgid "Display Navi Title of Old Post Link" 157 157 msgstr "古い記事へのナビタイトルを設定" 158 158 159 #: xpressme_class.php:4 02159 #: xpressme_class.php:422 160 160 msgid "Display Navi Title of Newer Post Link" 161 161 msgstr "新しい記事へのナビタイトルを設定" 162 162 163 #: xpressme_class.php:4 05163 #: xpressme_class.php:425 164 164 msgid "Select Display name of PostNavi Link" 165 165 msgstr "投稿記事リンクナビのタイトル設定" 166 166 167 #: xpressme_class.php:4 06167 #: xpressme_class.php:426 168 168 msgid "Title of post" 169 169 msgstr "投稿記事のタイトルを表示" 170 170 171 #: xpressme_class.php:4 07171 #: xpressme_class.php:427 172 172 msgid "Title of Navi" 173 173 msgstr "ナビタイトルを表示" 174 174 175 #: xpressme_class.php:4 10175 #: xpressme_class.php:430 176 176 msgid "Adjustment of Navi link display position" 177 177 msgstr "投稿記事ナビリンクの表示位置設定" 178 178 179 #: xpressme_class.php:4 11179 #: xpressme_class.php:431 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:4 12183 #: xpressme_class.php:432 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 15187 #: xpressme_class.php:435 188 188 msgid "Is the posts author views counted?" 189 189 msgstr "投稿者の閲覧をカウントしますか?" 190 190 191 #: xpressme_class.php:4 20191 #: xpressme_class.php:440 192 192 msgid "Is SQL debugging window displayed?" 193 193 msgstr "SQLデバッグウィンドを表示しますか?" 194 194 195 #: xpressme_class.php:4 32195 #: xpressme_class.php:452 196 196 msgid "Update Config" 197 197 msgstr "更新" 198 198 199 #: xpressme_class.php:4 33199 #: xpressme_class.php:453 200 200 msgid "Preset Config" 201 201 msgstr "プリセット" -
trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php
r109 r110 77 77 'comment_date_time' => date(get_settings('date_format') . ' ' . get_settings('time_format'),$comment->comment_unix_time) , 78 78 'comment_content' => $comment_content , 79 'comment_excerpt' => $comment_excerpt , 79 'comment_excerpt' => $comment_excerpt , 80 80 'comment_link' => $comment_link, 81 81 'comment_title' => $comment_title , … … 86 86 'author_link' => $author_link, 87 87 'author_name' => $author_name, 88 'author_name_link' => $author_name_link, 89 'comment_type' => $comment_type, 88 'author_name_link' => $author_name_link, 89 'comment_type' => $comment_type, 90 90 'from_auther_to_post' => $from_auther_to_post 91 91 ); -
trunk/wp-content/themes/xpress_default/ja.po
r64 r110 18 18 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n" 19 19 "POT-Creation-Date: 2008-08-15 21:16+0900\n" 20 "PO-Revision-Date: 2009-0 1-08 21:20+0900\n"20 "PO-Revision-Date: 2009-03-17 10:21+0900\n" 21 21 "Last-Translator: toemon <toychee@toemon.com>\n" 22 22 "Language-Team: toemon <info@toemon.com>\n" … … 28 28 "X-Poedit-SourceCharset: utf-8\n" 29 29 "X-Poedit-KeywordsList: __;_e;_c\n" 30 "X-Poedit-Basepath: C:\\ xampp\\htdocs\\cube\\modules\\xpress2x\\wp-content\\themes\\\n"30 "X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\\n" 31 31 "Plural-Forms: nplurals=1; plural=0;\n" 32 32 "X-Poedit-SearchPath-0: xpress_default\n" … … 100 100 101 101 #: xpress_default/archive.php:78 102 #: xpress_default/index.php:3 5102 #: xpress_default/index.php:39 103 103 #: xpress_default/search.php:39 104 104 #: xpress_default/single.php:28 105 #: xpress_default/blocks/popular_posts_block_theme.php:109 106 #: xpress_default/blocks/recent_posts_content_block_theme.php:61 107 #: xpress_default/blocks/recent_posts_list_block_theme.php:56 105 108 msgid "Tags:" 106 109 msgstr "タグ:" 107 110 108 111 #: xpress_default/archive.php:78 109 #: xpress_default/index.php: 35112 #: xpress_default/index.php:40 110 113 #: xpress_default/search.php:39 111 114 #: xpress_default/single.php:28 … … 115 118 116 119 #: xpress_default/archive.php:78 117 #: xpress_default/index.php: 35120 #: xpress_default/index.php:42 118 121 #: xpress_default/search.php:39 119 122 msgid "Edit" … … 121 124 122 125 #: xpress_default/archive.php:78 123 #: xpress_default/index.php: 35126 #: xpress_default/index.php:43 124 127 #: xpress_default/search.php:39 125 128 msgid "No Comments »" … … 127 130 128 131 #: xpress_default/archive.php:78 129 #: xpress_default/index.php: 35132 #: xpress_default/index.php:43 130 133 #: xpress_default/search.php:39 131 134 msgid "1 Comment »" … … 133 136 134 137 #: xpress_default/archive.php:78 135 #: xpress_default/index.php: 35138 #: xpress_default/index.php:43 136 139 #: xpress_default/search.php:39 137 140 msgid "% Comments »" … … 139 142 140 143 #: xpress_default/archive.php:78 141 #: xpress_default/index.php: 35144 #: xpress_default/index.php:43 142 145 #: xpress_default/search.php:39 143 146 msgid "Comments Closed" … … 145 148 146 149 #: xpress_default/archive.php:89 147 #: xpress_default/index.php: 47150 #: xpress_default/index.php:57 148 151 #: xpress_default/search.php:27 149 152 #: xpress_default/search.php:45 … … 152 155 153 156 #: xpress_default/archive.php:90 154 #: xpress_default/index.php: 48157 #: xpress_default/index.php:58 155 158 #: xpress_default/search.php:28 156 159 #: xpress_default/search.php:46 … … 159 162 160 163 #: xpress_default/archive.php:95 161 #: xpress_default/index.php: 53164 #: xpress_default/index.php:63 162 165 msgid "Not Found" 163 166 msgstr "見つかりませんでした。" … … 529 532 msgstr "該当する投稿は見つかりませんでした。" 530 533 531 #: xpress_default/index.php: 36534 #: xpress_default/index.php:46 532 535 #, php-format 533 536 msgid "Views :%d" 534 537 msgstr "閲覧 :%d" 535 538 536 #: xpress_default/index.php: 54539 #: xpress_default/index.php:64 537 540 msgid "Sorry, but you are looking for something that isn’t here." 538 541 msgstr "お探しの物はここにはありません。" … … 650 653 msgstr "この投稿を編集 " 651 654 655 #: xpress_default/blocks/archives_block_theme.php:21 656 msgid "Select Monthly" 657 msgstr "月を選択" 658 659 #: xpress_default/blocks/archives_block_theme.php:23 660 msgid "Select Weekly" 661 msgstr "週を選択" 662 663 #: xpress_default/blocks/calender_block_theme.php:71 664 msgid "Calendar" 665 msgstr "カレンダー" 666 667 #: xpress_default/blocks/calender_block_theme.php:72 668 #, php-format 669 msgid "%1$s %2$s|Used as a calendar caption" 670 msgstr "" 671 672 #: xpress_default/blocks/calender_block_theme.php:104 673 #: xpress_default/blocks/calender_block_theme.php:114 674 #, php-format 675 msgid "View posts for %1$s %2$s" 676 msgstr "" 677 678 #: xpress_default/blocks/popular_posts_block_theme.php:135 679 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 680 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 681 #, fuzzy 682 msgid "Comments (0)" 683 msgstr "コメント (RSS)" 684 685 #: xpress_default/blocks/popular_posts_block_theme.php:135 686 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 687 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 688 #, fuzzy 689 msgid "Comments (1)" 690 msgstr "コメント (RSS)" 691 692 #: xpress_default/blocks/popular_posts_block_theme.php:135 693 #: xpress_default/blocks/recent_posts_content_block_theme.php:93 694 #: xpress_default/blocks/recent_posts_list_block_theme.php:82 695 #, fuzzy 696 msgid "Comments (%)" 697 msgstr "コメント (RSS)" 698 699 #: xpress_default/blocks/recent_comments_block_theme.php:71 700 #, fuzzy, php-format 701 msgid "%1$s on %2$s" 702 msgstr "%1$s と %2$s" 703 704 #: xpress_default/blocks/recent_posts_content_block_theme.php:66 705 #: xpress_default/blocks/recent_posts_content_block_theme.php:68 706 msgid "more" 707 msgstr "続きを読む" 708 -
trunk/xoops_version.php
r109 r110 152 152 'func_num' => 5, 153 153 ); 154 $modversion['blocks'][6] = array( 155 'file' => 'archives_block.php' , 156 'name' => constant('_MI_XPRESS_BLOCK_ARCHIVE') , 157 'description' => '' , 158 'show_func' => "b_". $mydirname . "_archives_show" , 159 'edit_func' => "b_". $mydirname . "_archives_edit" , 160 'options' => $mydirname. '|1|10|1|0' , 161 'can_clone' => false , 162 'func_num' => 6, 163 ); 164 $modversion['blocks'][7] = array( 165 'file' => 'authors_block.php' , 166 'name' => constant('_MI_XPRESS_BLOCK_AUTHORS') , 167 'description' => '' , 168 'show_func' => "b_". $mydirname . "_authors_show" , 169 'edit_func' => "b_". $mydirname . "_authors_edit" , 170 'options' => $mydirname. '|0|1|0|1' , 171 'can_clone' => false , 172 'func_num' => 7, 173 ); 154 174 155 175 // Notification
Note: See TracChangeset
for help on using the changeset viewer.