Changeset 5825
- Timestamp:
- 07/30/2007 04:32:12 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r5707 r5825 157 157 $guessurl = preg_replace('|/wp-admin/.*|i', '', $schema . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); 158 158 add_option('siteurl', $guessurl, __('WordPress web address')); 159 add_option('blogname', __('My Weblog'), __('Blog title'));159 add_option('blogname', __('My Blog'), __('Blog title')); 160 160 add_option('blogdescription', __('Just another WordPress weblog'), __('Short tagline')); 161 161 add_option('new_users_can_blog', 0); -
trunk/wp-admin/includes/upgrade.php
r5820 r5825 124 124 Password: %3\$s 125 125 126 We hope you enjoy your new weblog. Thanks!126 We hope you enjoy your new blog. Thanks! 127 127 128 128 --The WordPress Team -
trunk/wp-admin/install.php
r5708 r5825 46 46 <table width="100%"> 47 47 <tr> 48 <th width="33%"><?php _e(' Weblog title:'); ?></th>48 <th width="33%"><?php _e('Blog title:'); ?></th> 49 49 <td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td> 50 50 </tr> -
trunk/wp-admin/options-discussion.php
r4740 r5825 19 19 <label for="default_pingback_flag"> 20 20 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked('1', get_option('default_pingback_flag')); ?> /> 21 <?php _e('Attempt to notify any Weblogs linked to from the article (slows down posting.)') ?></label>21 <?php _e('Attempt to notify any blogs linked to from the article (slows down posting.)') ?></label> 22 22 </li> 23 23 <li> 24 24 <label for="default_ping_status"> 25 25 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> /> 26 <?php _e('Allow link notifications from other Weblogs (pingbacks and trackbacks.)') ?></label>26 <?php _e('Allow link notifications from other blogs (pingbacks and trackbacks.)') ?></label> 27 27 </li> 28 28 <li> -
trunk/wp-admin/options-general.php
r5700 r5825 15 15 <table class="optiontable"> 16 16 <tr valign="top"> 17 <th scope="row"><?php _e(' Weblog title:') ?></th>17 <th scope="row"><?php _e('Blog title:') ?></th> 18 18 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td> 19 19 </tr> … … 22 22 <td><input name="blogdescription" type="text" id="blogdescription" style="width: 95%" value="<?php form_option('blogdescription'); ?>" size="45" /> 23 23 <br /> 24 <?php _e('In a few words, explain what this weblog is about.') ?></td>24 <?php _e('In a few words, explain what this blog is about.') ?></td> 25 25 </tr> 26 26 <tr valign="top"> … … 64 64 </tr> 65 65 <tr> 66 <th scope="row"><?php _e('Times in the weblog should differ by:') ?> </th>66 <th scope="row"><?php _e('Times in the blog should differ by:') ?> </th> 67 67 <td><input name="gmt_offset" type="text" id="gmt_offset" size="2" value="<?php form_option('gmt_offset'); ?>" /> 68 68 <?php _e('hours') ?> (<?php _e('Your timezone offset, for example <code>-6</code> for Central Time.'); ?>)</td> -
trunk/wp-content/themes/default/sidebar.php
r5700 r5825 22 22 23 23 <?php /* If this is a yearly archive */ } elseif (is_day()) { ?> 24 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives24 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives 25 25 for the day <?php the_time('l, F jS, Y'); ?>.</p> 26 26 27 27 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> 28 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives28 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives 29 29 for <?php the_time('F, Y'); ?>.</p> 30 30 31 31 <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> 32 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives32 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives 33 33 for the year <?php the_time('Y'); ?>.</p> 34 34 35 35 <?php /* If this is a monthly archive */ } elseif (is_search()) { ?> 36 <p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives36 <p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives 37 37 for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p> 38 38 39 39 <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> 40 <p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives.</p>40 <p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives.</p> 41 41 42 42 <?php } ?> -
trunk/xmlrpc.php
r5807 r5825 708 708 } 709 709 710 /* warning: here we make the assumption that the weblog's URL is on the same server */710 /* warning: here we make the assumption that the blog's URL is on the same server */ 711 711 $filename = get_option('home') . '/'; 712 712 $filename = preg_replace('#https?://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename); … … 743 743 } 744 744 745 /* warning: here we make the assumption that the weblog's URL is on the same server */745 /* warning: here we make the assumption that the blog's URL is on the same server */ 746 746 $filename = get_option('home') . '/'; 747 747 $filename = preg_replace('#https?://.+?/#', $_SERVER['DOCUMENT_ROOT'].'/', $filename); … … 778 778 $user = set_current_user(0, $user_login); 779 779 if ( !current_user_can($cap) ) 780 return new IXR_Error(401, __('Sorry, you can not post on this weblog or category.'));780 return new IXR_Error(401, __('Sorry, you are not allowed to post on this blog.')); 781 781 782 782 $post_status = ($publish) ? 'publish' : 'draft'; … … 918 918 $user = set_current_user(0, $user_login); 919 919 if ( !current_user_can($cap) ) 920 return new IXR_Error(401, __('Sorry, you can not post on this weblog or category.'));920 return new IXR_Error(401, __('Sorry, you are not allowed to post on this blog.')); 921 921 922 922 // The post_type defaults to post, but could also be page. … … 1458 1458 1459 1459 1460 /* metaweblog.getCategories ...returns the list of categories on a given weblog */1460 /* metaweblog.getCategories ...returns the list of categories on a given blog */ 1461 1461 function mw_getCategories($args) { 1462 1462 … … 1614 1614 1615 1615 1616 /* mt.getCategoryList ...returns the list of categories on a given weblog */1616 /* mt.getCategoryList ...returns the list of categories on a given blog */ 1617 1617 function mt_getCategoryList($args) { 1618 1618
Note: See TracChangeset
for help on using the changeset viewer.