en.php 710 B

12345678910111213141516171819202122232425
  1. <?php
  2. /** This file is part of KCFinder project
  3. *
  4. * @desc Default English localization
  5. * @package KCFinder
  6. * @version 3.12
  7. * @author Pavel Tzonkov <sunhater@sunhater.com>
  8. * @copyright 2010-2014 KCFinder Project
  9. * @license http://opensource.org/licenses/GPL-3.0 GPLv3
  10. * @license http://opensource.org/licenses/LGPL-3.0 LGPLv3
  11. * @link http://kcfinder.sunhater.com
  12. */
  13. $lang = array(
  14. '_locale' => "en_US.UTF-8",
  15. '_charset' => "utf-8",
  16. // Date time formats. See http://www.php.net/manual/en/function.strftime.php
  17. '_dateTimeFull' => "%A, %B %e, %Y %I:%M %p",
  18. '_dateTimeMid' => "%a %b %e %Y %I:%M %p",
  19. '_dateTimeSmall' => "%m/%d/%Y %I:%M %p",
  20. );
  21. ?>