subscriber transcript queue editing repairs

This commit is contained in:
John Bintz 2009-10-14 07:38:43 -04:00
parent b25c05e600
commit 1f3e3ae38c
6 changed files with 119 additions and 95 deletions

View File

@ -9,7 +9,7 @@
<?php _e('Allow new transcripts to be submitted for this post', 'what-did-they-say') ?> <?php _e('Allow new transcripts to be submitted for this post', 'what-did-they-say') ?>
<?php } ?> <?php } ?>
<?php $approved_editor_id = md5(rand()) ?> <?php $approved_editor_id = md5(rand()); ?>
<script type="text/javascript"> <script type="text/javascript">
var queued_editors_to_attach = []; var queued_editors_to_attach = [];
@ -20,7 +20,7 @@
<?php } ?> <?php } ?>
<?php if (current_user_can('approve_transcriptions')) { ?> <?php if (current_user_can('approve_transcriptions')) { ?>
<?php if (is_array($queued_transcripts) && !empty($queued_transcripts)) { ?> <?php if (is_array($queued_transcripts) && !empty($queued_transcripts) && is_admin()) { ?>
<?php wdts_header_wrapper(__('Manage Queued Transcripts:', 'what-did-they-say')) ?> <?php wdts_header_wrapper(__('Manage Queued Transcripts:', 'what-did-they-say')) ?>
<?php <?php
foreach ($queued_transcripts as $transcript) { foreach ($queued_transcripts as $transcript) {
@ -61,19 +61,25 @@
<script type="text/javascript"> <script type="text/javascript">
queued_editors_to_attach.each(function(q) { queued_editors_to_attach.each(function(q) {
WhatDidTheySay.setup_transcript_action_buttons(q, 'wdts-<?php echo $approved_editor_id ?>') <?php
$params = array('q');
if (current_user_can('approve_transcriptions')) { $params[] = 'wdts-' . $approved_editor_id; }
?>
WhatDidTheySay.setup_transcript_action_buttons(<?php echo implode(',', $params) ?>);
}); });
<?php if (current_user_can('approve_transcriptions')) { ?>
WhatDidTheySay.setup_transcript_editor('wdts-<?php echo $approved_editor_id ?>');
<?php if (!is_admin()) { ?>
<?php
$allow_new_transcripts_parameters = array("'wdts-${checkbox_id}'");
if (isset($new_transcript_id)) {
$allow_new_transcripts_parameters[] = "'wdts-${new_transcript_id}'";
}
?>
WhatDidTheySay.setup_allow_new_transcripts(<?php echo implode(",", $allow_new_transcripts_parameters) ?>);
<?php } ?>
<?php } ?>
$$('.wdts-embed-warning').invoke('hide'); $$('.wdts-embed-warning').invoke('hide');
WhatDidTheySay.setup_transcript_editor('wdts-<?php echo $approved_editor_id ?>');
<?php if (!is_admin()) { ?>
<?php
$allow_new_transcripts_parameters = array("'wdts-${checkbox_id}'");
if (isset($new_transcript_id)) {
$allow_new_transcripts_parameters[] = "'wdts-${new_transcript_id}'";
}
?>
WhatDidTheySay.setup_allow_new_transcripts(<?php echo implode(",", $allow_new_transcripts_parameters) ?>);
<?php } ?>
</script> </script>

View File

@ -154,9 +154,12 @@ WhatDidTheySay.setup_transcript_editor = function(container) {
* Set up action buttons for queued transcripts. * Set up action buttons for queued transcripts.
*/ */
WhatDidTheySay.setup_transcript_action_buttons = function(container, approved_editor_container) { WhatDidTheySay.setup_transcript_action_buttons = function(container, approved_editor_container) {
if (container && approved_editor_container) { if (container) {
container = $(container); container = $(container);
approved_editor_container = $(approved_editor_container);
if (approved_editor_container) {
approved_editor_container = $(approved_editor_container);
}
var actions_holder = container.select('.queued-transcript-actions').pop(); var actions_holder = container.select('.queued-transcript-actions').pop();
@ -313,10 +316,14 @@ WhatDidTheySay.setup_transcript_action_buttons = function(container, approved_ed
} }
] ]
].each(function(info) { ].each(function(info) {
var button = new Element("button").update(WhatDidTheySay.button_labels[info[0]]); var ok = true;
button.observe('click', info[1]); if (info[0] == 'approve') { ok = approved_editor_container; }
if (ok) {
var button = new Element("button").update(WhatDidTheySay.button_labels[info[0]]);
button.observe('click', info[1]);
actions_holder.insert(button); actions_holder.insert(button);
}
}); });
} }
} }

View File

@ -23,7 +23,7 @@
</tr> </tr>
<tr> <tr>
<td>pause</td> <td>pause</td>
<td>250</td> <td>500</td>
<td></td> <td></td>
</tr> </tr>
<tr> <tr>
@ -51,6 +51,11 @@
<td>What Did They Say?!? options reset</td> <td>What Did They Say?!? options reset</td>
<td></td> <td></td>
</tr> </tr>
<tr>
<td>open</td>
<td>/wp-admin/</td>
<td></td>
</tr>
</tbody></table> </tbody></table>
</body> </body>

View File

@ -12,7 +12,7 @@
<tr><td rowspan="1" colspan="3">TestThemeEditorWorks</td></tr> <tr><td rowspan="1" colspan="3">TestThemeEditorWorks</td></tr>
</thead><tbody> </thead><tbody>
<tr> <tr>
<td>click</td> <td>clickAndWait</td>
<td>link=Editor</td> <td>link=Editor</td>
<td></td> <td></td>
</tr> </tr>

View File

@ -215,7 +215,7 @@ function the_media_transcript_queue_editor() {
<script type="text/javascript"> <script type="text/javascript">
$($('wdts-opener-<?php echo $id ?>').parentNode).show(); $($('wdts-opener-<?php echo $id ?>').parentNode).show();
$('wdts-opener-<?php echo $id ?>').observe('click', function(e) { $('wdts-opener-<?php echo $id ?>').select('a').pop().observe('click', function(e) {
Event.stop(e); Event.stop(e);
var target = $('wdts-<?php echo $id ?>'); var target = $('wdts-<?php echo $id ?>');

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: what-did-they-say 0.9.1\n" "Project-Id-Version: what-did-they-say 0.9.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-10-13 19:00-0400\n" "POT-Creation-Date: 2009-10-13 23:03-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"
@ -225,100 +225,106 @@ msgstr ""
msgid "(default)" msgid "(default)"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:79
msgid "Change default styles"
msgstr ""
#: classes/partials/_default-styles.inc:82 #: classes/partials/_default-styles.inc:82
msgid "Transcript Line Breaks" msgid ""
"(Hint: Use the above to preview your filters and style while you work on "
"them! The previewer always includes the default stylesheet.)"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:84 #: classes/partials/_default-styles.inc:84
msgid "Change default styles"
msgstr ""
#: classes/partials/_default-styles.inc:87
msgid "Transcript Line Breaks"
msgstr ""
#: classes/partials/_default-styles.inc:89
msgid "" msgid ""
"If you're using short codes or HTML to construct your transcripts, you don't " "If you're using short codes or HTML to construct your transcripts, you don't "
"need to enable transcript line breaks." "need to enable transcript line breaks."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:86 #: classes/partials/_default-styles.inc:91
msgid "Default CSS Selectors Information" msgid "Default CSS Selectors Information"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:88 #: classes/partials/_default-styles.inc:93
msgid "" msgid ""
"By default, the following CSS selectors are used by <strong>What Did They " "By default, the following CSS selectors are used by <strong>What Did They "
"Say?!?</strong>:" "Say?!?</strong>:"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:91 #: classes/partials/_default-styles.inc:96
msgid "The container for the transcript" msgid "The container for the transcript"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:93 #: classes/partials/_default-styles.inc:98
msgid "Character dialog" msgid "Character dialog"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:95 #: classes/partials/_default-styles.inc:100
msgid "The character's name" msgid "The character's name"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:97 #: classes/partials/_default-styles.inc:102
msgid "" msgid ""
"The direction the characters is speaking in/from (off-stage, to another " "The direction the characters is speaking in/from (off-stage, to another "
"character)" "character)"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:99 #: classes/partials/_default-styles.inc:104
msgid "A scene heading" msgid "A scene heading"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:101 #: classes/partials/_default-styles.inc:106
msgid "Action within a scene" msgid "Action within a scene"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:104 #: classes/partials/_default-styles.inc:109
msgid "Overriding Filters" msgid "Overriding Filters"
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:107 #: classes/partials/_default-styles.inc:112
msgid "" msgid ""
"If you want to override how transcript HTML is structured, create hooks in " "If you want to override how transcript HTML is structured, create hooks in "
"your theme that implement the following filters." "your theme that implement the following filters."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:108 #: classes/partials/_default-styles.inc:113
msgid "" msgid ""
"All of them return the same parameters that are passed in as an array(), " "All of them return the same parameters that are passed in as an array(), "
"with the return <code>$content</code> containing the filter output." "with the return <code>$content</code> containing the filter output."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:113 #: classes/partials/_default-styles.inc:118
msgid "Output <code>$content</code> contains the HTML for dialog blocks." msgid "Output <code>$content</code> contains the HTML for dialog blocks."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:116 #: classes/partials/_default-styles.inc:121
msgid "Output <code>$content</code> contains the HTML for scene action blocks." msgid "Output <code>$content</code> contains the HTML for scene action blocks."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:119 #: classes/partials/_default-styles.inc:124
msgid "" msgid ""
"Ouptut <code>$content</code> contains the HTML for scene heading blocks." "Ouptut <code>$content</code> contains the HTML for scene heading blocks."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:122 #: classes/partials/_default-styles.inc:127
msgid "Output <code>$content</code> contains the HTML for a single transcript." msgid "Output <code>$content</code> contains the HTML for a single transcript."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:125 #: classes/partials/_default-styles.inc:130
msgid "Output <code>$content</code> contains the HTML for a language name." msgid "Output <code>$content</code> contains the HTML for a language name."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:128 #: classes/partials/_default-styles.inc:133
msgid "" msgid ""
"Output <code>$content</code> contains the HTML for all the provided <code>" "Output <code>$content</code> contains the HTML for all the provided <code>"
"$transcripts</code> that match <code>$search_string</code>." "$transcripts</code> that match <code>$search_string</code>."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:131 #: classes/partials/_default-styles.inc:136
#, php-format #, php-format
msgid "" msgid ""
"Output <code>$content</code> contains the sprintf() format string for how " "Output <code>$content</code> contains the sprintf() format string for how "
@ -326,14 +332,14 @@ msgid ""
"code>." "code>."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:134 #: classes/partials/_default-styles.inc:139
msgid "" msgid ""
"Output <code>$content</code> contains three elements: a container (.wdts-" "Output <code>$content</code> contains three elements: a container (.wdts-"
"transcript-opener), and an opener &amp; closer in the container (.wdts-" "transcript-opener), and an opener &amp; closer in the container (.wdts-"
"opener and .wdts-container)." "opener and .wdts-container)."
msgstr "" msgstr ""
#: classes/partials/_default-styles.inc:138 #: classes/partials/_default-styles.inc:143
msgid "" msgid ""
"A filter in your theme that would change the display of langauge names would " "A filter in your theme that would change the display of langauge names would "
"look like the following:" "look like the following:"
@ -497,7 +503,7 @@ msgid "Misc. Options"
msgstr "" msgstr ""
#: classes/partials/admin.inc:15 classes/partials/admin.inc:51 #: classes/partials/admin.inc:15 classes/partials/admin.inc:51
#: classes/WhatDidTheySayAdmin.inc:276 classes/WhatDidTheySayAdmin.inc:277 #: classes/WhatDidTheySayAdmin.inc:306 classes/WhatDidTheySayAdmin.inc:307
msgid "What Did They Say?!?" msgid "What Did They Say?!?"
msgstr "" msgstr ""
@ -644,120 +650,120 @@ msgstr ""
msgid "Change capabilities" msgid "Change capabilities"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:4 #: classes/partials/_sample-transcript.inc:4
msgid "[scene-heading]Ext. The Old Man's House[/scene-heading]" msgid "[scene-heading]Ext. The Old Man's House[/scene-heading]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:5 #: classes/partials/_sample-transcript.inc:5
msgid "" msgid ""
"[scene-action]John is walking down to the car parked in the driveway.[/scene-" "[scene-action]John is walking down to the car parked in the driveway.[/scene-"
"action]" "action]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:6 #: classes/partials/_sample-transcript.inc:6
msgid "" msgid ""
"[dialog name=\"John\" direction=\"(towards the house)\"]Hey, where are the " "[dialog name=\"John\" direction=\"(towards the house)\"]Hey, where are the "
"keys?[/dialog]" "keys?[/dialog]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:10 #: classes/partials/_shortcodes-info.inc:7
msgid "Shortcodes Info" msgid "Shortcodes Info"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:13 #: classes/partials/_shortcodes-info.inc:10
msgid "" msgid ""
"you can easily use these shortcodes with the appropriate buttons above all " "you can easily use these shortcodes with the appropriate buttons above all "
"transcript editors" "transcript editors"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:16 #: classes/partials/_shortcodes-info.inc:13
msgid "Sample Transcript" msgid "Sample Transcript"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:23 #: classes/partials/_shortcodes-info.inc:20
msgid "Shortcode Details" msgid "Shortcode Details"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:25 #: classes/partials/_shortcodes-info.inc:22
msgid "" msgid ""
"Transcripts can be entered either using straight HTML or by using shortcodes " "Transcripts can be entered either using straight HTML or by using shortcodes "
"built for <strong>What Did They Say?!?</strong>" "built for <strong>What Did They Say?!?</strong>"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:26 #: classes/partials/_shortcodes-info.inc:23
msgid "Using shortcodes will make your transcripts easier to style." msgid "Using shortcodes will make your transcripts easier to style."
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:27 #: classes/partials/_shortcodes-info.inc:24
msgid "" msgid ""
"The default styles that come with <strong>What Did They Say?!?</strong> make " "The default styles that come with <strong>What Did They Say?!?</strong> make "
"your transcripts look like a screenplay." "your transcripts look like a screenplay."
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:29 #: classes/partials/_shortcodes-info.inc:26
msgid "Available Shortcodes" msgid "Available Shortcodes"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:31 #: classes/partials/_shortcodes-info.inc:28
msgid "[scene-heading]" msgid "[scene-heading]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:32 #: classes/partials/_shortcodes-info.inc:29
msgid "The text that indicates a new scene:" msgid "The text that indicates a new scene:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:34 #: classes/partials/_shortcodes-info.inc:31
msgid "" msgid ""
"<code>[scene-heading]Ext. The Old Man's House[/scene-heading]</code> becomes:" "<code>[scene-heading]Ext. The Old Man's House[/scene-heading]</code> becomes:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:35 #: classes/partials/_shortcodes-info.inc:32
msgid "Ext. The Old Man's House" msgid "Ext. The Old Man's House"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:38 #: classes/partials/_shortcodes-info.inc:35
msgid "[scene-action]" msgid "[scene-action]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:39 #: classes/partials/_shortcodes-info.inc:36
msgid "" msgid ""
"The text that indicates action taking place in a scene. One usually occurs " "The text that indicates action taking place in a scene. One usually occurs "
"underneath of a scene heading:" "underneath of a scene heading:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:41 #: classes/partials/_shortcodes-info.inc:38
msgid "" msgid ""
"<code>[scene-action]John is walking down to the car parked in the driveway.[/" "<code>[scene-action]John is walking down to the car parked in the driveway.[/"
"scene-action]</code> becomes:" "scene-action]</code> becomes:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:42 #: classes/partials/_shortcodes-info.inc:39
msgid "John is walking down to the car parked in the driveway." msgid "John is walking down to the car parked in the driveway."
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:45 #: classes/partials/_shortcodes-info.inc:42
msgid "[dialog]" msgid "[dialog]"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:46 #: classes/partials/_shortcodes-info.inc:43
msgid "The text for when a character is speaking in a scene:" msgid "The text for when a character is speaking in a scene:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:48 #: classes/partials/_shortcodes-info.inc:45
msgid "" msgid ""
"<code>[dialog name=\"John\" direction=\"(towards the house)\"]Hey, where are " "<code>[dialog name=\"John\" direction=\"(towards the house)\"]Hey, where are "
"the keys?[/dialog]</code> becomes:" "the keys?[/dialog]</code> becomes:"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:51 #: classes/partials/_shortcodes-info.inc:48
msgid "John" msgid "John"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:52 #: classes/partials/_shortcodes-info.inc:49
msgid "(towards the house)" msgid "(towards the house)"
msgstr "" msgstr ""
#: classes/partials/_shortcodes-info.inc:53 #: classes/partials/_shortcodes-info.inc:50
msgid "Hey, where are the keys?" msgid "Hey, where are the keys?"
msgstr "" msgstr ""
@ -773,21 +779,21 @@ msgstr ""
msgid "Change the available languages" msgid "Change the available languages"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:160 #: classes/WhatDidTheySayAdmin.inc:172
msgid "What Did They Say?!? Transcript" msgid "What Did They Say?!? Transcript"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:160 #: classes/WhatDidTheySayAdmin.inc:172
msgid "Show the transcript for the current post." msgid "Show the transcript for the current post."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:291 #: classes/WhatDidTheySayAdmin.inc:321
msgid "" msgid ""
"Welcome to <strong>What Did They Say?!?</strong> To get started, read the " "Welcome to <strong>What Did They Say?!?</strong> To get started, read the "
"<strong>Introduction</strong>, and then <strong>How It Works</strong>." "<strong>Introduction</strong>, and then <strong>How It Works</strong>."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:293 #: classes/WhatDidTheySayAdmin.inc:323
msgid "" msgid ""
"Is <strong>What Did They Say?!?</strong> working out for you? Let John know " "Is <strong>What Did They Say?!?</strong> working out for you? Let John know "
"via email (<a href=\"mailto:john@coswellproductions.com" "via email (<a href=\"mailto:john@coswellproductions.com"
@ -795,75 +801,75 @@ msgid ""
"JohnBintz\">@JohnBintz</a>)." "JohnBintz\">@JohnBintz</a>)."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:306 #: classes/WhatDidTheySayAdmin.inc:336
msgid "Manage Transcripts" msgid "Manage Transcripts"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:516 #: classes/WhatDidTheySayAdmin.inc:546
msgid "Transcript added to queue." msgid "Transcript added to queue."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:518 #: classes/WhatDidTheySayAdmin.inc:548
msgid "Transcript not added to queue." msgid "Transcript not added to queue."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:594 #: classes/WhatDidTheySayAdmin.inc:624
msgid "Transcripts updated." msgid "Transcripts updated."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:663 #: classes/WhatDidTheySayAdmin.inc:693
msgid "Default styles option updated." msgid "Default styles option updated."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:679 #: classes/WhatDidTheySayAdmin.inc:709
msgid "Insertion level updated." msgid "Insertion level updated."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:697 #: classes/WhatDidTheySayAdmin.inc:727
#, php-format #, php-format
msgid "%s deleted." msgid "%s deleted."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:699 #: classes/WhatDidTheySayAdmin.inc:729
msgid "Language not deleted!" msgid "Language not deleted!"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:706 #: classes/WhatDidTheySayAdmin.inc:736
#, php-format #, php-format
msgid "%s added." msgid "%s added."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:708 #: classes/WhatDidTheySayAdmin.inc:738
msgid "Language not added!" msgid "Language not added!"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:714 #: classes/WhatDidTheySayAdmin.inc:744
#, php-format #, php-format
msgid "%s set as default." msgid "%s set as default."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:716 #: classes/WhatDidTheySayAdmin.inc:746
msgid "Language not set as default!" msgid "Language not set as default!"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:722 #: classes/WhatDidTheySayAdmin.inc:752
#, php-format #, php-format
msgid "%1$s renamed to %2$s." msgid "%1$s renamed to %2$s."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:724 #: classes/WhatDidTheySayAdmin.inc:754
msgid "Language not renamed!" msgid "Language not renamed!"
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:747 #: classes/WhatDidTheySayAdmin.inc:777
msgid "User capabilities updated." msgid "User capabilities updated."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:766 #: classes/WhatDidTheySayAdmin.inc:796
msgid "<strong>What Did They Say?!?</strong> options reset." msgid "<strong>What Did They Say?!?</strong> options reset."
msgstr "" msgstr ""
#: classes/WhatDidTheySayAdmin.inc:785 #: classes/WhatDidTheySayAdmin.inc:815
msgid "<strong>What Did They Say?!?</strong> core options changed." msgid "<strong>What Did They Say?!?</strong> core options changed."
msgstr "" msgstr ""