View file vendor/nesbot/carbon/src/Carbon/Lang/ksh.php

File size: 1.84Kb
  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. 'meridiem' => ['v.M.', 'n.M.'],
  13. 'weekdays' => ['Sunndaach', 'Mohndaach', 'Dinnsdaach', 'Metwoch', 'Dunnersdaach', 'Friidaach', 'Samsdaach'],
  14. 'weekdays_short' => ['Su.', 'Mo.', 'Di.', 'Me.', 'Du.', 'Fr.', 'Sa.'],
  15. 'weekdays_min' => ['Su', 'Mo', 'Di', 'Me', 'Du', 'Fr', 'Sa'],
  16. 'months' => ['Jannewa', 'Fäbrowa', 'Määz', 'Aprell', 'Mai', 'Juuni', 'Juuli', 'Oujoß', 'Septämber', 'Oktohber', 'Novämber', 'Dezämber'],
  17. 'months_short' => ['Jan', 'Fäb', 'Mäz', 'Apr', 'Mai', 'Jun', 'Jul', 'Ouj', 'Säp', 'Okt', 'Nov', 'Dez'],
  18. 'months_short_standalone' => ['Jan.', 'Fäb.', 'Mäz.', 'Apr.', 'Mai', 'Jun.', 'Jul.', 'Ouj.', 'Säp.', 'Okt.', 'Nov.', 'Dez.'],
  19. 'first_day_of_week' => 1,
  20. 'formats' => [
  21. 'LT' => 'HH:mm',
  22. 'LTS' => 'HH:mm:ss',
  23. 'L' => 'D. M. YYYY',
  24. 'LL' => 'D. MMM. YYYY',
  25. 'LLL' => 'D. MMMM YYYY HH:mm',
  26. 'LLLL' => 'dddd, [dä] D. MMMM YYYY HH:mm',
  27. ],
  28.  
  29. 'year' => ':count Johr',
  30. 'y' => ':count Johr',
  31. 'a_year' => ':count Johr',
  32.  
  33. 'month' => ':count Moohnd',
  34. 'm' => ':count Moohnd',
  35. 'a_month' => ':count Moohnd',
  36.  
  37. 'week' => ':count woch',
  38. 'w' => ':count woch',
  39. 'a_week' => ':count woch',
  40.  
  41. 'day' => ':count Daach',
  42. 'd' => ':count Daach',
  43. 'a_day' => ':count Daach',
  44.  
  45. 'hour' => ':count Uhr',
  46. 'h' => ':count Uhr',
  47. 'a_hour' => ':count Uhr',
  48.  
  49. 'minute' => ':count Menutt',
  50. 'min' => ':count Menutt',
  51. 'a_minute' => ':count Menutt',
  52.  
  53. 'second' => ':count Sekůndt',
  54. 's' => ':count Sekůndt',
  55. 'a_second' => ':count Sekůndt',
  56. ]);