Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1314,7 +1314,7 @@ module.exports = function(grunt) {
});

// Allow builds to be minimal.
if( grunt.option( 'minimal-copy' ) ) {
if ( grunt.option( 'minimal-copy' ) ) {
var copyFilesOptions = grunt.config.get( 'copy.files.files' );
copyFilesOptions[0].src.push( '!wp-content/plugins/**' );
copyFilesOptions[0].src.push( '!wp-content/themes/!(twenty*)/**' );
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/includes/class-language-pack-upgrader.php
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public function check_package( $source, $remote_source ) {
$this->strings['incompatible_archive'],
sprintf(
/* translators: 1: .po, 2: .mo, 3: .l10n.php */
__( 'The language pack is missing either the %1$s, %2$s, or %3$s files.' ),
__( 'The language pack is missing both the %1$s and %2$s files, or the %3$s file.' ),
'<code>.po</code>',
'<code>.mo</code>',
'<code>.l10n.php</code>'
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/includes/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
'Error: The following required PHP extensions are missing from the testing environment: %s.' . PHP_EOL,
implode( ', ', $missing_extensions )
);
echo 'Please make sure they are installed and enabled.' . PHP_EOL,
echo 'Please make sure they are installed and enabled.' . PHP_EOL;
exit( 1 );
}
}
Expand Down