- Timestamp:
- May 20, 2009, 12:41:15 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/xpress_mu_home/home.php
r213 r217 1 1 <?php get_header(); ?> 2 2 3 <div id="content" class="widecolumn"> 4 5 <h2>WordPress µ</h2> 6 <p>This is a <a href="http://mu.wordpress.org/">WordPress Mu</a> powered site.</p> 7 <p>You can: <ul><?php wp_register(); ?><li> <?php wp_loginout(); ?></li><li> <a href="wp-signup.php">Create a new blog</a></li><li> Edit this file at <code>wp-content/themes/home/home.php</code> with your favourite text editor and customize this screen.</li></ul></p> 8 <h3>The Latest News</h3> 9 <ul> 10 <strong>Site News</strong> 11 <?php 12 query_posts('showposts=7'); 13 if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> 14 <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li> 15 <?php endwhile; ?><?php endif; ?> 16 </ul> 17 <?php 18 $blogs = get_last_updated(); 19 if( is_array( $blogs ) ) { 20 ?> 3 <div id="content" class="widecolumn"> 4 <h3><?php _e('Site News', 'xpress'); ?></h3> 21 5 <ul> 22 <strong>Updated Blogs</strong> 23 <?php foreach( $blogs as $details ) { 24 ?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php 6 <?php 7 query_posts('showposts=7'); 8 if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> 9 <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li> 10 <?php endwhile; ?><?php endif; ?> 11 </ul> 12 <br /> 13 <h3><?php _e('Blogs List', 'xpress'); ?></h3> 14 <?php 15 $blog_list = get_blog_list( 0, 'all' ); 16 echo "<ul>\n"; 17 foreach ($blog_list AS $blog) { 18 $url = 'http://' .$blog['domain'] .$blog['path']; 19 $blog_name = get_blog_option( $blog['blog_id'], 'blogname' ); 20 $post_count = $blog['postcount']; 21 22 echo "<li><a href=\" $url \"> $blog_name </a> (" . __('post count','xpress') . ":$post_count) </li>"; 23 } 24 echo "</ul>\n"; 25 ?> 26 <br /> 27 <h3><?php _e('Updated Blogs', 'xpress'); ?></h3> 28 <?php 29 $blogs = get_last_updated(); 30 if( is_array( $blogs ) ) { 31 ?> 32 <ul> 33 <?php foreach( $blogs as $details ) { 34 ?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php 35 } 36 ?> 37 </ul> 38 <?php 25 39 } 26 40 ?> 27 </ul> 28 <?php 29 } 30 ?> 41 <br /> 42 <?php 43 $current_uid = get_current_user_id(); 44 if (!empty($current_uid)) { 45 $user_info = get_userdata($current_uid); 46 $display_name = $user_info->display_name; 47 echo '<h3>'; 48 printf(__('Howdy %s', 'xpress'),$display_name); 49 echo "</h3>\n"; 50 echo "<ul>\n"; 51 52 $user_blogs = get_blogs_of_user($current_uid); 53 if( is_array($user_blogs) ) { 54 echo '<li>' . __('Your Blogs list','xpress') ; 55 echo "<ul>\n"; 56 foreach( $user_blogs as $blog ) { 57 $url = 'http://' .$blog->domain .$blog->path; 58 $blog_name = $blog->blogname; 59 echo "<li><a href=\" $url \"> $blog_name </a></li>"; 60 } 61 echo "</ul>\n"; 62 echo "</li>\n"; 63 wp_register(); 64 } 65 echo '<li> <a href="wp-signup.php">' . __('Create a new blog','xpress') . "</a></li>\n"; 66 echo "</ul>\n"; 67 } 68 69 ?> 70 31 71 </div> 32 72 -
trunk/wp-content/themes/xpress_mu_home/ja.po
r213 r217 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 4-11 14:12+0900\n"20 "PO-Revision-Date: 2009-05-20 12:39+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:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\xpress_ default\n"30 "X-Poedit-Basepath: C:\\XPressME_Ver2_SVN\\trunk\\wp-content\\themes\\xpress_mu_home\n" 31 31 "Plural-Forms: nplurals=1; plural=0;\n" 32 32 "X-Poedit-SearchPath-0: .\n" … … 341 341 msgid "Post New" 342 342 msgstr "新規投稿" 343 344 #: home.php:4 345 msgid "Site News" 346 msgstr "サイトニュース" 347 348 #: home.php:13 349 msgid "Blogs List" 350 msgstr "ブログリスト" 351 352 #: home.php:22 353 msgid "post count" 354 msgstr "投稿数" 355 356 #: home.php:27 357 msgid "Updated Blogs" 358 msgstr "最近更新があったブログ" 359 360 #: home.php:48 361 #, php-format 362 msgid "Howdy %s" 363 msgstr "こんにちは %s さん" 364 365 #: home.php:54 366 msgid "Your Blogs list" 367 msgstr "あなたのブログリスト" 368 369 #: home.php:65 370 msgid "Create a new blog" 371 msgstr "新しいブログを作成する" 343 372 344 373 #: image.php:13 … … 398 427 #: index.php:28 399 428 #: single.php:23 400 #: blocks/recent_posts_content_block_theme.php:11 1429 #: blocks/recent_posts_content_block_theme.php:113 401 430 #, php-format 402 431 msgid "Permanent Link to %s" … … 405 434 #: index.php:40 406 435 #: single.php:38 407 #: blocks/recent_posts_content_block_theme.php:1 33436 #: blocks/recent_posts_content_block_theme.php:125 408 437 #, php-format 409 438 msgid "Views :%d" … … 412 441 #: index.php:43 413 442 #: single.php:41 414 #: blocks/recent_posts_content_block_theme.php:1 36443 #: blocks/recent_posts_content_block_theme.php:128 415 444 #, php-format 416 445 msgid "Posted in %s" … … 419 448 #: index.php:45 420 449 #: single.php:43 421 #: blocks/recent_posts_content_block_theme.php:13 8450 #: blocks/recent_posts_content_block_theme.php:130 422 451 msgid "Edit" 423 452 msgstr "編集" … … 425 454 #: index.php:46 426 455 #: single.php:44 427 #: blocks/recent_posts_content_block_theme.php:13 9456 #: blocks/recent_posts_content_block_theme.php:131 428 457 msgid "No Comments »" 429 458 msgstr "コメントはまだありません »" … … 431 460 #: index.php:46 432 461 #: single.php:44 433 #: blocks/recent_posts_content_block_theme.php:13 9462 #: blocks/recent_posts_content_block_theme.php:131 434 463 msgid "1 Comment »" 435 464 msgstr "1 件のコメント »" … … 437 466 #: index.php:46 438 467 #: single.php:44 439 #: blocks/recent_posts_content_block_theme.php:13 9468 #: blocks/recent_posts_content_block_theme.php:131 440 469 msgid "% Comments »" 441 470 msgstr "% 件のコメント »" … … 443 472 #: index.php:46 444 473 #: single.php:44 445 #: blocks/recent_posts_content_block_theme.php:13 9474 #: blocks/recent_posts_content_block_theme.php:131 446 475 msgid "Comments Closed" 447 476 msgstr "コメントは受け付けていません。" … … 592 621 msgid "All Authors" 593 622 msgstr "全ての投稿者" 594 595 #: blocks/calender_block_theme.php:71596 msgid "Calendar"597 msgstr "カレンダー"598 599 #: blocks/calender_block_theme.php:72600 #, php-format601 msgid "%1$s %2$s|Used as a calendar caption"602 msgstr "%2$s 年 %1$s|カレンダーのキャプションに使われます"603 604 #: blocks/calender_block_theme.php:104605 #: blocks/calender_block_theme.php:114606 #, php-format607 msgid "View posts for %1$s %2$s"608 msgstr "%2$s 年 %1$s の投稿を表示"609 623 610 624 #: blocks/enhanced_block_theme.php:11 … … 661 675 662 676 #: blocks/popular_posts_block_theme.php:135 663 #: blocks/recent_posts_content_block_theme.php:10 0677 #: blocks/recent_posts_content_block_theme.php:102 664 678 #: blocks/recent_posts_list_block_theme.php:93 665 679 msgid "Comments (0)" … … 667 681 668 682 #: blocks/popular_posts_block_theme.php:135 669 #: blocks/recent_posts_content_block_theme.php:10 0683 #: blocks/recent_posts_content_block_theme.php:102 670 684 #: blocks/recent_posts_list_block_theme.php:93 671 685 msgid "Comments (1)" … … 673 687 674 688 #: blocks/popular_posts_block_theme.php:135 675 #: blocks/recent_posts_content_block_theme.php:10 0689 #: blocks/recent_posts_content_block_theme.php:102 676 690 #: blocks/recent_posts_list_block_theme.php:93 677 691 msgid "Comments (%)" … … 689 703 690 704 #: blocks/recent_posts_content_block_theme.php:75 691 #: blocks/recent_posts_content_block_theme.php:122692 705 msgid "more" 693 706 msgstr "続きを読む" -
trunk/wp-content/themes/xpress_mu_home/style.css
r213 r217 2 2 Theme Name: XPressMU HOME Themes 3 3 Theme URI: http://trac.xpressme.info/XPressME 4 Description: The theme for XPressM E series4 Description: The theme for XPressMU (XPressME included WordPress MU) 5 5 Version: 1.6 6 6 Author: toemon -
trunk/xoops_version.php
r214 r217 40 40 41 41 // status 42 $modversion['codename'] = "RC1(r21 4)";42 $modversion['codename'] = "RC1(r217)"; 43 43 44 44 // onInstall, onUpdate, onUninstall
Note: See TracChangeset
for help on using the changeset viewer.