Просмотр файла vendor/nesbot/carbon/src/Carbon/Lang/seh.php

Размер файла: 1.02Kb
  1. <?php
  2.  
  3. /**
  4. * This file is part of the Carbon package.
  5. *
  6. * (c) Brian Nesbitt <brian@nesbot.com>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. return array_replace_recursive(require __DIR__.'/en.php', [
  12. 'weekdays' => ['Dimingu', 'Chiposi', 'Chipiri', 'Chitatu', 'Chinai', 'Chishanu', 'Sabudu'],
  13. 'weekdays_short' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'],
  14. 'weekdays_min' => ['Dim', 'Pos', 'Pir', 'Tat', 'Nai', 'Sha', 'Sab'],
  15. 'months' => ['Janeiro', 'Fevreiro', 'Marco', 'Abril', 'Maio', 'Junho', 'Julho', 'Augusto', 'Setembro', 'Otubro', 'Novembro', 'Decembro'],
  16. 'months_short' => ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Aug', 'Set', 'Otu', 'Nov', 'Dec'],
  17. 'formats' => [
  18. 'LT' => 'HH:mm',
  19. 'LTS' => 'HH:mm:ss',
  20. 'L' => 'D/M/YYYY',
  21. 'LL' => 'd [de] MMM [de] YYYY',
  22. 'LLL' => 'd [de] MMMM [de] YYYY HH:mm',
  23. 'LLLL' => 'dddd, d [de] MMMM [de] YYYY HH:mm',
  24. ],
  25. ]);