Make WordPress Core

Changeset 20333


Ignore:
Timestamp:
03/30/2012 09:17:22 PM (12 years ago)
Author:
nacin
Message:

Use 'Keyword' instead of 'Term' in the search type selector in the plugin and theme installers. see #19619.

Location:
trunk/wp-admin/includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r20168 r20333  
    124124        <input type="hidden" name="tab" value="search" />
    125125        <select name="type" id="typeselector">
    126             <option value="term"<?php selected('term', $type) ?>><?php _e('Term'); ?></option>
     126            <option value="term"<?php selected('term', $type) ?>><?php _e('Keyword'); ?></option>
    127127            <option value="author"<?php selected('author', $type) ?>><?php _e('Author'); ?></option>
    128128            <option value="tag"<?php selected('tag', $type) ?>><?php _ex('Tag', 'Plugin Installer'); ?></option>
  • trunk/wp-admin/includes/theme-install.php

    r20168 r20333  
    5959    <input type="hidden" name="tab" value="search" />
    6060    <select name="type" id="typeselector">
    61     <option value="term" <?php selected('term', $type) ?>><?php _e('Term'); ?></option>
     61    <option value="term" <?php selected('term', $type) ?>><?php _e('Keyword'); ?></option>
    6262    <option value="author" <?php selected('author', $type) ?>><?php _e('Author'); ?></option>
    6363    <option value="tag" <?php selected('tag', $type) ?>><?php _ex('Tag', 'Theme Installer'); ?></option>
Note: See TracChangeset for help on using the changeset viewer.