Make WordPress Core


Ignore:
Timestamp:
04/21/2004 03:00:44 AM (22 years ago)
Author:
rboren
Message:

Mark strings for translation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-reading.php

    r1108 r1111  
    11<?php
     2require_once('../wp-includes/wp-l10n.php');
     3
    24$title = 'Reading Options';
    35$parent_file = 'options-general.php';
     
    4244
    4345<div class="wrap">
    44     <h2>Reading Options</h2>
     46    <h2><?php _e('Reading Options') ?></h2>
    4547    <form name="form1" method="post" action="options.php">
    4648        <input type="hidden" name="action" value="update" />
    4749        <input type="hidden" name="page_options" value="'posts_per_page','what_to_show','rss_use_excerpt','blog_charset','gzipcompression' " />
    4850        <fieldset class="options">
    49         <legend>Front Page</legend>
     51        <legend><?php _e('Front Page') ?></legend>
    5052        <table width="100%" cellspacing="2" cellpadding="5" class="editform">
    5153            <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>
    5355                <td><input name="posts_per_page" type="text" id="posts_per_page" value="<?php echo get_settings('posts_per_page'); ?>" size="3" />
    5456                    <select name="what_to_show" id="what_to_show" >
     
    6264
    6365        <fieldset class="options">
    64         <legend>Syndication Feeds</legend>
     66        <legend><?php _e('Syndication Feeds') ?></legend>
    6567        <table width="100%" cellspacing="2" cellpadding="5" class="editform">
    6668            <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>
    6870                <td><input name="posts_per_rss" type="text" id="posts_per_rss" value="<?php echo get_settings('posts_per_rss'); ?>" size="3" />
    6971                    posts </td>
    7072            </tr>
    7173            <tr valign="top">
    72                 <th scope="row"> For each article, show: </th>
     74                <th scope="row"><?php _e('For each article, show:') ?> </th>
    7375                <td><label>
    7476                    <input name="rss_use_excerpt"  type="radio" value="0" <?php checked(0, get_settings('rss_use_excerpt')); ?>  />
     
    8284                <table width="100%" cellspacing="2" cellpadding="5" class="editform">
    8385            <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>
    8587                <td><input name="blog_charset" type="text" id="blog_charset" value="<?php echo get_settings('blog_charset'); ?>" size="20" class="code" />
    8688                    <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>
    8890            </tr>
    8991        </table>
     
    9193            <label>
    9294            <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>
    9496        </p>
    9597        <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') ?>" />
    9799        </p>
    98100    </form>
Note: See TracChangeset for help on using the changeset viewer.