diff --git a/wp-admin/import.php b/wp-admin/import.php index 3dce4b7e9b..001132ae0f 100644 --- a/wp-admin/import.php +++ b/wp-admin/import.php @@ -47,7 +47,7 @@ if ( current_user_can('install_plugins') ) $popular_importers = array( 'blogger' => array( __('Blogger'), __('Install the Blogger importer to import posts, comments, and users from a Blogger blog.'), 'install' ), 'wpcat2tag' => array(__('Categories and Tags Converter'), __('Install the category/tag converter to convert existing categories to tags or tags to categories, selectively.'), 'install'), - 'livejournal' => array( __( 'LiveJournal' ), __( 'Install the LiveJounral importer to import posts from LiveJournal using their API.' ), 'install' ), + 'livejournal' => array( __( 'LiveJournal' ), __( 'Install the LiveJournal importer to import posts from LiveJournal using their API.' ), 'install' ), 'movabletype' => array( __('Movable Type and TypePad'), __('Install the Movable Type importer to import posts and comments from a Movable Type or TypePad blog.'), 'install' ), 'opml' => array( __('Blogroll'), __('Install the blogroll importer to import links in OPML format.'), 'install' ), 'rss' => array( __('RSS'), __('Install the RSS importer to import posts from an RSS feed.'), 'install' ), diff --git a/wp-signup.php b/wp-signup.php index baceca29df..f59804b68a 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -387,10 +387,10 @@ if ( !$active_signup ) $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user" // Make the signup type translatable. -$i18n_signup['all'] = _x('all', 'Mulitisite active signup type'); -$i18n_signup['none'] = _x('none', 'Mulitisite active signup type'); -$i18n_signup['blog'] = _x('blog', 'Mulitisite active signup type'); -$i18n_signup['user'] = _x('user', 'Mulitisite active signup type'); +$i18n_signup['all'] = _x('all', 'Multisite active signup type'); +$i18n_signup['none'] = _x('none', 'Multisite active signup type'); +$i18n_signup['blog'] = _x('blog', 'Multisite active signup type'); +$i18n_signup['user'] = _x('user', 'Multisite active signup type'); if ( is_super_admin() ) echo '
' . sprintf( __( 'Greetings Site Administrator! You are currently allowing “%s” registrations. To change or disable registration go to your Options page.' ), $i18n_signup[$active_signup], esc_url( network_admin_url( 'ms-options.php' ) ) ) . '
';