Changeset 59432
- Timestamp:
- 11/20/2024 01:31:13 PM (11 days ago)
- Location:
- branches/6.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.7
-
branches/6.7/src/js/_enqueues/lib/nav-menu.js
r59428 r59432 365 365 $selected = 'selected'; 366 366 } 367 // Translators: %1$s is the current menu item number, %2$s is the total number of menu items.368 367 var itemString = wp.i18n.sprintf( 369 wp.i18n._x( '%1$s of %2$s', 'indicating a part of a total number of items in a navigation menu' ), 368 /* translators: 1: The current menu item number, 2: The total number of menu items. */ 369 wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ), 370 370 i, 371 371 totalMenuItems … … 387 387 $selected = 'selected'; 388 388 } 389 // Translators: %1$s is the current submenu item number, %2$s is the total number of submenu items.390 389 var submenuString = wp.i18n.sprintf( 391 wp.i18n._x( '%1$s of %2$s', 'indicating a part of a total number of items in a submenu' ), 390 /* translators: 1: The current submenu item number, 2: The total number of submenu items. */ 391 wp.i18n._x( '%1$s of %2$s', 'part of a total number of menu items' ), 392 392 i, 393 393 totalSubMenuItems
Note: See TracChangeset
for help on using the changeset viewer.