- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-control.php
r44772 r45932 72 72 <button type="button" class="button-link item-edit" aria-expanded="false"><span class="screen-reader-text"> 73 73 <?php 74 /* translators: 1: Title of a menu item, 2: Type of a menu item */74 /* translators: 1: Title of a menu item, 2: Type of a menu item. */ 75 75 printf( __( 'Edit menu item: %1$s (%2$s)' ), '{{ data.title || wp.customize.Menus.data.l10n.untitled }}', '{{ data.item_type_label }}' ); 76 76 ?> … … 78 78 <button type="button" class="button-link item-delete submitdelete deletion"><span class="screen-reader-text"> 79 79 <?php 80 /* translators: 1: Title of a menu item, 2: Type of a menu item */80 /* translators: 1: Title of a menu item, 2: Type of a menu item. */ 81 81 printf( __( 'Remove Menu Item: %1$s (%2$s)' ), '{{ data.title || wp.customize.Menus.data.l10n.untitled }}', '{{ data.item_type_label }}' ); 82 82 ?> … … 137 137 <p class="link-to-original"> 138 138 <?php 139 /* translators: Nav menu item original title. %s: Original title */139 /* translators: Nav menu item original title. %s: Original title. */ 140 140 printf( __( 'Original: %s' ), '<a class="original-link" href="{{ data.url }}">{{ data.original_title }}</a>' ); 141 141 ?>
Note: See TracChangeset
for help on using the changeset viewer.