mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-29 15:44:27 +00:00
Administration: Remove self-reference ("we") in WordPress Admin.
This changes updates many strings to remove self-references to an undefined "we" collective across the WordPress Administration. The goal of this change is to better match the guidelines and recommendations set forth in the make/core handbook, specifically: > the word "we" should be avoided (…) unless its made very clear which group is speaking. Props johnbillion, shital-patel, audrasjb, marybaum, SergeyBiryukov, peterwilsoncc, johnjamesjacoby, kebbet, costdev, chaion07, davidbaumwald. Fixes #46057. git-svn-id: https://develop.svn.wordpress.org/trunk@53131 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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. */
|
||||
__( 'We cannot find that audio file. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That audio file can not 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. */
|
||||
__( 'We cannot find that image. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That image can not 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. */
|
||||
__( 'We cannot find that video. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That video can not 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, we cannot load the video at the supplied URL. 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 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>' ),
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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. */
|
||||
__( 'We cannot find that file. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
|
||||
__( 'That file can not 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. */
|
||||
|
||||
Reference in New Issue
Block a user