Make WordPress Core

Changeset 38093


Ignore:
Timestamp:
07/18/2016 02:32:52 PM (7 years ago)
Author:
karmatosed
Message:

Remove .pot files from Default Themes
Fixes #34884
Props davidakennedy

Location:
trunk/src/wp-content/themes
Files:
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfifteen/functions.php

    r37077 r38093  
    5656    /*
    5757     * Make theme available for translation.
    58      * Translations can be filed in the /languages/ directory.
     58     * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfifteen
    5959     * If you're building a theme based on twentyfifteen, use a find and replace
    6060     * to change 'twentyfifteen' to the name of your theme in all the template files
    6161     */
    62     load_theme_textdomain( 'twentyfifteen', get_template_directory() . '/languages' );
     62    load_theme_textdomain( 'twentyfifteen' );
    6363
    6464    // Add default posts and comments RSS feed links to head.
  • trunk/src/wp-content/themes/twentyfourteen/functions.php

    r38026 r38093  
    6161     * Make Twenty Fourteen available for translation.
    6262     *
    63      * Translations can be added to the /languages/ directory.
     63     * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfourteen
    6464     * If you're building a theme based on Twenty Fourteen, use a find and
    6565     * replace to change 'twentyfourteen' to the name of your theme in all
    6666     * template files.
    6767     */
    68     load_theme_textdomain( 'twentyfourteen', get_template_directory() . '/languages' );
     68    load_theme_textdomain( 'twentyfourteen' );
    6969
    7070    // This theme styles the visual editor to resemble the theme style.
  • trunk/src/wp-content/themes/twentythirteen/functions.php

    r38083 r38093  
    6262     * Makes Twenty Thirteen available for translation.
    6363     *
    64      * Translations can be added to the /languages/ directory.
     64     * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentythirteen
    6565     * If you're building a theme based on Twenty Thirteen, use a find and
    6666     * replace to change 'twentythirteen' to the name of your theme in all
    6767     * template files.
    6868     */
    69     load_theme_textdomain( 'twentythirteen', get_template_directory() . '/languages' );
     69    load_theme_textdomain( 'twentythirteen' );
    7070
    7171    /*
  • trunk/src/wp-content/themes/twentytwelve/functions.php

    r37040 r38093  
    4646     * Makes Twenty Twelve available for translation.
    4747     *
    48      * Translations can be added to the /languages/ directory.
     48     * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentytwelve
    4949     * If you're building a theme based on Twenty Twelve, use a find and replace
    5050     * to change 'twentytwelve' to the name of your theme in all the template files.
    5151     */
    52     load_theme_textdomain( 'twentytwelve', get_template_directory() . '/languages' );
     52    load_theme_textdomain( 'twentytwelve' );
    5353
    5454    // This theme styles the visual editor with editor-style.css to match the theme style.
Note: See TracChangeset for help on using the changeset viewer.