Make WordPress Core

Changeset 32887


Ignore:
Timestamp:
06/20/2015 06:32:04 PM (10 years ago)
Author:
ocean90
Message:

Customizer: Replace wrong usage of _x() with translator comments.

see #32576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-nav-menus.php

    r32886 r32887  
    272272            'l10n'                 => array(
    273273                'untitled'          => _x( '(no label)', 'Missing menu item navigation label.' ),
    274                 'custom_label'      => _x( 'Custom Link', 'Custom menu item type label.' ),
    275                 'menuLocation'      => _x( '(Currently set to: %s)', 'Current menu location.' ),
     274                'custom_label'      => __( 'Custom Link' ),
     275                /* translators: %s: Current menu location */
     276                'menuLocation'      => __( '(Currently set to: %s)' ),
    276277                'deleteWarn'        => __( 'You are about to permanently delete this menu. "Cancel" to stop, "OK" to delete.' ),
    277278                'itemAdded'         => __( 'Menu item added' ),
     
    283284                'movedLeft'         => __( 'Menu item moved out of submenu' ),
    284285                'movedRight'        => __( 'Menu item is now a sub-item' ),
    285                 'customizingMenus'  => _x( 'Customizing ▸ Menus', '&#9656 is the unicode right-pointing triangle' ),
     286                /* translators: %s: &#9656 is the unicode right-pointing triangle */
     287                'customizingMenus'  => __( 'Customizing ▸ Menus' ),
     288                /* translators: %s: title of menu item which is invalid */
    286289                'invalidTitleTpl'   => __( '%s (Invalid)' ),
     290                /* translators: %s: title of menu item in draft status */
    287291                'pendingTitleTpl'   => __( '%s (Pending)' ),
    288292                'taxonomyTermLabel' => __( 'Taxonomy' ),
Note: See TracChangeset for help on using the changeset viewer.
OSZAR »