Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bg.js 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //! moment.js locale configuration
  2. //! locale : Bulgarian [bg]
  3. //! author : Krasen Borisov : https://github.com/kraz
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var bg = moment.defineLocale('bg', {
  12. months: 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split(
  13. '_'
  14. ),
  15. monthsShort: 'яну_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
  16. weekdays: 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split(
  17. '_'
  18. ),
  19. weekdaysShort: 'нед_пон_вто_сря_чет_пет_съб'.split('_'),
  20. weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
  21. longDateFormat: {
  22. LT: 'H:mm',
  23. LTS: 'H:mm:ss',
  24. L: 'D.MM.YYYY',
  25. LL: 'D MMMM YYYY',
  26. LLL: 'D MMMM YYYY H:mm',
  27. LLLL: 'dddd, D MMMM YYYY H:mm',
  28. },
  29. calendar: {
  30. sameDay: '[Днес в] LT',
  31. nextDay: '[Утре в] LT',
  32. nextWeek: 'dddd [в] LT',
  33. lastDay: '[Вчера в] LT',
  34. lastWeek: function () {
  35. switch (this.day()) {
  36. case 0:
  37. case 3:
  38. case 6:
  39. return '[Миналата] dddd [в] LT';
  40. case 1:
  41. case 2:
  42. case 4:
  43. case 5:
  44. return '[Миналия] dddd [в] LT';
  45. }
  46. },
  47. sameElse: 'L',
  48. },
  49. relativeTime: {
  50. future: 'след %s',
  51. past: 'преди %s',
  52. s: 'няколко секунди',
  53. ss: '%d секунди',
  54. m: 'минута',
  55. mm: '%d минути',
  56. h: 'час',
  57. hh: '%d часа',
  58. d: 'ден',
  59. dd: '%d дена',
  60. w: 'седмица',
  61. ww: '%d седмици',
  62. M: 'месец',
  63. MM: '%d месеца',
  64. y: 'година',
  65. yy: '%d години',
  66. },
  67. dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
  68. ordinal: function (number) {
  69. var lastDigit = number % 10,
  70. last2Digits = number % 100;
  71. if (number === 0) {
  72. return number + '-ев';
  73. } else if (last2Digits === 0) {
  74. return number + '-ен';
  75. } else if (last2Digits > 10 && last2Digits < 20) {
  76. return number + '-ти';
  77. } else if (lastDigit === 1) {
  78. return number + '-ви';
  79. } else if (lastDigit === 2) {
  80. return number + '-ри';
  81. } else if (lastDigit === 7 || lastDigit === 8) {
  82. return number + '-ми';
  83. } else {
  84. return number + '-ти';
  85. }
  86. },
  87. week: {
  88. dow: 1, // Monday is the first day of the week.
  89. doy: 7, // The week that contains Jan 7th is the first week of the year.
  90. },
  91. });
  92. return bg;
  93. })));