Changeset 1111 for trunk/wp-admin/options-reading.php
- Timestamp:
- 04/21/2004 03:00:44 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-reading.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r1108 r1111 1 1 <?php 2 require_once('../wp-includes/wp-l10n.php'); 3 2 4 $title = 'Reading Options'; 3 5 $parent_file = 'options-general.php'; … … 42 44 43 45 <div class="wrap"> 44 <h2> Reading Options</h2>46 <h2><?php _e('Reading Options') ?></h2> 45 47 <form name="form1" method="post" action="options.php"> 46 48 <input type="hidden" name="action" value="update" /> 47 49 <input type="hidden" name="page_options" value="'posts_per_page','what_to_show','rss_use_excerpt','blog_charset','gzipcompression' " /> 48 50 <fieldset class="options"> 49 <legend>Front Page</legend>51 <legend><?php _e('Front Page') ?></legend> 50 52 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 51 53 <tr valign="top"> 52 <th width="33%" scope="row">Show the most recent:</th>54 <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th> 53 55 <td><input name="posts_per_page" type="text" id="posts_per_page" value="<?php echo get_settings('posts_per_page'); ?>" size="3" /> 54 56 <select name="what_to_show" id="what_to_show" > … … 62 64 63 65 <fieldset class="options"> 64 <legend>Syndication Feeds</legend>66 <legend><?php _e('Syndication Feeds') ?></legend> 65 67 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 66 68 <tr valign="top"> 67 <th width="33%" scope="row">Show the most recent:</th>69 <th width="33%" scope="row"><?php _e('Show the most recent:') ?></th> 68 70 <td><input name="posts_per_rss" type="text" id="posts_per_rss" value="<?php echo get_settings('posts_per_rss'); ?>" size="3" /> 69 71 posts </td> 70 72 </tr> 71 73 <tr valign="top"> 72 <th scope="row"> For each article, show:</th>74 <th scope="row"><?php _e('For each article, show:') ?> </th> 73 75 <td><label> 74 76 <input name="rss_use_excerpt" type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?> /> … … 82 84 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 83 85 <tr valign="top"> 84 <th width="33%" scope="row"> Encoding for pages and feeds:</th>86 <th width="33%" scope="row"><?php _e('Encoding for pages and feeds:') ?></th> 85 87 <td><input name="blog_charset" type="text" id="blog_charset" value="<?php echo get_settings('blog_charset'); ?>" size="20" class="code" /> 86 88 <br /> 87 The character encoding you write your blog in (UTF-8 recommended<a href="http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html"></a>)</td>89 <?php _e('The character encoding you write your blog in (UTF-8 <a href="http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html">recommended</a>)') ?></td> 88 90 </tr> 89 91 </table> … … 91 93 <label> 92 94 <input type="checkbox" name="gzipcompression" value="1" <?php checked('1', get_settings('gzipcompression')); ?> /> 93 WordPress should compress articles (gzip) if browsers ask for them</label>95 <?php _e('WordPress should compress articles (gzip) if browsers ask for them') ?></label> 94 96 </p> 95 97 <p style="text-align: right;"> 96 <input type="submit" name="Submit" value=" Update Options" />98 <input type="submit" name="Submit" value="<?php _e('Update Options') ?>" /> 97 99 </p> 98 100 </form>
Note: See TracChangeset
for help on using the changeset viewer.