Make WordPress Core

Changeset 14315 for trunk/wp-app.php


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-app.php

    r14136 r14315  
    285285        // check to see if AtomPub is enabled
    286286        if ( !get_option( 'enable_app' ) )
    287             $this->forbidden( sprintf( __( 'AtomPub services are disabled on this blog.  An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
     287            $this->forbidden( sprintf( __( 'AtomPub services are disabled on this site.  An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
    288288
    289289        // dispatch
     
    322322
    323323        if ( !current_user_can( 'edit_posts' ) )
    324             $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
     324            $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) );
    325325
    326326        $entries_url = esc_attr($this->get_entries_url());
     
    363363
    364364        if ( !current_user_can( 'edit_posts' ) )
    365             $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) );
     365            $this->auth_required( __( 'Sorry, you do not have the right to access this site.' ) );
    366366
    367367        $home = esc_attr(get_bloginfo_rss('url'));
Note: See TracChangeset for help on using the changeset viewer.