2009-10-09 01:58:06 +00:00
|
|
|
<?php $transcript_user = get_userdata($transcript['user_id']) ?>
|
2009-09-29 01:54:02 +00:00
|
|
|
<input type="hidden" name="wdts[language]" value="<?php echo $transcript['language'] ?>" />
|
|
|
|
<input type="hidden" name="wdts[post_id]" value="<?php echo $post->ID ?>" />
|
|
|
|
<input type="hidden" name="wdts[key]" value="<?php echo $transcript['key'] ?>" />
|
2009-10-15 01:17:47 +00:00
|
|
|
<p>
|
|
|
|
<?php
|
|
|
|
echo get_avatar($transcript['user_id'], 20);
|
2009-09-29 01:54:02 +00:00
|
|
|
printf(
|
2009-10-15 01:17:47 +00:00
|
|
|
__('<strong>%s</strong> in <strong>%s</strong>:', 'what-did-they-say'),
|
2009-10-09 01:58:06 +00:00
|
|
|
$transcript_user->display_name,
|
2009-09-29 01:54:02 +00:00
|
|
|
$language_options->get_language_name($transcript['language'])
|
|
|
|
)
|
|
|
|
?></p>
|
2009-10-02 01:51:09 +00:00
|
|
|
<div class="queued-transcript wdts-transcript"><?php echo do_shortcode($transcript['transcript']) ?></div>
|
2009-09-30 02:39:37 +00:00
|
|
|
<pre class="queued-transcript-raw" style="display:none"><?php echo $transcript['transcript'] ?></pre>
|
|
|
|
<div class="queued-transcript-actions"></div>
|