Created
April 11, 2020 15:45
-
-
Save fatihtoprak/555c35ad16046b9baed2694b52ffa7f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if ( is_admin() ) { | |
| $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array( 'jquery', 'wp-ajax-response' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array( | |
| 'noPerm' => __('You do not have permission to do that.'), | |
| 'broken' => __('An unidentified error has occurred.') | |
| )); | |
| $scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'quicktags', 'jquery-query'), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'admin-comments', 'adminCommentsL10n', array( | |
| 'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']), | |
| 'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']), | |
| 'replyApprove' => __( 'Approve and Reply' ), | |
| 'reply' => __( 'Reply' ), | |
| 'warnQuickEdit' => __( "Are you sure you want to edit this comment?\nThe changes you made will be lost." ), | |
| 'docTitleComments' => __( 'Comments' ), | |
| /* translators: %s: comments count */ | |
| 'docTitleCommentsCount' => __( 'Comments (%s)' ), | |
| ) ); | |
| $scripts->add( 'xfn', "/wp-admin/js/xfn$suffix.js", array('jquery'), false, 1 ); | |
| $scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'postbox', 'postBoxL10n', array( | |
| 'postBoxEmptyString' => __( 'Drag boxes here' ), | |
| ) ); | |
| $scripts->add( 'tags-box', "/wp-admin/js/tags-box$suffix.js", array( 'jquery', 'suggest' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'tags-box', 'tagsBoxL10n', array( | |
| 'tagDelimiter' => _x( ',', 'tag delimiter' ), | |
| ) ); | |
| $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array( 'suggest', 'wp-lists', 'postbox', 'tags-box', 'underscore', 'word-count', 'wp-a11y' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'post', 'postL10n', array( | |
| 'ok' => __('OK'), | |
| 'cancel' => __('Cancel'), | |
| 'publishOn' => __('Publish on:'), | |
| 'publishOnFuture' => __('Schedule for:'), | |
| 'publishOnPast' => __('Published on:'), | |
| /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ | |
| 'dateFormat' => __('%1$s %2$s, %3$s @ %4$s:%5$s'), | |
| 'showcomm' => __('Show more comments'), | |
| 'endcomm' => __('No more comments found.'), | |
| 'publish' => __('Publish'), | |
| 'schedule' => __('Schedule'), | |
| 'update' => __('Update'), | |
| 'savePending' => __('Save as Pending'), | |
| 'saveDraft' => __('Save Draft'), | |
| 'private' => __('Private'), | |
| 'public' => __('Public'), | |
| 'publicSticky' => __('Public, Sticky'), | |
| 'password' => __('Password Protected'), | |
| 'privatelyPublished' => __('Privately Published'), | |
| 'published' => __('Published'), | |
| 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'), | |
| 'savingText' => __('Saving Draft…'), | |
| 'permalinkSaved' => __( 'Permalink saved' ), | |
| ) ); | |
| $scripts->add( 'press-this', "/wp-admin/js/press-this$suffix.js", array( 'jquery', 'tags-box' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'press-this', 'pressThisL10n', array( | |
| 'newPost' => __( 'Title' ), | |
| 'serverError' => __( 'Connection lost or the server is busy. Please try again later.' ), | |
| 'saveAlert' => __( 'The changes you made will be lost if you navigate away from this page.' ), | |
| /* translators: %d: nth embed found in a post */ | |
| 'suggestedEmbedAlt' => __( 'Suggested embed #%d' ), | |
| /* translators: %d: nth image found in a post */ | |
| 'suggestedImgAlt' => __( 'Suggested image #%d' ), | |
| ) ); | |
| $scripts->add( 'editor-expand', "/wp-admin/js/editor-expand$suffix.js", array( 'jquery' ), false, 1 ); | |
| $scripts->add( 'link', "/wp-admin/js/link$suffix.js", array( 'wp-lists', 'postbox' ), false, 1 ); | |
| $scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array( 'jquery', 'postbox' ) ); | |
| $scripts->add_data( 'comment', 'group', 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'comment', 'commentL10n', array( | |
| 'submittedOn' => __( 'Submitted on:' ), | |
| /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ | |
| 'dateFormat' => __( '%1$s %2$s, %3$s @ %4$s:%5$s' ) | |
| ) ); | |
| $scripts->add( 'admin-gallery', "/wp-admin/js/gallery$suffix.js", array( 'jquery-ui-sortable' ) ); | |
| $scripts->add( 'admin-widgets', "/wp-admin/js/widgets$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable' ), false, 1 ); | |
| $scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'wp-backbone', 'wp-a11y' ), false, 1 ); | |
| $scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest', 'wp-a11y' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array( | |
| 'error' => __( 'Error while saving the changes.' ), | |
| 'ntdeltitle' => __( 'Remove From Bulk Edit' ), | |
| 'notitle' => __( '(no title)' ), | |
| 'comma' => trim( _x( ',', 'tag delimiter' ) ), | |
| 'saved' => __( 'Changes saved.' ), | |
| ) ); | |
| $scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery', 'wp-a11y' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array( | |
| 'error' => __( 'Error while saving the changes.' ), | |
| 'saved' => __( 'Changes saved.' ), | |
| ) ); | |
| $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'plugin-install', 'plugininstallL10n', array( | |
| 'plugin_information' => __('Plugin Information:'), | |
| 'ays' => __('Are you sure you want to install this plugin?') | |
| ) ); | |
| $scripts->add( 'updates', "/wp-admin/js/updates$suffix.js", array( 'jquery', 'wp-util', 'wp-a11y' ) ); | |
| did_action( 'init' ) && $scripts->localize( 'updates', '_wpUpdatesSettings', array( | |
| 'ajax_nonce' => wp_create_nonce( 'updates' ), | |
| 'l10n' => array( | |
| 'updating' => __( 'Updating...' ), // no ellipsis | |
| 'updated' => __( 'Updated!' ), | |
| 'updateFailedShort' => __( 'Update Failed!' ), | |
| /* translators: Error string for a failed update */ | |
| 'updateFailed' => __( 'Update Failed: %s' ), | |
| /* translators: Plugin name and version */ | |
| 'updatingLabel' => __( 'Updating %s...' ), // no ellipsis | |
| /* translators: Plugin name and version */ | |
| 'updatedLabel' => __( '%s updated!' ), | |
| /* translators: Plugin name and version */ | |
| 'updateFailedLabel' => __( '%s update failed' ), | |
| /* translators: JavaScript accessible string */ | |
| 'updatingMsg' => __( 'Updating... please wait.' ), // no ellipsis | |
| /* translators: JavaScript accessible string */ | |
| 'updatedMsg' => __( 'Update completed successfully.' ), | |
| /* translators: JavaScript accessible string */ | |
| 'updateCancel' => __( 'Update canceled.' ), | |
| 'beforeunload' => __( 'Plugin updates may not complete if you navigate away from this page.' ), | |
| ) | |
| ) ); | |
| $scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' ); | |
| $scripts->add( 'iris', '/wp-admin/js/iris.min.js', array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), '1.0.7', 1 ); | |
| $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker$suffix.js", array( 'iris' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( | |
| 'clear' => __( 'Clear' ), | |
| 'defaultString' => __( 'Default' ), | |
| 'pick' => __( 'Select Color' ), | |
| 'current' => __( 'Current Color' ), | |
| ) ); | |
| $scripts->add( 'dashboard', "/wp-admin/js/dashboard$suffix.js", array( 'jquery', 'admin-comments', 'postbox' ), false, 1 ); | |
| $scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js" ); | |
| $scripts->add( 'media-grid', "/wp-includes/js/media-grid$suffix.js", array( 'media-editor' ), false, 1 ); | |
| $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'media', 'attachMediaBoxL10n', array( | |
| 'error' => __( 'An error has occurred. Please reload the page and try again.' ), | |
| )); | |
| $scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'image-edit', 'imageEditL10n', array( | |
| 'error' => __( 'Could not load the preview image. Please reload the page and try again.' ) | |
| )); | |
| $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 ); | |
| did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( | |
| 'setThumbnail' => __( 'Use as featured image' ), | |
| 'saving' => __( 'Saving...' ), // no ellipsis | |
| 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), | |
| 'done' => __( 'Done' ) | |
| ) ); | |
| // Navigation Menus | |
| $scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable', 'wp-lists', 'postbox' ) ); | |
| did_action( 'init' ) && $scripts->localize( 'nav-menu', 'navMenuL10n', array( | |
| 'noResultsFound' => __( 'No results found.' ), | |
| 'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ), | |
| 'saveAlert' => __( 'The changes you made will be lost if you navigate away from this page.' ), | |
| 'untitled' => _x( '(no label)', 'missing menu item navigation label' ) | |
| ) ); | |
| $scripts->add( 'custom-header', "/wp-admin/js/custom-header.js", array( 'jquery-masonry' ), false, 1 ); | |
| $scripts->add( 'custom-background', "/wp-admin/js/custom-background$suffix.js", array( 'wp-color-picker', 'media-views' ), false, 1 ); | |
| $scripts->add( 'media-gallery', "/wp-admin/js/media-gallery$suffix.js", array('jquery'), false, 1 ); | |
| $scripts->add( 'svg-painter', '/wp-admin/js/svg-painter.js', array( 'jquery' ), false, 1 ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment