Making WordPress.org

Changeset 4966


Ignore:
Timestamp:
02/21/2017 12:03:53 AM (8 years ago)
Author:
iandunn
Message:

Remote CSS: Internationalize contextual help tab names

Fixes #2377
Props mayukojpn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-remote-css/app/user-interface.php

    r4600 r4966  
    192192function add_contextual_help_tabs() {
    193193    $screen = get_current_screen();
    194     $tabs   = array( 'Overview', 'Basic Setup', 'Automated Synchronization', 'Tips' );
     194    $tabs   = array(
     195        __( 'Overview',                  'wordcamporg' ),
     196        __( 'Basic Setup',               'wordcamporg' ),
     197        __( 'Automated Synchronization', 'wordcamporg' ),
     198        __( 'Tips',                      'wordcamporg' )
     199    );
    195200
    196201    foreach ( $tabs as $tab ) {
Note: See TracChangeset for help on using the changeset viewer.