Ticket #45857: spelling.patch
File spelling.patch, 8.3 KB (added by , 6 years ago) |
---|
-
wp-admin/includes/file.php
1916 1916 } 1917 1917 1918 1918 $title = sprintf( 1919 /* translators: %s: user's e -mail address */1919 /* translators: %s: user's email address */ 1920 1920 __( 'Personal Data Export for %s' ), 1921 1921 $email_address 1922 1922 ); -
wp-includes/class-json.php
15 15 * ideal data-interchange language. 16 16 * 17 17 * This package provides a simple encoder and decoder for JSON notation. It 18 * is intended for use with client-side Java script applications that make18 * is intended for use with client-side JavaScript applications that make 19 19 * use of HTTPRequest to perform server communication functions - data can 20 20 * be encoded into JSON notation for use in a client-side javascript, or 21 * decoded from incoming Java script requests. JSON format is native to22 * Java script, and can be directly eval()'ed with no further parsing21 * decoded from incoming JavaScript requests. JSON format is native to 22 * JavaScript, and can be directly eval()'ed with no further parsing 23 23 * overhead 24 24 * 25 25 * All strings should be in ASCII or UTF-8 format! -
wp-includes/class-snoopy.php
27 27 * License along with this library; if not, write to the Free Software 28 28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 29 29 30 You may contact the author of Snoopy by e -mail at:30 You may contact the author of Snoopy by email at: 31 31 monte@ohrt.com 32 32 33 33 The latest version of Snoopy can be obtained from: -
wp-includes/class-wp-customize-manager.php
3583 3583 * @type string $capability Capability required for the setting. Default 'edit_theme_options' 3584 3584 * @type string|array $theme_supports Theme features required to support the panel. Default is none. 3585 3585 * @type string $default Default value for the setting. Default is empty string. 3586 * @type string $transport Options for rendering the live preview of changes in ThemeCustomizer.3586 * @type string $transport Options for rendering the live preview of changes in Customizer. 3587 3587 * Using 'refresh' makes the change visible by reloading the whole preview. 3588 3588 * Using 'postMessage' allows a custom JavaScript to handle live changes. 3589 3589 * @link https://developer.wordpress.org/themes/customize-api -
wp-includes/class-wp-customize-setting.php
66 66 public $default = ''; 67 67 68 68 /** 69 * Options for rendering the live preview of changes in ThemeCustomizer.69 * Options for rendering the live preview of changes in Customizer. 70 70 * 71 * Set this value to 'postMessage' to enable a custom Java script handler to render changes to this setting71 * Set this value to 'postMessage' to enable a custom JavaScript handler to render changes to this setting 72 72 * as opposed to reloading the whole page. 73 73 * 74 74 * @link https://developer.wordpress.org/themes/customize-api -
wp-includes/class-wp-site.php
316 316 if ( false === $details ) { 317 317 318 318 switch_to_blog( $this->blog_id ); 319 // Create a raw copy of the object for backward scompatibility with the filter below.319 // Create a raw copy of the object for backward compatibility with the filter below. 320 320 $details = new stdClass(); 321 321 foreach ( get_object_vars( $this ) as $key => $value ) { 322 322 $details->$key = $value; -
wp-includes/media.php
732 732 $data = array_shift( $candidates ); 733 733 /* 734 734 * When the size requested is smaller than the thumbnail dimensions, we 735 * fall back to the thumbnail size to maintain backward scompatibility with735 * fall back to the thumbnail size to maintain backward compatibility with 736 736 * pre 4.6 versions of WordPress. 737 737 */ 738 738 } elseif ( ! empty( $imagedata['sizes']['thumbnail'] ) && $imagedata['sizes']['thumbnail']['width'] >= $size[0] && $imagedata['sizes']['thumbnail']['width'] >= $size[1] ) { -
wp-includes/script-loader.php
995 995 $scripts->add( 'jquery-table-hotkeys', "/wp-includes/js/jquery/jquery.table-hotkeys$suffix.js", array('jquery', 'jquery-hotkeys'), false, 1 ); 996 996 $scripts->add( 'jquery-touch-punch', "/wp-includes/js/jquery/jquery.ui.touch-punch.js", array('jquery-ui-widget', 'jquery-ui-mouse'), '0.2.2', 1 ); 997 997 998 // Not used any more, registered for backward scompatibility.998 // Not used any more, registered for backward compatibility. 999 999 $scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array('jquery'), '1.1-20110113', 1 ); 1000 1000 1001 1001 // Masonry v2 depended on jQuery. v3 does not. The older jquery-masonry handle is a shiv. -
wp-includes/SimplePie/Enclosure.php
923 923 } 924 924 925 925 /** 926 * Embed the enclosure using Java script926 * Embed the enclosure using JavaScript 927 927 * 928 928 * `$options` is an array or comma-separated key:value string, with the 929 929 * following properties: -
wp-includes/SimplePie/Registry.php
208 208 switch ($type) 209 209 { 210 210 case 'Cache': 211 // For backward scompatibility with old non-static211 // For backward compatibility with old non-static 212 212 // Cache::create() methods 213 213 if ($method === 'get_handler') 214 214 { -
wp-includes/theme.php
3127 3127 * it is now a persistent changeset, a long-lived draft, and so any 3128 3128 * associated auto-draft posts should likewise transition into having a draft 3129 3129 * status. These drafts will be treated differently than regular drafts in 3130 * that they will be tied to the given changeset. The publish meta box is3130 * that they will be tied to the given changeset. The publish meta box is 3131 3131 * replaced with a notice about how the post is part of a set of customized changes 3132 3132 * which will be published when the changeset is published. 3133 3133 */ -
wp-includes/wp-db.php
1262 1262 * If a %s placeholder already has quotes around it, removing the existing quotes and re-inserting them 1263 1263 * ensures the quotes are consistent. 1264 1264 * 1265 * For backward scompatibility, this is only applied to %s, and not to placeholders like %1$s, which are frequently1265 * For backward compatibility, this is only applied to %s, and not to placeholders like %1$s, which are frequently 1266 1266 * used in the middle of longer strings, or as table name placeholders. 1267 1267 */ 1268 1268 $query = str_replace( "'%s'", '%s', $query ); // Strip any existing single quotes.