help.phtml 1.2 KB

12345678910111213141516171819202122
  1. <div class="gray-logo"></div>
  2. <div class="text-content">
  3. <h2><?php echo sprintf(_("Welcome to %s!"), PRODUCT_NAME) ?></h2>
  4. <p><?php echo sprintf(_("Here's how you can get started using %s to automate your broadcasts: "), PRODUCT_NAME)?></p>
  5. <ol>
  6. <li><?php echo _("Begin by adding your files to the library using the 'Add Media' menu button. You can drag and drop your files to this window too.")?></li>
  7. <li><?php echo _("Create a show by going to 'Calendar' in the menu bar, and then clicking the '+ Show' icon. This can be either a one-time or repeating show. Only admins and program managers can add shows.")?></li>
  8. <li><?php echo _("Add media to the show by going to your show in the Schedule calendar, left-clicking on it and selecting 'Add / Remove Content'")?>.</li>
  9. <li><?php echo _("Select your media from the left pane and drag them to your show in the right pane."); ?></li>
  10. </ol>
  11. <p><strong><?php echo _("Then you're good to go!")?></strong><br />
  12. <?php
  13. $userManualAnchorOpen = "<a href='" . USER_MANUAL_URL . "' target='_blank'>";
  14. echo sprintf(_("For more detailed help, read the %suser manual%s."),
  15. $userManualAnchorOpen, "</a>")
  16. ?>
  17. </p>
  18. </div>