Make WordPress Core

Changeset 16717


Ignore:
Timestamp:
12/04/2010 04:22:48 AM (14 years ago)
Author:
nacin
Message:

Add 'Visual Editor RTL Stylesheet' to the list of theme file descriptions. see #15672.

File:
1 edited

Legend:

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

    r16577 r16717  
    88
    99/** The descriptions for theme files. */
    10 $wp_file_descriptions = array (
     10$wp_file_descriptions = array(
    1111    'index.php' => __( 'Main Index Template' ),
    1212    'style.css' => __( 'Stylesheet' ),
    1313    'editor-style.css' => __( 'Visual Editor Stylesheet' ),
     14    'editor-style-rtl.css' => __( 'Visual Editor RTL Stylesheet' ),
    1415    'rtl.css' => __( 'RTL Stylesheet' ),
    1516    'comments.php' => __( 'Comments' ),
     
    3738    '.htaccess' => __( '.htaccess (for rewrite rules )' ),
    3839    // Deprecated files
    39     'wp-layout.css' => __( 'Stylesheet' ), 'wp-comments.php' => __( 'Comments Template' ), 'wp-comments-popup.php' => __( 'Popup Comments Template' ));
     40    'wp-layout.css' => __( 'Stylesheet' ),
     41    'wp-comments.php' => __( 'Comments Template' ),
     42    'wp-comments-popup.php' => __( 'Popup Comments Template' ),
     43);
    4044
    4145/**
Note: See TracChangeset for help on using the changeset viewer.