more tests, more changes
This commit is contained in:
parent
855cab5e1c
commit
b7cb6599de
|
@ -54,6 +54,8 @@ class WhatDidTheySayAdmin {
|
||||||
* Initialize the object.
|
* Initialize the object.
|
||||||
*/
|
*/
|
||||||
function init() {
|
function init() {
|
||||||
|
global $wpdb;
|
||||||
|
|
||||||
// set up capabilities
|
// set up capabilities
|
||||||
$this->capabilities = array(
|
$this->capabilities = array(
|
||||||
'submit_transcriptions' => __('Submit transcriptions to a post', 'what-did-they-say'),
|
'submit_transcriptions' => __('Submit transcriptions to a post', 'what-did-they-say'),
|
||||||
|
@ -108,10 +110,6 @@ class WhatDidTheySayAdmin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($reset_filter_value) {
|
|
||||||
// $options['filters_to_use'] = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (array(
|
foreach (array(
|
||||||
array('the_media_transcript', 2),
|
array('the_media_transcript', 2),
|
||||||
array('the_language_name', 2),
|
array('the_language_name', 2),
|
||||||
|
@ -169,13 +167,19 @@ class WhatDidTheySayAdmin {
|
||||||
|
|
||||||
if (isset($_REQUEST['wdts']['_nonce'])) {
|
if (isset($_REQUEST['wdts']['_nonce'])) {
|
||||||
if (wp_verify_nonce($_REQUEST['wdts']['_nonce'], 'what-did-they-say')) {
|
if (wp_verify_nonce($_REQUEST['wdts']['_nonce'], 'what-did-they-say')) {
|
||||||
|
if (($_REQUEST['wdts']['post_id'] <= 0) && ($_POST['post_ID'] > 0)) {
|
||||||
|
$_REQUEST['wdts']['post_id'] = $_POST['post_ID'];
|
||||||
|
}
|
||||||
|
|
||||||
$this->handle_update($_REQUEST['wdts']);
|
$this->handle_update($_REQUEST['wdts']);
|
||||||
|
|
||||||
if ($this->is_ajax) { exit(0); }
|
if ($this->is_ajax) { exit(0); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
$this->transcript_count = (int)$wpdb->get_var($wpdb->prepare("SELECT count($wpdb->postmeta.meta_key) FROM $wpdb->postmeta WHERE $wpdb->postmeta.meta_key = 'approved_transcripts'"));
|
||||||
|
}
|
||||||
|
|
||||||
/** Widget **/
|
/** Widget **/
|
||||||
|
|
||||||
|
@ -268,6 +272,12 @@ class WhatDidTheySayAdmin {
|
||||||
wp_enqueue_style('wdts-defaults', plugin_dir_url(dirname(__FILE__)) . 'css/wdts-defaults.css');
|
wp_enqueue_style('wdts-defaults', plugin_dir_url(dirname(__FILE__)) . 'css/wdts-defaults.css');
|
||||||
|
|
||||||
$this->plugin_data = get_plugin_data($this->_parent_file);
|
$this->plugin_data = get_plugin_data($this->_parent_file);
|
||||||
|
|
||||||
|
if ($this->transcript_count == 0) {
|
||||||
|
$this->notices[] = __('Welcome to <strong>What Did They Say?!?</strong> To get started, read the <strong>Introduction</strong>, and then <strong>How It Works</strong>.', 'what-did-they-say');
|
||||||
|
} elseif ($this->transcript_count < 10) {
|
||||||
|
$this->notices[] = __('Is <strong>What Did They Say?!?</strong> working out for you? Let John know via email (<a href="mailto:john@coswellproductions.com">john@coswellproductions.com</a>) or Twitter (<a href="http://twitter.com/JohnBintz">@JohnBintz</a>).', 'what-did-they-say');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_enqueue_script('scriptaculous-effects');
|
wp_enqueue_script('scriptaculous-effects');
|
||||||
|
@ -294,7 +304,9 @@ class WhatDidTheySayAdmin {
|
||||||
|
|
||||||
wp_enqueue_script('scriptaculous-effects');
|
wp_enqueue_script('scriptaculous-effects');
|
||||||
wp_enqueue_script('edit-transcripts', plugin_dir_url(dirname(__FILE__)) . 'js/edit-transcripts.js', array('scriptaculous-effects', 'wdts-script'));
|
wp_enqueue_script('edit-transcripts', plugin_dir_url(dirname(__FILE__)) . 'js/edit-transcripts.js', array('scriptaculous-effects', 'wdts-script'));
|
||||||
}
|
|
||||||
|
add_action('wp_head', array(&$this, 'include_editor_javascript'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -831,10 +843,8 @@ class WhatDidTheySayAdmin {
|
||||||
|
|
||||||
$nonce = wp_create_nonce('what-did-they-say');
|
$nonce = wp_create_nonce('what-did-they-say');
|
||||||
|
|
||||||
$transcript_count = (int)$wpdb->get_var($wpdb->prepare("SELECT count($wpdb->postmeta.meta_key) FROM $wpdb->postmeta WHERE $wpdb->postmeta.meta_key = 'approved_transcripts'"));
|
|
||||||
$suggested_amount = 20 + ($transcript_count * 0.1);
|
|
||||||
|
|
||||||
$available_filters = $this->_get_available_override_filters();
|
$available_filters = $this->_get_available_override_filters();
|
||||||
|
$suggested_amount = 20 + ($this->transcript_count * 0.1);
|
||||||
|
|
||||||
include('partials/admin.inc');
|
include('partials/admin.inc');
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<input type="hidden" name="wdts[action]" value="add" />
|
<input type="hidden" name="wdts[action]" value="add" />
|
||||||
<input type="hidden" name="wdts[module]" value="languages" />
|
<input type="hidden" name="wdts[module]" value="languages" />
|
||||||
<select name="wdts[code]">
|
<select name="wdts[code]">
|
||||||
<option value="">-- select --</option>
|
<option value=""><?php _e('-- select --', 'what-did-they-say') ?></option>
|
||||||
<?php foreach ($this->all_languages as $code => $language) { ?>
|
<?php foreach ($this->all_languages as $code => $language) { ?>
|
||||||
<option value="<?php echo $code ?>"><?php echo $language ?></option>
|
<option value="<?php echo $code ?>"><?php echo $language ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
<label>
|
<label>
|
||||||
<?php _e('Use the selected transcript filter set:', 'what-did-they-say') ?>
|
<?php _e('Use the selected transcript filter set:', 'what-did-they-say') ?>
|
||||||
<select name="wdts[filters_to_use]">
|
<select name="wdts[filters_to_use]">
|
||||||
<option value="__default__">(default)</option>
|
<option value="__default__"><?php _e('(default)', 'what-did-they-say') ?></option>
|
||||||
<?php foreach ($available_filters as $filter_name) { ?>
|
<?php foreach ($available_filters as $filter_name) { ?>
|
||||||
<option value="<?php echo $filter_name ?>"<?php echo ($options['filters_to_use'] == $filter_name) ? ' selected="selected"' : '' ?>><?php echo $filter_name ?></option>
|
<option value="<?php echo $filter_name ?>"<?php echo ($options['filters_to_use'] == $filter_name) ? ' selected="selected"' : '' ?>><?php echo $filter_name ?></option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$sample_transcript = array();
|
$sample_transcript = array();
|
||||||
$sample_transcript[] = '[scene-heading]Ext. The Old Man\'s House[/scene-heading]';
|
$sample_transcript[] = __('[scene-heading]Ext. The Old Man\'s House[/scene-heading]', 'what-did-they-say');
|
||||||
$sample_transcript[] = '[scene-action]John is walking down to the car parked in the driveway.[/scene-action]';
|
$sample_transcript[] = __('[scene-action]John is walking down to the car parked in the driveway.[/scene-action]', 'what-did-they-say');
|
||||||
$sample_transcript[] = '[dialog name="John" direction="(towards the house)"]Hey, where are the keys?[/dialog]';
|
$sample_transcript[] = __('[dialog name="John" direction="(towards the house)"]Hey, where are the keys?[/dialog]', 'what-did-they-say');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<?php if (current_user_can('submit_transcriptions')) { ?>
|
<?php if (current_user_can('submit_transcriptions')) { ?>
|
||||||
|
|
|
@ -45,8 +45,16 @@
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a href="<?php echo $PluginURI ?>"><?php _e('What Did They Say?!?', 'what-did-they-say') ?></a> Version <?php echo $Version ?> is © 2009 <?php echo $Author ?>.
|
<?php
|
||||||
<?php printf(__('Might I suggest a $%1$0.2f donation for your %2$d transcripts?', 'what-did-they-say'), $suggested_amount, $transcript_count) ?>
|
printf(
|
||||||
|
__('%1$s Version %2$s is © 2009 %3$s.', 'what-did-they-say'),
|
||||||
|
'<a href="' . $PluginURI . '">' . __('What Did They Say?!?', 'what-did-they-say') . '</a>',
|
||||||
|
$Version,
|
||||||
|
$Author
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<?php printf(__('Might I suggest a $%1$0.2f donation for your %2$d transcripts?', 'what-did-they-say'), $suggested_amount, $this->transcript_count) ?> |
|
||||||
|
<a href="http://bugs.comicpress.org/index.php?project=3&do=index"><?php _e('File a bug', 'what-did-they-say') ?></a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -21,6 +21,21 @@
|
||||||
<td>title</td>
|
<td>title</td>
|
||||||
<td>WDTS Test Post</td>
|
<td>WDTS Test Post</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>type</td>
|
||||||
|
<td>//textarea[@name="wdts[transcripts][en]"]</td>
|
||||||
|
<td>This is a test transcript inserted on creation.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>fireEvent</td>
|
||||||
|
<td>title</td>
|
||||||
|
<td>blur</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>pause</td>
|
||||||
|
<td>2000</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>clickAndWait</td>
|
<td>clickAndWait</td>
|
||||||
<td>publish</td>
|
<td>publish</td>
|
||||||
|
@ -31,6 +46,11 @@
|
||||||
<td>Post published.</td>
|
<td>Post published.</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>assertValue</td>
|
||||||
|
<td>//textarea[@name="wdts[transcripts][en]"]</td>
|
||||||
|
<td>This is a test transcript inserted on creation.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>storeValue</td>
|
<td>storeValue</td>
|
||||||
<td>post_ID</td>
|
<td>post_ID</td>
|
||||||
|
|
|
@ -21,6 +21,11 @@
|
||||||
<td>wdts-tab-change-languages</td>
|
<td>wdts-tab-change-languages</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>pause</td>
|
||||||
|
<td>250</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>assertVisible</td>
|
<td>assertVisible</td>
|
||||||
<td>//span[contains(text(), "German")]</td>
|
<td>//span[contains(text(), "German")]</td>
|
||||||
|
|
|
@ -21,6 +21,11 @@
|
||||||
<td>wdts-tab-misc-options</td>
|
<td>wdts-tab-misc-options</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>pause</td>
|
||||||
|
<td>250</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>assertTextPresent</td>
|
<td>assertTextPresent</td>
|
||||||
<td>Reset Settings to Default</td>
|
<td>Reset Settings to Default</td>
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: what-did-they-say 0.9\n"
|
"Project-Id-Version: what-did-they-say 0.9\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-10-08 11:44-0400\n"
|
"POT-Creation-Date: 2009-10-08 21:58-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -16,11 +16,11 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: what-did-they-say.php:214
|
#: what-did-they-say.php:207
|
||||||
msgid "Edit/Add Transcripts"
|
msgid "Edit/Add Transcripts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: what-did-they-say.php:220
|
#: what-did-they-say.php:213
|
||||||
msgid "Manage Transcripts:"
|
msgid "Manage Transcripts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ msgid "Edit Approved Transcripts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/meta-box.inc:34
|
#: classes/partials/meta-box.inc:34
|
||||||
#: classes/partials/_manage-queued-transcripts.inc:19
|
#: classes/partials/_manage-queued-transcripts.inc:36
|
||||||
msgid "Language:"
|
msgid "Language:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ msgid ""
|
||||||
"Say?!? Misc. Options page."
|
"Say?!? Misc. Options page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_queued-transcript-contents.inc:6
|
#: classes/partials/_queued-transcript-contents.inc:7
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "From <strong>%s</strong> in <strong>%s</strong>:"
|
msgid "From <strong>%s</strong> in <strong>%s</strong>:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -423,7 +423,7 @@ msgid ""
|
||||||
"following Template Tag to your search results Loop:"
|
"following Template Tag to your search results Loop:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_introduction.inc:84 classes/partials/admin.inc:5
|
#: classes/partials/_introduction.inc:84 classes/partials/admin.inc:6
|
||||||
msgid "Styles"
|
msgid "Styles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -434,7 +434,7 @@ msgid ""
|
||||||
"the %s page."
|
"the %s page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_change-languages.inc:3 classes/partials/admin.inc:6
|
#: classes/partials/_change-languages.inc:3 classes/partials/admin.inc:7
|
||||||
msgid "Languages"
|
msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -479,37 +479,140 @@ msgid ""
|
||||||
"You are about to delete this language from the available list. Continue?"
|
"You are about to delete this language from the available list. Continue?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/admin.inc:4 classes/partials/_capabilities.inc:5
|
#: classes/partials/admin.inc:4 classes/partials/_how-it-works.inc:2
|
||||||
|
msgid "How It Works"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/admin.inc:5 classes/partials/_capabilities.inc:5
|
||||||
msgid "Capabilities"
|
msgid "Capabilities"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/admin.inc:7
|
#: classes/partials/admin.inc:8
|
||||||
msgid "Short Codes Info"
|
msgid "Short Codes Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/admin.inc:8
|
#: classes/partials/admin.inc:9
|
||||||
msgid "Misc. Options"
|
msgid "Misc. Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/admin.inc:14 classes/partials/admin.inc:47
|
#: classes/partials/admin.inc:15 classes/partials/admin.inc:48
|
||||||
#: classes/WhatDidTheySayAdmin.inc:249 classes/WhatDidTheySayAdmin.inc:250
|
#: classes/WhatDidTheySayAdmin.inc:258 classes/WhatDidTheySayAdmin.inc:259
|
||||||
msgid "What Did They Say?!?"
|
msgid "What Did They Say?!?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/admin.inc:48
|
#: classes/partials/admin.inc:49
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Might I suggest a $%1$0.2f donation for your %2$d transcripts?"
|
msgid "Might I suggest a $%1$0.2f donation for your %2$d transcripts?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_manage-queued-transcripts.inc:2
|
#: classes/partials/_how-it-works.inc:5
|
||||||
msgid "Your Submitted Transcripts:"
|
msgid ""
|
||||||
|
"<strong>What Did They Say?!?</strong> uses a wspecial workflow to handle the "
|
||||||
|
"submission and approval of transcripts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_manage-queued-transcripts.inc:11
|
#: classes/partials/_how-it-works.inc:6
|
||||||
|
msgid ""
|
||||||
|
"Below are the typical usage patterns of <strong>What Did They Say?!?</"
|
||||||
|
"strong>:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:11
|
||||||
|
msgid "A single user updating their own transcripts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:14
|
||||||
|
msgid ""
|
||||||
|
"If you're the only user of the site, you would edit the <strong>Approved "
|
||||||
|
"transcripts</strong> of each post. You don't need to enable transcript "
|
||||||
|
"submissions for any of your posts."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:15 classes/partials/_how-it-works.inc:24
|
||||||
|
msgid ""
|
||||||
|
"All users need to have enough permissions to <strong>Approve Transcripts</"
|
||||||
|
"strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:20
|
||||||
|
msgid "Multiple users who directly update transcripts on posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:23
|
||||||
|
msgid ""
|
||||||
|
"If you trust the other users on your site, you all would edit the "
|
||||||
|
"<strong>Approved transcripts</strong> of each post. Again, you don't need to "
|
||||||
|
"enable transcript submissions for any of your posts."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:29
|
||||||
|
msgid ""
|
||||||
|
"Multiple users, some of which submit transcripts and some that approve "
|
||||||
|
"transcripts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:32
|
||||||
|
msgid ""
|
||||||
|
"The users who are allowed to submit transcripts get the <strong>Submit "
|
||||||
|
"Transcripts</strong> capability."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:33
|
||||||
|
msgid ""
|
||||||
|
"The users who aprove transcripts get the <strong>Approve Transcripts</"
|
||||||
|
"strong> capability."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:37
|
||||||
|
msgid ""
|
||||||
|
"For posts where users are allowed to submit transcripts, a user with Approve "
|
||||||
|
"Transcripts needs to enable <strong>Allow new transcripts for this post</"
|
||||||
|
"strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:41
|
||||||
|
msgid ""
|
||||||
|
"Transcript submitters need to submit transcripts from the post directly, not "
|
||||||
|
"from the Admin interface."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:42
|
||||||
|
msgid ""
|
||||||
|
"Transcript submitters submit their transcripts to the queue, making them "
|
||||||
|
"<strong>Queued Transcripts</strong>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:43
|
||||||
|
msgid ""
|
||||||
|
"Submitters can edit and delete their own transcripts while they're in the "
|
||||||
|
"queue. Once they're approved, they can no longer be edited by the submitter."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:47
|
||||||
|
msgid ""
|
||||||
|
"Transcript approvers can approve, edit, or delete queued transcripts of any "
|
||||||
|
"users."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_how-it-works.inc:48
|
||||||
|
msgid ""
|
||||||
|
"Once a transcript is approved, it's removed from the queue and made live on "
|
||||||
|
"the site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_manage-queued-transcripts.inc:6
|
||||||
|
msgid "All Submitted Transcripts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_manage-queued-transcripts.inc:12
|
||||||
|
msgid "Your Submitted Transcripts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/partials/_manage-queued-transcripts.inc:28
|
||||||
msgid "Submit a New Transcript:"
|
msgid "Submit a New Transcript:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/partials/_manage-queued-transcripts.inc:30
|
#: classes/partials/_manage-queued-transcripts.inc:47
|
||||||
msgid "Submit For Approval"
|
msgid "Submit For Approval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -644,75 +747,83 @@ msgstr ""
|
||||||
msgid "Change the available languages"
|
msgid "Change the available languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:273
|
#: classes/WhatDidTheySayAdmin.inc:159
|
||||||
|
msgid "What Did They Say?!? Transcript"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/WhatDidTheySayAdmin.inc:159
|
||||||
|
msgid "Show the transcript for the current post."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/WhatDidTheySayAdmin.inc:282
|
||||||
msgid "Manage Transcripts"
|
msgid "Manage Transcripts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:481
|
#: classes/WhatDidTheySayAdmin.inc:490
|
||||||
msgid "Transcript added to queue."
|
msgid "Transcript added to queue."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:483
|
#: classes/WhatDidTheySayAdmin.inc:492
|
||||||
msgid "Transcript not added to queue."
|
msgid "Transcript not added to queue."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:554
|
#: classes/WhatDidTheySayAdmin.inc:563
|
||||||
msgid "Transcripts updated."
|
msgid "Transcripts updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:623
|
#: classes/WhatDidTheySayAdmin.inc:632
|
||||||
msgid "Default styles option updated."
|
msgid "Default styles option updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:639
|
#: classes/WhatDidTheySayAdmin.inc:648
|
||||||
msgid "Insertion level updated."
|
msgid "Insertion level updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:657
|
|
||||||
#, php-format
|
|
||||||
msgid "%s deleted."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:659
|
|
||||||
msgid "Language not deleted!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:666
|
#: classes/WhatDidTheySayAdmin.inc:666
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s added."
|
msgid "%s deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:668
|
#: classes/WhatDidTheySayAdmin.inc:668
|
||||||
|
msgid "Language not deleted!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/WhatDidTheySayAdmin.inc:675
|
||||||
|
#, php-format
|
||||||
|
msgid "%s added."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/WhatDidTheySayAdmin.inc:677
|
||||||
msgid "Language not added!"
|
msgid "Language not added!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:674
|
#: classes/WhatDidTheySayAdmin.inc:683
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s set as default."
|
msgid "%s set as default."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:676
|
#: classes/WhatDidTheySayAdmin.inc:685
|
||||||
msgid "Language not set as default!"
|
msgid "Language not set as default!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:682
|
#: classes/WhatDidTheySayAdmin.inc:691
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s renamed to %2$s."
|
msgid "%1$s renamed to %2$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:684
|
#: classes/WhatDidTheySayAdmin.inc:693
|
||||||
msgid "Language not renamed!"
|
msgid "Language not renamed!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:707
|
#: classes/WhatDidTheySayAdmin.inc:716
|
||||||
msgid "User capabilities updated."
|
msgid "User capabilities updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:726
|
#: classes/WhatDidTheySayAdmin.inc:735
|
||||||
msgid "<strong>What Did They Say?!?</strong> options reset."
|
msgid "<strong>What Did They Say?!?</strong> options reset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/WhatDidTheySayAdmin.inc:745
|
#: classes/WhatDidTheySayAdmin.inc:754
|
||||||
msgid "<strong>What Did They Say?!?</strong> core options changed."
|
msgid "<strong>What Did They Say?!?</strong> core options changed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue