Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. $message = sprintf(
  2. '<div class="transcoding-in-progress"><button id="btn_check_status%1$s" class="btn_check_transcode_status" name="check_status_btn" data-value="%1$s">%2$s</button> <div class="transcode_status_box" id="span_status%1$s">%3$s</div></div>',
  3. esc_attr( $media->media_id ),
  4. esc_html( $check_button_text ),
  5. esc_html__( 'The video is uploading, it can take up to 5 minutes. Try refreshing the page later.', 'transcoder' )
  6. );
  7. } else {
  8. $message = sprintf(
  9. '<p class="transcoding-in-progress">%s</p>',
  10. esc_html__( 'The video is uploading, it can take up to 5 minutes. Try refreshing the page later.', 'transcoder' )
  11. );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement