Make WordPress Core

Ticket #18197: 18197.translatable-links.3.patch

File 18197.translatable-links.3.patch, 1.2 KB (added by SergeyBiryukov, 13 years ago)
  • wp-includes/admin-bar.php

     
    122122                'parent' => 'wp-logo-secondary',
    123123                'id'     => 'wporg',
    124124                'title'  => __('WordPress.org'),
    125                 'href'   => 'http://wordpress.org',
     125                'href'   => __('http://wordpress.org'),
    126126        ) );
    127127
    128128        // Add codex link
     
    130130                'parent' => 'wp-logo-secondary',
    131131                'id'     => 'documentation',
    132132                'title'  => __('Documentation'),
    133                 'href'   => 'http://codex.wordpress.org',
     133                'href'   => __('http://codex.wordpress.org'),
    134134        ) );
    135135
    136136        // Add forums link
     
    138138                'parent' => 'wp-logo-secondary',
    139139                'id'     => 'support-forums',
    140140                'title'  => __('Support Forums'),
    141                 'href'   => 'http://wordpress.org/support/',
     141                'href'   => __('http://wordpress.org/support/'),
    142142        ) );
    143143
    144144        // Add feedback link
     
    146146                'parent' => 'wp-logo-secondary',
    147147                'id'     => 'feedback',
    148148                'title'  => __('Feedback'),
    149                 'href'   => 'http://wordpress.org/support/forum/requests-and-feedback',
     149                'href'   => __('http://wordpress.org/support/forum/requests-and-feedback'),
    150150        ) );
    151151}
    152152