WordPress.org

Make WordPress Core

Ticket #18197: 18197.translatable-links.patch

File 18197.translatable-links.patch, 889 bytes (added by SergeyBiryukov, 21 months ago)
  • wp-includes/admin-bar.php

     
    9696                'parent' => 'wp-logo', 
    9797                'id'     => 'documentation', 
    9898                'title'  => __('Documentation'), 
    99                 'href'   => 'http://codex.wordpress.org', 
     99                'href'   => __('http://codex.wordpress.org'), 
    100100        ) ); 
    101101 
    102102        // Add forums link 
     
    104104                'parent' => 'wp-logo', 
    105105                'id'     => 'support-forums', 
    106106                'title'  => __('Support Forums'), 
    107                 'href'   => 'http://wordpress.org/support/', 
     107                'href'   => __('http://wordpress.org/support/'), 
    108108        ) ); 
    109109 
    110110        // Add WordPress.org link 
     
    112112                'parent' => 'wp-logo', 
    113113                'id'     => 'wporg', 
    114114                'title'  => __('WordPress.org'), 
    115                 'href'   => 'http://wordpress.org', 
     115                'href'   => __('http://wordpress.org'), 
    116116        ) ); 
    117117} 
    118118