var WhatDidTheySay = Class.create({}); WhatDidTheySay.messages = { 'overwrite': 'This will overwrite the current transcript. Are you sure?', 'delete_message': 'This will delete the queued transcript. Are you sure?', 'approved': 'Transcript approved and posted. You can further edit it below.', 'deleted': 'Transcript deleted.', 'scene_heading': 'Enter the scene heading:', 'scene_action': 'Enter the scene action:', 'dialog_name': 'Enter the character name:', 'dialog_direction': 'Enter the direction in which the character is speaking:', 'dialog_speech': 'Enter what the character is speaking:', 'transcripts_updated': 'Transcripts updated. Reload to see them on page.', 'transcripts_failure': 'Transcript update failure!', 'bundle_header': 'Transcript: %s', 'show_transcripts': 'Show transcripts', 'hide_transcripts': 'Hide transcripts' }; WhatDidTheySay.button_labels = { 'scene-heading': 'Scene Heading', 'scene-action': 'Scene Action', 'dialog': 'Dialog', 'approve': 'Approve', 'delete': 'Delete', 'edit': 'Edit' }; WhatDidTheySay.can_approve = false; WhatDidTheySay.languages = { de: 'German',en: 'English',es: 'Spanish / Castilian',fr: 'French',it: 'Italian' }; WhatDidTheySay.default_language = 'en'; WhatDidTheySay.use_transcript_effects = false; WhatDidTheySay.transcript_effects = { open: function(t) { new Effect.BlindDown(t, { duration: 0.25 }); }, close: function(t) { new Effect.BlindUp(t, { duration: 0.25 }); }};