Make WordPress Core

Ticket #38010: 38010-pad-fix-and-theme-placeholders.patch

File 38010-pad-fix-and-theme-placeholders.patch, 1.9 KB (added by mikeviele, 8 years ago)
  • src/wp-admin/css/themes.css

     
    10161016        content: '';
    10171017}
    10181018
    1019 .theme-install-php .wp-filter {
    1020         padding: 0 20px;
    1021 }
    1022 
    10231019.theme-install-php a.upload,
    10241020.theme-install-php a.browse-themes {
    10251021        cursor: pointer;
  • src/wp-admin/theme-install.php

     
    4545        'l10n' => array(
    4646                'addNew'              => __( 'Add New Theme' ),
    4747                'search'              => __( 'Search Themes' ),
    48                 'searchPlaceholder'   => __( 'Search themes...' ), // placeholder (no ellipsis)
     48                'searchPlaceholder'   => __( 'Search Themes' ), // placeholder (no ellipsis)
    4949                'upload'              => __( 'Upload Theme' ),
    5050                'back'                => __( 'Back' ),
    5151                'error'               => __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ),
  • src/wp-admin/themes.php

     
    137137        'l10n' => array(
    138138                'addNew'            => __( 'Add New Theme' ),
    139139                'search'            => __( 'Search Installed Themes' ),
    140                 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis)
     140                'searchPlaceholder' => __( 'Search installed Themes' ), // placeholder (no ellipsis)
    141141                'themesFound'       => __( 'Number of Themes found: %d' ),
    142142                'noThemesFound'     => __( 'No themes found. Try a different search.' ),
    143143        ),