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.

cs.js 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. //! moment.js locale configuration
  2. //! locale : Czech [cs]
  3. //! author : petrbela : https://github.com/petrbela
  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 months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
  12. '_'
  13. ),
  14. monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
  15. monthsParse = [
  16. /^led/i,
  17. /^úno/i,
  18. /^bře/i,
  19. /^dub/i,
  20. /^kvě/i,
  21. /^(čvn|červen$|června)/i,
  22. /^(čvc|červenec|července)/i,
  23. /^srp/i,
  24. /^zář/i,
  25. /^říj/i,
  26. /^lis/i,
  27. /^pro/i,
  28. ],
  29. // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
  30. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
  31. monthsRegex = /^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;
  32. function plural(n) {
  33. return n > 1 && n < 5 && ~~(n / 10) !== 1;
  34. }
  35. function translate(number, withoutSuffix, key, isFuture) {
  36. var result = number + ' ';
  37. switch (key) {
  38. case 's': // a few seconds / in a few seconds / a few seconds ago
  39. return withoutSuffix || isFuture ? 'pár sekund' : 'pár sekundami';
  40. case 'ss': // 9 seconds / in 9 seconds / 9 seconds ago
  41. if (withoutSuffix || isFuture) {
  42. return result + (plural(number) ? 'sekundy' : 'sekund');
  43. } else {
  44. return result + 'sekundami';
  45. }
  46. case 'm': // a minute / in a minute / a minute ago
  47. return withoutSuffix ? 'minuta' : isFuture ? 'minutu' : 'minutou';
  48. case 'mm': // 9 minutes / in 9 minutes / 9 minutes ago
  49. if (withoutSuffix || isFuture) {
  50. return result + (plural(number) ? 'minuty' : 'minut');
  51. } else {
  52. return result + 'minutami';
  53. }
  54. case 'h': // an hour / in an hour / an hour ago
  55. return withoutSuffix ? 'hodina' : isFuture ? 'hodinu' : 'hodinou';
  56. case 'hh': // 9 hours / in 9 hours / 9 hours ago
  57. if (withoutSuffix || isFuture) {
  58. return result + (plural(number) ? 'hodiny' : 'hodin');
  59. } else {
  60. return result + 'hodinami';
  61. }
  62. case 'd': // a day / in a day / a day ago
  63. return withoutSuffix || isFuture ? 'den' : 'dnem';
  64. case 'dd': // 9 days / in 9 days / 9 days ago
  65. if (withoutSuffix || isFuture) {
  66. return result + (plural(number) ? 'dny' : 'dní');
  67. } else {
  68. return result + 'dny';
  69. }
  70. case 'M': // a month / in a month / a month ago
  71. return withoutSuffix || isFuture ? 'měsíc' : 'měsícem';
  72. case 'MM': // 9 months / in 9 months / 9 months ago
  73. if (withoutSuffix || isFuture) {
  74. return result + (plural(number) ? 'měsíce' : 'měsíců');
  75. } else {
  76. return result + 'měsíci';
  77. }
  78. case 'y': // a year / in a year / a year ago
  79. return withoutSuffix || isFuture ? 'rok' : 'rokem';
  80. case 'yy': // 9 years / in 9 years / 9 years ago
  81. if (withoutSuffix || isFuture) {
  82. return result + (plural(number) ? 'roky' : 'let');
  83. } else {
  84. return result + 'lety';
  85. }
  86. }
  87. }
  88. var cs = moment.defineLocale('cs', {
  89. months: months,
  90. monthsShort: monthsShort,
  91. monthsRegex: monthsRegex,
  92. monthsShortRegex: monthsRegex,
  93. // NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
  94. // Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
  95. monthsStrictRegex: /^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,
  96. monthsShortStrictRegex: /^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,
  97. monthsParse: monthsParse,
  98. longMonthsParse: monthsParse,
  99. shortMonthsParse: monthsParse,
  100. weekdays: 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota'.split('_'),
  101. weekdaysShort: 'ne_po_út_st_čt_pá_so'.split('_'),
  102. weekdaysMin: 'ne_po_út_st_čt_pá_so'.split('_'),
  103. longDateFormat: {
  104. LT: 'H:mm',
  105. LTS: 'H:mm:ss',
  106. L: 'DD.MM.YYYY',
  107. LL: 'D. MMMM YYYY',
  108. LLL: 'D. MMMM YYYY H:mm',
  109. LLLL: 'dddd D. MMMM YYYY H:mm',
  110. l: 'D. M. YYYY',
  111. },
  112. calendar: {
  113. sameDay: '[dnes v] LT',
  114. nextDay: '[zítra v] LT',
  115. nextWeek: function () {
  116. switch (this.day()) {
  117. case 0:
  118. return '[v neděli v] LT';
  119. case 1:
  120. case 2:
  121. return '[v] dddd [v] LT';
  122. case 3:
  123. return '[ve středu v] LT';
  124. case 4:
  125. return '[ve čtvrtek v] LT';
  126. case 5:
  127. return '[v pátek v] LT';
  128. case 6:
  129. return '[v sobotu v] LT';
  130. }
  131. },
  132. lastDay: '[včera v] LT',
  133. lastWeek: function () {
  134. switch (this.day()) {
  135. case 0:
  136. return '[minulou neděli v] LT';
  137. case 1:
  138. case 2:
  139. return '[minulé] dddd [v] LT';
  140. case 3:
  141. return '[minulou středu v] LT';
  142. case 4:
  143. case 5:
  144. return '[minulý] dddd [v] LT';
  145. case 6:
  146. return '[minulou sobotu v] LT';
  147. }
  148. },
  149. sameElse: 'L',
  150. },
  151. relativeTime: {
  152. future: 'za %s',
  153. past: 'před %s',
  154. s: translate,
  155. ss: translate,
  156. m: translate,
  157. mm: translate,
  158. h: translate,
  159. hh: translate,
  160. d: translate,
  161. dd: translate,
  162. M: translate,
  163. MM: translate,
  164. y: translate,
  165. yy: translate,
  166. },
  167. dayOfMonthOrdinalParse: /\d{1,2}\./,
  168. ordinal: '%d.',
  169. week: {
  170. dow: 1, // Monday is the first day of the week.
  171. doy: 4, // The week that contains Jan 4th is the first week of the year.
  172. },
  173. });
  174. return cs;
  175. })));