Changeset 41839 for trunk/src/wp-includes/script-loader.php
- Timestamp:
- 10/12/2017 04:00:15 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/script-loader.php
r41805 r41839 548 548 $scripts->add( 'customize-models', "/wp-includes/js/customize-models.js", array( 'underscore', 'backbone' ), false, 1 ); 549 549 $scripts->add( 'customize-views', "/wp-includes/js/customize-views.js", array( 'jquery', 'underscore', 'imgareaselect', 'customize-models', 'media-editor', 'media-views' ), false, 1 ); 550 $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base', 'wp-a11y', 'wp-util' ), false, 1 );550 $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base', 'wp-a11y', 'wp-util', 'jquery-ui-core' ), false, 1 ); 551 551 did_action( 'init' ) && $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array( 552 552 'activate' => __( 'Activate & Publish' ), … … 575 575 'expandSidebar' => _x( 'Show Controls', 'label for hide controls button without length constraints' ), 576 576 'untitledBlogName' => __( '(Untitled)' ), 577 ' serverSaveError' => __( 'Failed connecting to the server. Please try savingagain.' ),577 'unknownRequestFail' => __( 'Looks like something’s gone wrong. Wait a couple seconds, and then try again.' ), 578 578 'themeDownloading' => __( 'Downloading your new theme…' ), 579 579 'themePreviewWait' => __( 'Setting up your live preview. This may take a bit.' ), 580 580 'revertingChanges' => __( 'Reverting unpublished changes…' ), 581 581 'trashConfirm' => __( 'Are you sure you’d like to discard your unpublished changes?' ), 582 /* translators: %s: Display name of the user who has taken over the changeset in customizer. */ 583 'takenOverMessage' => __( '%s has taken over and is currently customizing.' ), 582 584 /* translators: %s: URL to the Customizer to load the autosaved version */ 583 585 'autosaveNotice' => __( 'There is a more recent autosave of your changes than the one you are previewing. <a href="%s">Restore the autosave</a>' ),
Note: See TracChangeset
for help on using the changeset viewer.