Making WordPress.org

Changeset 4706


Ignore:
Timestamp:
01/17/2017 05:55:27 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Support Theme: Make menu item URLs in header.php translatable.

See #2151.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/header.php

    r4673 r4706  
    1313
    1414$menu_items = array(
    15     '/'                                         => __( 'Forums', 'wporg-forums' ),
    16     'https://codex.wordpress.org/Main_Page'              => __( 'Documentation', 'wporg-forums' ),
    17     'https://make.wordpress.org/support/handbook/'      => __( 'Get Involved', 'wporg-forums' ),
     15    '/'                                                                 => __( 'Forums', 'wporg-forums' ),
     16    __( 'https://codex.wordpress.org/Main_Page', 'wporg-forums' )        => __( 'Documentation', 'wporg-forums' ),
     17    __( 'https://make.wordpress.org/support/handbook/', 'wporg-forums' ) => __( 'Get Involved', 'wporg-forums' ),
    1818);
    1919?>
Note: See TracChangeset for help on using the changeset viewer.