what-did-they-say/classes/partials/_editor-script.inc

40 lines
2.1 KiB
PHP
Raw Normal View History

<script type="text/javascript">
2009-09-30 02:39:37 +00:00
WhatDidTheySay.ajax_url = '<?php echo $_SERVER['REQUEST_URI'] ?>';
WhatDidTheySay.nonce = '<?php echo $nonce ?>';
2009-09-30 02:39:37 +00:00
WhatDidTheySay.messages = {
'overwrite': '<?php _e('This will overwrite the current transcript. Are you sure?', 'what-did-they-say') ?>',
2009-09-29 02:36:34 +00:00
'delete_message': '<?php _e('This will delete the queued transcript. Are you sure?', 'what-did-they-say') ?>',
'approved': '<?php _e('Transcript approved and posted. You can further edit it below.', 'what-did-they-say') ?>',
'deleted': '<?php _e('Transcript deleted.', 'what-did-they-say') ?>',
'scene_heading': '<?php _e('Enter the scene heading:', 'what-did-they-say') ?>',
'scene_action': '<?php _e('Enter the scene action:', 'what-did-they-say') ?>',
'dialog_name': '<?php _e('Enter the character name:', 'what-did-they-say') ?>',
'dialog_direction': '<?php _e('Enter the direction in which the character is speaking:', 'what-did-they-say') ?>',
2009-10-01 00:45:05 +00:00
'dialog_speech': '<?php _e('Enter what the character is speaking:', 'what-did-they-say') ?>',
'transcripts_updated': '<?php _e('Transcripts updated. Reload to see them on page.', 'what-did-they-say') ?>',
'transcripts_failure': '<?php _e('Transcript update failure!', 'what-did-they-say') ?>',
'bundle_header': '<?php echo apply_filters('the_transcript_format_string', '') ?>'
};
2009-09-30 02:39:37 +00:00
WhatDidTheySay.button_labels = {
'scene-heading': '<?php _e('Scene Heading') ?>',
'scene-action': '<?php _e('Scene Action') ?>',
'dialog': '<?php _e('Dialog') ?>',
'approve': '<?php _e('Approve') ?>',
'delete': '<?php _e('Delete') ?>',
2009-10-01 02:33:17 +00:00
'edit': '<?php _e('Edit') ?>'
2009-09-30 02:39:37 +00:00
};
WhatDidTheySay.can_approve = <?php echo current_user_can('approve_transcriptions') ? "true" : "false" ?>;
<?php
$language_output = array();
foreach ($language_options->get_languages() as $code => $info) {
$language_output[] = "${code}: '" . addslashes($info['name']) . "'";
}
?>
WhatDidTheySay.languages = { <?php echo implode(",", $language_output) ?> };
WhatDidTheySay.default_language = '<?php echo $language_options->get_default_language() ?>';
</script>