Changeset 61542
- Timestamp:
- 01/28/2026 01:06:35 AM (3 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
-
class-wp-dependencies.php (modified) (1 diff)
-
class-wp-script-modules.php (modified) (1 diff)
-
class-wp-scripts.php (modified) (1 diff)
-
class-wp-styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-dependencies.php
r61470 r61542 570 570 protected function get_dependency_warning_message( $handle, $missing_dependency_handles ) { 571 571 return sprintf( 572 /* translators: 1: Handle, 2: Comma-separated list of missing dependency handles. */572 /* translators: 1: Handle, 2: List of missing dependency handles. */ 573 573 __( 'The handle "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), 574 574 $handle, 575 implode( ', ', $missing_dependency_handles )575 implode( wp_get_list_item_separator(), $missing_dependency_handles ) 576 576 ); 577 577 } -
trunk/src/wp-includes/class-wp-script-modules.php
r61401 r61542 740 740 get_class( $this ) . '::register', 741 741 sprintf( 742 /* translators: 1: Script module ID, 2: Comma-separated list of missing dependency IDs. */742 /* translators: 1: Script module ID, 2: List of missing dependency IDs. */ 743 743 __( 'The script module with the ID "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), 744 744 $id, 745 implode( ', ', $missing_dependencies )745 implode( wp_get_list_item_separator(), $missing_dependencies ) 746 746 ), 747 747 '6.9.1' -
trunk/src/wp-includes/class-wp-scripts.php
r61442 r61542 1192 1192 protected function get_dependency_warning_message( $handle, $missing_dependency_handles ) { 1193 1193 return sprintf( 1194 /* translators: 1: Script handle, 2: Comma-separated list of missing dependency handles. */1194 /* translators: 1: Script handle, 2: List of missing dependency handles. */ 1195 1195 __( 'The script with the handle "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), 1196 1196 $handle, 1197 implode( ', ', $missing_dependency_handles )1197 implode( wp_get_list_item_separator(), $missing_dependency_handles ) 1198 1198 ); 1199 1199 } -
trunk/src/wp-includes/class-wp-styles.php
r61463 r61542 494 494 protected function get_dependency_warning_message( $handle, $missing_dependency_handles ) { 495 495 return sprintf( 496 /* translators: 1: Style handle, 2: Comma-separated list of missing dependency handles. */496 /* translators: 1: Style handle, 2: List of missing dependency handles. */ 497 497 __( 'The style with the handle "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), 498 498 $handle, 499 implode( ', ', $missing_dependency_handles )499 implode( wp_get_list_item_separator(), $missing_dependency_handles ) 500 500 ); 501 501 }
Note: See TracChangeset
for help on using the changeset viewer.