Administration: Replace "can not" with "cannot" after [53131].
Follow-up to [53132], [53131], [52979]. Built from https://develop.svn.wordpress.org/trunk@53136 git-svn-id: http://core.svn.wordpress.org/trunk@52725 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2ec4c366e6
commit
8f35c61e7b
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-53135';
|
||||
$wp_version = '6.0-alpha-53136';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
|
@ -41,7 +41,7 @@ class WP_Widget_Media_Audio extends WP_Widget_Media {
|
|||
'edit_media' => _x( 'Edit Audio', 'label for button in the audio widget; should preferably not be longer than ~13 characters long' ),
|
||||
'missing_attachment' => sprintf(
|
||||
/* translators: %s: URL to media library. */
|
||||
__( 'That audio file can not be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That audio file cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
esc_url( admin_url( 'upload.php' ) )
|
||||
),
|
||||
/* translators: %d: Widget count. */
|
||||
|
|
|
@ -41,7 +41,7 @@ class WP_Widget_Media_Image extends WP_Widget_Media {
|
|||
'edit_media' => _x( 'Edit Image', 'label for button in the image widget; should preferably not be longer than ~13 characters long' ),
|
||||
'missing_attachment' => sprintf(
|
||||
/* translators: %s: URL to media library. */
|
||||
__( 'That image can not be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That image cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
esc_url( admin_url( 'upload.php' ) )
|
||||
),
|
||||
/* translators: %d: Widget count. */
|
||||
|
|
|
@ -41,14 +41,14 @@ class WP_Widget_Media_Video extends WP_Widget_Media {
|
|||
'edit_media' => _x( 'Edit Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ),
|
||||
'missing_attachment' => sprintf(
|
||||
/* translators: %s: URL to media library. */
|
||||
__( 'That video can not be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That video cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
esc_url( admin_url( 'upload.php' ) )
|
||||
),
|
||||
/* translators: %d: Widget count. */
|
||||
'media_library_state_multi' => _n_noop( 'Video Widget (%d)', 'Video Widget (%d)' ),
|
||||
'media_library_state_single' => __( 'Video Widget' ),
|
||||
/* translators: %s: A list of valid video file extensions. */
|
||||
'unsupported_file_type' => sprintf( __( 'Sorry, the video at the supplied URL can not be loaded. Please check that the URL is for a supported video file (%s) or stream (e.g. YouTube and Vimeo).' ), '<code>.' . implode( '</code>, <code>.', wp_get_video_extensions() ) . '</code>' ),
|
||||
'unsupported_file_type' => sprintf( __( 'Sorry, the video at the supplied URL cannot be loaded. Please check that the URL is for a supported video file (%s) or stream (e.g. YouTube and Vimeo).' ), '<code>.' . implode( '</code>, <code>.', wp_get_video_extensions() ) . '</code>' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@ abstract class WP_Widget_Media extends WP_Widget {
|
|||
'add_to_widget' => __( 'Add to Widget' ),
|
||||
'missing_attachment' => sprintf(
|
||||
/* translators: %s: URL to media library. */
|
||||
__( 'That file can not be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That file cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
esc_url( admin_url( 'upload.php' ) )
|
||||
),
|
||||
/* translators: %d: Widget count. */
|
||||
|
|
Loading…
Reference in New Issue