Changeset 147 for trunk/wp-content/plugins/xpressme
- Timestamp:
- Apr 1, 2009, 11:05:02 PM (16 years ago)
- Location:
- trunk/wp-content/plugins/xpressme
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/include/custom_functions.php
r145 r147 1 1 <?php 2 3 function xpress_list_pings($comment, $args, $depth) { 4 $GLOBALS['comment'] = $comment; 5 echo '<li id="comment-<?php comment_ID(); ?>">'; 6 comment_author_link(); 7 } 2 8 3 9 function xpress_credit($show = false) -
trunk/wp-content/plugins/xpressme/include/xpress_common_functions.php
r145 r147 229 229 } 230 230 231 function xpress_comment_count( $count ) { 232 global $id; 233 $comments_by_type = &separate_comments(get_comments('status=approve&post_id=' . $id)); 234 return count($comments_by_type['comment']); 235 } 231 236 232 237 ?> -
trunk/wp-content/plugins/xpressme/language/xpressme-ja.po
r145 r147 3 3 "Project-Id-Version: XPressME Plugin\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2009-0 3-31 17:36+0900\n"5 "PO-Revision-Date: 2009-04-01 16:42+0900\n" 6 6 "Last-Translator: toemon <toychee@toemon.com>\n" 7 7 "Language-Team: \n" … … 286 286 msgstr "プリセット" 287 287 288 #: include/custom_functions.php:23 2288 #: include/custom_functions.php:238 289 289 #, php-format 290 290 msgid "views :%d" 291 291 msgstr "閲覧数 :%d" 292 292 293 #: include/custom_functions.php:3 48293 #: include/custom_functions.php:354 294 294 msgid "Main" 295 295 msgstr "メイン" 296 296 297 #: include/custom_functions.php:35 0297 #: include/custom_functions.php:356 298 298 #, php-format 299 299 msgid "Archive for the ‘%s’ Category" 300 300 msgstr "カテゴリー ‘%s’ のアーカイブ" 301 301 302 #: include/custom_functions.php:35 2302 #: include/custom_functions.php:358 303 303 #, php-format 304 304 msgid "Posts Tagged ‘%s’" 305 305 msgstr "‘%s’ タグのついている投稿" 306 306 307 #: include/custom_functions.php:3 54307 #: include/custom_functions.php:360 308 308 #, php-format 309 309 msgid "Archive for %s|Daily archive page" 310 310 msgstr "%sの日別アーカイブ" 311 311 312 #: include/custom_functions.php:3 54312 #: include/custom_functions.php:360 313 313 msgid "F jS, Y" 314 314 msgstr "Y年n月j日" 315 315 316 #: include/custom_functions.php:3 56316 #: include/custom_functions.php:362 317 317 #, php-format 318 318 msgid "Archive for %s|Monthly archive page" 319 319 msgstr "%sの月別アーカイブ" 320 320 321 #: include/custom_functions.php:3 56321 #: include/custom_functions.php:362 322 322 msgid "F, Y" 323 323 msgstr "Y年n月" 324 324 325 #: include/custom_functions.php:3 58325 #: include/custom_functions.php:364 326 326 #, php-format 327 327 msgid "Archive for %s|Yearly archive page" 328 328 msgstr "%sの年別アーカイブ " 329 329 330 #: include/custom_functions.php:3 58330 #: include/custom_functions.php:364 331 331 msgid "Y" 332 332 msgstr "Y年" 333 333 334 #: include/custom_functions.php:36 0334 #: include/custom_functions.php:366 335 335 #, php-format 336 336 msgid "Archive for the ‘%s’ Author" 337 337 msgstr "投稿者 ‘%s’ のアーカイブ" 338 338 339 #: include/custom_functions.php:36 2339 #: include/custom_functions.php:368 340 340 #, php-format 341 341 msgid "Search Results of word ‘%s’" 342 342 msgstr "‘%s’ の検索結果" 343 343 344 #: include/xpress_common_functions.php:202 345 msgid "Themes" 346 msgstr "テーマ" 347 348 #: include/xpress_common_functions.php:217 349 msgid "Switch to XOOPS mode" 350 msgstr "XOOPSモードへ切替" 351 352 #: include/xpress_common_functions.php:221 353 #: include/xpress_common_functions.php:224 354 msgid "Switch to WordPress mode" 355 msgstr "WordPressモードへ切替" 356 -
trunk/wp-content/plugins/xpressme/xpressme.php
r145 r147 69 69 } 70 70 71 //The trackback and the pingback are excluded from the count of the comment. 72 add_filter('get_comments_number', 'xpress_comment_count', 0); 71 73 72 74 // SQL debug windows
Note: See TracChangeset
for help on using the changeset viewer.