8 lines
423 B
PHP
8 lines
423 B
PHP
|
<?php
|
||
|
|
||
|
$sample_transcript = array();
|
||
|
$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]', 'what-did-they-say');
|
||
|
$sample_transcript[] = __('[dialog name="John" direction="(towards the house)"]Hey, where are the keys?[/dialog]', 'what-did-they-say');
|
||
|
|
||
|
?>
|