about.phtml 870 B

1234567891011121314151617181920212223242526272829303132333435
  1. <div class="text-content">
  2. <h2><?php echo _("About") ?></h2>
  3. <p>
  4. <?php
  5. $productSiteAnchor = "<a href='" . PRODUCT_SITE_URL . "' target='_blank'>"
  6. . PRODUCT_NAME
  7. . "</a>";
  8. echo sprintf(_('%1$s %2$s, the open radio software for scheduling and remote station management.'),
  9. $productSiteAnchor,
  10. $this->airtime_version)
  11. ?>
  12. <br />
  13. <br />© 2013
  14. <?php
  15. $companySiteAnchor = "<a href='" . COMPANY_SITE_URL . "' target='_blank'>"
  16. . COMPANY_NAME . " " . COMPANY_SUFFIX
  17. . "</a>";
  18. $licenseAnchor = "<a href='" . LICENSE_URL . "' target='_blank'>"
  19. . LICENSE_VERSION
  20. . "</a>";
  21. echo sprintf(_('%1$s %2$s is distributed under the %3$s'),
  22. $companySiteAnchor, PRODUCT_NAME, $licenseAnchor)
  23. ?>
  24. </p>
  25. </div>
  26. <br>
  27. <br>
  28. <br>
  29. <br>
  30. <br>
  31. <br>
  32. <br>
  33. <br>