Make WordPress Core


Ignore:
Timestamp:
04/30/2010 03:17:49 AM (15 years ago)
Author:
nacin
Message:

s/blog/site/ in even more places. props PeteMall, see #11644.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-widgets.php

    r13733 r14315  
    173173
    174174    function WP_Widget_Search() {
    175         $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your blog") );
     175        $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site") );
    176176        $this->WP_Widget('search', __('Search'), $widget_ops);
    177177    }
     
    216216
    217217    function WP_Widget_Archives() {
    218         $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your blog’s posts') );
     218        $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s posts') );
    219219        $this->WP_Widget('archives', __('Archives'), $widget_ops);
    220220    }
     
    329329
    330330    function WP_Widget_Calendar() {
    331         $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your blog’s posts') );
     331        $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site’s posts') );
    332332        $this->WP_Widget('calendar', __('Calendar'), $widget_ops);
    333333    }
     
    512512
    513513    function WP_Widget_Recent_Posts() {
    514         $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your blog") );
     514        $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "The most recent posts on your site") );
    515515        $this->WP_Widget('recent-posts', __('Recent Posts'), $widget_ops);
    516516        $this->alt_option_name = 'widget_recent_entries';
Note: See TracChangeset for help on using the changeset viewer.