- Timestamp:
- 09/29/2017 11:41:06 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-media-video.php
r41198 r41640 34 34 'edit_media' => _x( 'Edit Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ), 35 35 'missing_attachment' => sprintf( 36 /* translators: placeholder isURL to media library */36 /* translators: %s: URL to media library */ 37 37 __( 'We can’t find that video. Check your <a href="%s">media library</a> and make sure it wasn’t deleted.' ), 38 38 esc_url( admin_url( 'upload.php' ) ) 39 39 ), 40 /* translators: %d iswidget count */40 /* translators: %d: widget count */ 41 41 'media_library_state_multi' => _n_noop( 'Video Widget (%d)', 'Video Widget (%d)' ), 42 42 'media_library_state_single' => __( 'Video Widget' ), 43 /* translators: placeholder isa list of valid video file extensions */44 'unsupported_file_type' => sprintf( __( 'Sorry, we can’t display the video file type selected. Please select a supported video file (% 1$s) or stream (YouTube or Vimeo) instead.' ), '<code>.' . implode( '</code>, <code>.', wp_get_video_extensions() ) . '</code>' ),43 /* translators: %s: a list of valid video file extensions */ 44 'unsupported_file_type' => sprintf( __( 'Sorry, we can’t display the video file type selected. Please select a supported video file (%s) or stream (YouTube or Vimeo) instead.' ), '<code>.' . implode( '</code>, <code>.', wp_get_video_extensions() ) . '</code>' ), 45 45 ) ); 46 46 } … … 88 88 'default' => '', 89 89 'format' => 'uri', 90 /* translators: placeholder isvideo extension */90 /* translators: %s: video extension */ 91 91 'description' => sprintf( __( 'URL to the %s video source file' ), $video_extension ), 92 92 );
Note: See TracChangeset
for help on using the changeset viewer.