1360 | | <label for="video-details-track" class="name"><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></label> |
1361 | | <input class="content-track" type="text" id="video-details-track" readonly value="{{ track.outerHTML }}" /> |
1362 | | <button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button> |
| 1360 | <label for="video-details-track-{{ index }}" class="name"><?php _e( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ); ?></label> |
| 1361 | <input class="content-track" type="text" id="video-details-track-{{ index }}" aria-describedby="video-details-track-desc-{{ index }}" value="{{ track.outerHTML }}" /> |
| 1362 | <span class="description" id="video-details-track-desc-{{ index }}"> |
| 1363 | <?php |
| 1364 | printf( |
| 1365 | /* translators: 1: "srclang" HTML attribute, 2: "label" HTML attribute, 3: "kind" HTML attribute. */ |
| 1366 | __( 'The %1$s, %2$s, and %3$s values can be edited to set the video track language and kind.' ), |
| 1367 | 'srclang', |
| 1368 | 'label', |
| 1369 | 'kind' |
| 1370 | ); |
| 1371 | ?> |
| 1372 | </span> |
| 1373 | <button type="button" class="button-link remove-setting remove-track"><?php _ex( 'Remove video track', 'media' ); ?></button><br/> |