- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-media-video.php
r45306 r45932 41 41 'edit_media' => _x( 'Edit Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ), 42 42 'missing_attachment' => sprintf( 43 /* translators: %s: URL to media library */43 /* translators: %s: URL to media library. */ 44 44 __( 'We can’t find that video. Check your <a href="%s">media library</a> and make sure it wasn’t deleted.' ), 45 45 esc_url( admin_url( 'upload.php' ) ) 46 46 ), 47 /* translators: %d: widget count*/47 /* translators: %d: Widget count. */ 48 48 'media_library_state_multi' => _n_noop( 'Video Widget (%d)', 'Video Widget (%d)' ), 49 49 'media_library_state_single' => __( 'Video Widget' ), 50 /* translators: %s: a list of valid video file extensions*/50 /* translators: %s: A list of valid video file extensions. */ 51 51 'unsupported_file_type' => sprintf( __( 'Sorry, we can’t 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>' ), 52 52 ) … … 94 94 'default' => '', 95 95 'format' => 'uri', 96 /* translators: %s: video extension*/96 /* translators: %s: Video extension. */ 97 97 'description' => sprintf( __( 'URL to the %s video source file' ), $video_extension ), 98 98 );
Note: See TracChangeset
for help on using the changeset viewer.