logster 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +8 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +38 -0
  7. data/Rakefile +18 -0
  8. data/assets/javascript/app.js +377 -0
  9. data/assets/javascript/external/ember.js +44267 -0
  10. data/assets/javascript/external/ember.min.js +19 -0
  11. data/assets/javascript/external/handlebars.min.js +28 -0
  12. data/assets/javascript/external/jquery.min.js +5 -0
  13. data/assets/javascript/external/lodash.min.js +56 -0
  14. data/assets/javascript/external/moment.min.js +6 -0
  15. data/assets/javascript/templates/application.handlebars +1 -0
  16. data/assets/javascript/templates/index.handlebars +48 -0
  17. data/assets/javascript/templates/message.handlebars +7 -0
  18. data/assets/stylesheets/app.css +188 -0
  19. data/bower_components/ember/.bower.json +22 -0
  20. data/bower_components/ember/.gitignore +5 -0
  21. data/bower_components/ember/Makefile +9 -0
  22. data/bower_components/ember/README.md +12 -0
  23. data/bower_components/ember/bower.json +11 -0
  24. data/bower_components/ember/component.json +13 -0
  25. data/bower_components/ember/composer.json +27 -0
  26. data/bower_components/ember/ember-template-compiler.js +320 -0
  27. data/bower_components/ember/ember.js +44267 -0
  28. data/bower_components/ember/ember.min.js +19 -0
  29. data/bower_components/ember/ember.prod.js +42649 -0
  30. data/bower_components/ember/package.json +11 -0
  31. data/bower_components/handlebars/.bower.json +16 -0
  32. data/bower_components/handlebars/.gitignore +2 -0
  33. data/bower_components/handlebars/README.md +11 -0
  34. data/bower_components/handlebars/bower.json +6 -0
  35. data/bower_components/handlebars/component.json +9 -0
  36. data/bower_components/handlebars/composer.json +35 -0
  37. data/bower_components/handlebars/handlebars-source.gemspec +21 -0
  38. data/bower_components/handlebars/handlebars.amd.js +2719 -0
  39. data/bower_components/handlebars/handlebars.amd.min.js +28 -0
  40. data/bower_components/handlebars/handlebars.js +2746 -0
  41. data/bower_components/handlebars/handlebars.js.nuspec +17 -0
  42. data/bower_components/handlebars/handlebars.min.js +28 -0
  43. data/bower_components/handlebars/handlebars.runtime.amd.js +515 -0
  44. data/bower_components/handlebars/handlebars.runtime.amd.min.js +27 -0
  45. data/bower_components/handlebars/handlebars.runtime.js +530 -0
  46. data/bower_components/handlebars/handlebars.runtime.min.js +27 -0
  47. data/bower_components/handlebars/lib/handlebars/source.rb +11 -0
  48. data/bower_components/jquery/.bower.json +37 -0
  49. data/bower_components/jquery/MIT-LICENSE.txt +21 -0
  50. data/bower_components/jquery/bower.json +27 -0
  51. data/bower_components/jquery/dist/jquery.js +9111 -0
  52. data/bower_components/jquery/dist/jquery.min.js +5 -0
  53. data/bower_components/jquery/dist/jquery.min.map +1 -0
  54. data/bower_components/jquery/src/ajax.js +806 -0
  55. data/bower_components/jquery/src/ajax/jsonp.js +89 -0
  56. data/bower_components/jquery/src/ajax/load.js +75 -0
  57. data/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  58. data/bower_components/jquery/src/ajax/parseXML.js +28 -0
  59. data/bower_components/jquery/src/ajax/script.js +64 -0
  60. data/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  61. data/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  62. data/bower_components/jquery/src/ajax/xhr.js +130 -0
  63. data/bower_components/jquery/src/attributes.js +11 -0
  64. data/bower_components/jquery/src/attributes/attr.js +143 -0
  65. data/bower_components/jquery/src/attributes/classes.js +158 -0
  66. data/bower_components/jquery/src/attributes/prop.js +96 -0
  67. data/bower_components/jquery/src/attributes/support.js +35 -0
  68. data/bower_components/jquery/src/attributes/val.js +153 -0
  69. data/bower_components/jquery/src/callbacks.js +205 -0
  70. data/bower_components/jquery/src/core.js +500 -0
  71. data/bower_components/jquery/src/core/access.js +60 -0
  72. data/bower_components/jquery/src/core/init.js +123 -0
  73. data/bower_components/jquery/src/core/parseHTML.js +39 -0
  74. data/bower_components/jquery/src/core/ready.js +96 -0
  75. data/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  76. data/bower_components/jquery/src/css.js +455 -0
  77. data/bower_components/jquery/src/css/addGetHookIf.js +24 -0
  78. data/bower_components/jquery/src/css/curCSS.js +57 -0
  79. data/bower_components/jquery/src/css/defaultDisplay.js +69 -0
  80. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  81. data/bower_components/jquery/src/css/support.js +83 -0
  82. data/bower_components/jquery/src/css/swap.js +28 -0
  83. data/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  84. data/bower_components/jquery/src/css/var/getStyles.js +5 -0
  85. data/bower_components/jquery/src/css/var/isHidden.js +13 -0
  86. data/bower_components/jquery/src/css/var/rmargin.js +3 -0
  87. data/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  88. data/bower_components/jquery/src/data.js +175 -0
  89. data/bower_components/jquery/src/data/Data.js +181 -0
  90. data/bower_components/jquery/src/data/accepts.js +20 -0
  91. data/bower_components/jquery/src/data/var/data_priv.js +5 -0
  92. data/bower_components/jquery/src/data/var/data_user.js +5 -0
  93. data/bower_components/jquery/src/deferred.js +149 -0
  94. data/bower_components/jquery/src/deprecated.js +13 -0
  95. data/bower_components/jquery/src/dimensions.js +50 -0
  96. data/bower_components/jquery/src/effects.js +642 -0
  97. data/bower_components/jquery/src/effects/Tween.js +114 -0
  98. data/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  99. data/bower_components/jquery/src/event.js +859 -0
  100. data/bower_components/jquery/src/event/alias.js +39 -0
  101. data/bower_components/jquery/src/event/support.js +9 -0
  102. data/bower_components/jquery/src/exports/amd.js +18 -0
  103. data/bower_components/jquery/src/exports/global.js +32 -0
  104. data/bower_components/jquery/src/intro.js +44 -0
  105. data/bower_components/jquery/src/jquery.js +36 -0
  106. data/bower_components/jquery/src/manipulation.js +583 -0
  107. data/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  108. data/bower_components/jquery/src/manipulation/support.js +24 -0
  109. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  110. data/bower_components/jquery/src/offset.js +204 -0
  111. data/bower_components/jquery/src/outro.js +1 -0
  112. data/bower_components/jquery/src/queue.js +142 -0
  113. data/bower_components/jquery/src/queue/delay.js +22 -0
  114. data/bower_components/jquery/src/selector-native.js +171 -0
  115. data/bower_components/jquery/src/selector-sizzle.js +14 -0
  116. data/bower_components/jquery/src/selector.js +1 -0
  117. data/bower_components/jquery/src/serialize.js +111 -0
  118. data/bower_components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  119. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  120. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  121. data/bower_components/jquery/src/traversing.js +200 -0
  122. data/bower_components/jquery/src/traversing/findFilter.js +100 -0
  123. data/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  124. data/bower_components/jquery/src/var/arr.js +3 -0
  125. data/bower_components/jquery/src/var/class2type.js +4 -0
  126. data/bower_components/jquery/src/var/concat.js +5 -0
  127. data/bower_components/jquery/src/var/hasOwn.js +5 -0
  128. data/bower_components/jquery/src/var/indexOf.js +5 -0
  129. data/bower_components/jquery/src/var/pnum.js +3 -0
  130. data/bower_components/jquery/src/var/push.js +5 -0
  131. data/bower_components/jquery/src/var/rnotwhite.js +3 -0
  132. data/bower_components/jquery/src/var/slice.js +5 -0
  133. data/bower_components/jquery/src/var/strundefined.js +3 -0
  134. data/bower_components/jquery/src/var/support.js +4 -0
  135. data/bower_components/jquery/src/var/toString.js +5 -0
  136. data/bower_components/jquery/src/var/trim.js +3 -0
  137. data/bower_components/jquery/src/wrap.js +78 -0
  138. data/bower_components/lodash/.bower.json +34 -0
  139. data/bower_components/lodash/LICENSE.txt +22 -0
  140. data/bower_components/lodash/bower.json +23 -0
  141. data/bower_components/lodash/dist/lodash.compat.js +7157 -0
  142. data/bower_components/lodash/dist/lodash.compat.min.js +61 -0
  143. data/bower_components/lodash/dist/lodash.js +6785 -0
  144. data/bower_components/lodash/dist/lodash.min.js +56 -0
  145. data/bower_components/lodash/dist/lodash.underscore.js +4979 -0
  146. data/bower_components/lodash/dist/lodash.underscore.min.js +39 -0
  147. data/bower_components/moment/.bower.json +31 -0
  148. data/bower_components/moment/LICENSE +22 -0
  149. data/bower_components/moment/bower.json +20 -0
  150. data/bower_components/moment/lang/ar-ma.js +56 -0
  151. data/bower_components/moment/lang/ar.js +56 -0
  152. data/bower_components/moment/lang/bg.js +86 -0
  153. data/bower_components/moment/lang/br.js +107 -0
  154. data/bower_components/moment/lang/bs.js +139 -0
  155. data/bower_components/moment/lang/ca.js +66 -0
  156. data/bower_components/moment/lang/cs.js +155 -0
  157. data/bower_components/moment/lang/cv.js +59 -0
  158. data/bower_components/moment/lang/cy.js +77 -0
  159. data/bower_components/moment/lang/da.js +56 -0
  160. data/bower_components/moment/lang/de.js +71 -0
  161. data/bower_components/moment/lang/el.js +79 -0
  162. data/bower_components/moment/lang/en-au.js +62 -0
  163. data/bower_components/moment/lang/en-ca.js +59 -0
  164. data/bower_components/moment/lang/en-gb.js +63 -0
  165. data/bower_components/moment/lang/eo.js +65 -0
  166. data/bower_components/moment/lang/es.js +75 -0
  167. data/bower_components/moment/lang/et.js +76 -0
  168. data/bower_components/moment/lang/eu.js +60 -0
  169. data/bower_components/moment/lang/fa.js +97 -0
  170. data/bower_components/moment/lang/fi.js +103 -0
  171. data/bower_components/moment/lang/fo.js +56 -0
  172. data/bower_components/moment/lang/fr-ca.js +54 -0
  173. data/bower_components/moment/lang/fr.js +58 -0
  174. data/bower_components/moment/lang/gl.js +71 -0
  175. data/bower_components/moment/lang/he.js +77 -0
  176. data/bower_components/moment/lang/hi.js +105 -0
  177. data/bower_components/moment/lang/hr.js +140 -0
  178. data/bower_components/moment/lang/hu.js +105 -0
  179. data/bower_components/moment/lang/hy-am.js +113 -0
  180. data/bower_components/moment/lang/id.js +67 -0
  181. data/bower_components/moment/lang/is.js +124 -0
  182. data/bower_components/moment/lang/it.js +59 -0
  183. data/bower_components/moment/lang/ja.js +58 -0
  184. data/bower_components/moment/lang/ka.js +108 -0
  185. data/bower_components/moment/lang/km.js +55 -0
  186. data/bower_components/moment/lang/ko.js +63 -0
  187. data/bower_components/moment/lang/lb.js +160 -0
  188. data/bower_components/moment/lang/lt.js +118 -0
  189. data/bower_components/moment/lang/lv.js +77 -0
  190. data/bower_components/moment/lang/mk.js +86 -0
  191. data/bower_components/moment/lang/ml.js +64 -0
  192. data/bower_components/moment/lang/mr.js +104 -0
  193. data/bower_components/moment/lang/ms-my.js +66 -0
  194. data/bower_components/moment/lang/nb.js +57 -0
  195. data/bower_components/moment/lang/ne.js +105 -0
  196. data/bower_components/moment/lang/nl.js +67 -0
  197. data/bower_components/moment/lang/nn.js +56 -0
  198. data/bower_components/moment/lang/pl.js +98 -0
  199. data/bower_components/moment/lang/pt-br.js +56 -0
  200. data/bower_components/moment/lang/pt.js +60 -0
  201. data/bower_components/moment/lang/ro.js +72 -0
  202. data/bower_components/moment/lang/ru.js +163 -0
  203. data/bower_components/moment/lang/sk.js +156 -0
  204. data/bower_components/moment/lang/sl.js +144 -0
  205. data/bower_components/moment/lang/sq.js +61 -0
  206. data/bower_components/moment/lang/sr-cyr.js +106 -0
  207. data/bower_components/moment/lang/sr.js +106 -0
  208. data/bower_components/moment/lang/sv.js +63 -0
  209. data/bower_components/moment/lang/ta.js +112 -0
  210. data/bower_components/moment/lang/th.js +58 -0
  211. data/bower_components/moment/lang/tl-ph.js +58 -0
  212. data/bower_components/moment/lang/tr.js +93 -0
  213. data/bower_components/moment/lang/tzm-la.js +55 -0
  214. data/bower_components/moment/lang/tzm.js +55 -0
  215. data/bower_components/moment/lang/uk.js +157 -0
  216. data/bower_components/moment/lang/uz.js +55 -0
  217. data/bower_components/moment/lang/vi.js +62 -0
  218. data/bower_components/moment/lang/zh-cn.js +108 -0
  219. data/bower_components/moment/lang/zh-tw.js +84 -0
  220. data/bower_components/moment/min/langs.js +5991 -0
  221. data/bower_components/moment/min/langs.min.js +3 -0
  222. data/bower_components/moment/min/moment-with-langs.js +7993 -0
  223. data/bower_components/moment/min/moment-with-langs.min.js +9 -0
  224. data/bower_components/moment/min/moment.min.js +6 -0
  225. data/bower_components/moment/moment.js +2489 -0
  226. data/bower_components/moment/readme.md +368 -0
  227. data/lib/logster.rb +9 -0
  228. data/lib/logster/logger.rb +31 -0
  229. data/lib/logster/message.rb +42 -0
  230. data/lib/logster/middleware/reporter.rb +13 -0
  231. data/lib/logster/middleware/viewer.rb +122 -0
  232. data/lib/logster/rails/railtie.rb +39 -0
  233. data/lib/logster/redis_store.rb +124 -0
  234. data/lib/logster/version.rb +3 -0
  235. data/logster.gemspec +30 -0
  236. data/test/logster/middleware/test_viewer.rb +34 -0
  237. data/test/logster/test_redis_store.rb +112 -0
  238. data/test/test_helper.rb +6 -0
  239. data/website/Gemfile +6 -0
  240. data/website/config.ru +2 -0
  241. data/website/data/data.json +1 -0
  242. data/website/docker_container/logster.yml +95 -0
  243. data/website/sample.rb +85 -0
  244. data/website/scripts/persist_logs.rb +13 -0
  245. metadata +375 -0
@@ -0,0 +1,67 @@
1
+ // moment.js language configuration
2
+ // language : Bahasa Indonesia (id)
3
+ // author : Mohammad Satrio Utomo : https://github.com/tyok
4
+ // reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
5
+
6
+ (function (factory) {
7
+ if (typeof define === 'function' && define.amd) {
8
+ define(['moment'], factory); // AMD
9
+ } else if (typeof exports === 'object') {
10
+ module.exports = factory(require('../moment')); // Node
11
+ } else {
12
+ factory(window.moment); // Browser global
13
+ }
14
+ }(function (moment) {
15
+ return moment.lang('id', {
16
+ months : "Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),
17
+ monthsShort : "Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),
18
+ weekdays : "Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),
19
+ weekdaysShort : "Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),
20
+ weekdaysMin : "Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),
21
+ longDateFormat : {
22
+ LT : "HH.mm",
23
+ L : "DD/MM/YYYY",
24
+ LL : "D MMMM YYYY",
25
+ LLL : "D MMMM YYYY [pukul] LT",
26
+ LLLL : "dddd, D MMMM YYYY [pukul] LT"
27
+ },
28
+ meridiem : function (hours, minutes, isLower) {
29
+ if (hours < 11) {
30
+ return 'pagi';
31
+ } else if (hours < 15) {
32
+ return 'siang';
33
+ } else if (hours < 19) {
34
+ return 'sore';
35
+ } else {
36
+ return 'malam';
37
+ }
38
+ },
39
+ calendar : {
40
+ sameDay : '[Hari ini pukul] LT',
41
+ nextDay : '[Besok pukul] LT',
42
+ nextWeek : 'dddd [pukul] LT',
43
+ lastDay : '[Kemarin pukul] LT',
44
+ lastWeek : 'dddd [lalu pukul] LT',
45
+ sameElse : 'L'
46
+ },
47
+ relativeTime : {
48
+ future : "dalam %s",
49
+ past : "%s yang lalu",
50
+ s : "beberapa detik",
51
+ m : "semenit",
52
+ mm : "%d menit",
53
+ h : "sejam",
54
+ hh : "%d jam",
55
+ d : "sehari",
56
+ dd : "%d hari",
57
+ M : "sebulan",
58
+ MM : "%d bulan",
59
+ y : "setahun",
60
+ yy : "%d tahun"
61
+ },
62
+ week : {
63
+ dow : 1, // Monday is the first day of the week.
64
+ doy : 7 // The week that contains Jan 1st is the first week of the year.
65
+ }
66
+ });
67
+ }));
@@ -0,0 +1,124 @@
1
+ // moment.js language configuration
2
+ // language : icelandic (is)
3
+ // author : Hinrik Örn Sigurðsson : https://github.com/hinrik
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ function plural(n) {
15
+ if (n % 100 === 11) {
16
+ return true;
17
+ } else if (n % 10 === 1) {
18
+ return false;
19
+ }
20
+ return true;
21
+ }
22
+
23
+ function translate(number, withoutSuffix, key, isFuture) {
24
+ var result = number + " ";
25
+ switch (key) {
26
+ case 's':
27
+ return withoutSuffix || isFuture ? 'nokkrar sekúndur' : 'nokkrum sekúndum';
28
+ case 'm':
29
+ return withoutSuffix ? 'mínúta' : 'mínútu';
30
+ case 'mm':
31
+ if (plural(number)) {
32
+ return result + (withoutSuffix || isFuture ? 'mínútur' : 'mínútum');
33
+ } else if (withoutSuffix) {
34
+ return result + 'mínúta';
35
+ }
36
+ return result + 'mínútu';
37
+ case 'hh':
38
+ if (plural(number)) {
39
+ return result + (withoutSuffix || isFuture ? 'klukkustundir' : 'klukkustundum');
40
+ }
41
+ return result + 'klukkustund';
42
+ case 'd':
43
+ if (withoutSuffix) {
44
+ return 'dagur';
45
+ }
46
+ return isFuture ? 'dag' : 'degi';
47
+ case 'dd':
48
+ if (plural(number)) {
49
+ if (withoutSuffix) {
50
+ return result + 'dagar';
51
+ }
52
+ return result + (isFuture ? 'daga' : 'dögum');
53
+ } else if (withoutSuffix) {
54
+ return result + 'dagur';
55
+ }
56
+ return result + (isFuture ? 'dag' : 'degi');
57
+ case 'M':
58
+ if (withoutSuffix) {
59
+ return 'mánuður';
60
+ }
61
+ return isFuture ? 'mánuð' : 'mánuði';
62
+ case 'MM':
63
+ if (plural(number)) {
64
+ if (withoutSuffix) {
65
+ return result + 'mánuðir';
66
+ }
67
+ return result + (isFuture ? 'mánuði' : 'mánuðum');
68
+ } else if (withoutSuffix) {
69
+ return result + 'mánuður';
70
+ }
71
+ return result + (isFuture ? 'mánuð' : 'mánuði');
72
+ case 'y':
73
+ return withoutSuffix || isFuture ? 'ár' : 'ári';
74
+ case 'yy':
75
+ if (plural(number)) {
76
+ return result + (withoutSuffix || isFuture ? 'ár' : 'árum');
77
+ }
78
+ return result + (withoutSuffix || isFuture ? 'ár' : 'ári');
79
+ }
80
+ }
81
+
82
+ return moment.lang('is', {
83
+ months : "janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),
84
+ monthsShort : "jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),
85
+ weekdays : "sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),
86
+ weekdaysShort : "sun_mán_þri_mið_fim_fös_lau".split("_"),
87
+ weekdaysMin : "Su_Má_Þr_Mi_Fi_Fö_La".split("_"),
88
+ longDateFormat : {
89
+ LT : "H:mm",
90
+ L : "DD/MM/YYYY",
91
+ LL : "D. MMMM YYYY",
92
+ LLL : "D. MMMM YYYY [kl.] LT",
93
+ LLLL : "dddd, D. MMMM YYYY [kl.] LT"
94
+ },
95
+ calendar : {
96
+ sameDay : '[í dag kl.] LT',
97
+ nextDay : '[á morgun kl.] LT',
98
+ nextWeek : 'dddd [kl.] LT',
99
+ lastDay : '[í gær kl.] LT',
100
+ lastWeek : '[síðasta] dddd [kl.] LT',
101
+ sameElse : 'L'
102
+ },
103
+ relativeTime : {
104
+ future : "eftir %s",
105
+ past : "fyrir %s síðan",
106
+ s : translate,
107
+ m : translate,
108
+ mm : translate,
109
+ h : "klukkustund",
110
+ hh : translate,
111
+ d : translate,
112
+ dd : translate,
113
+ M : translate,
114
+ MM : translate,
115
+ y : translate,
116
+ yy : translate
117
+ },
118
+ ordinal : '%d.',
119
+ week : {
120
+ dow : 1, // Monday is the first day of the week.
121
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
122
+ }
123
+ });
124
+ }));
@@ -0,0 +1,59 @@
1
+ // moment.js language configuration
2
+ // language : italian (it)
3
+ // author : Lorenzo : https://github.com/aliem
4
+ // author: Mattia Larentis: https://github.com/nostalgiaz
5
+
6
+ (function (factory) {
7
+ if (typeof define === 'function' && define.amd) {
8
+ define(['moment'], factory); // AMD
9
+ } else if (typeof exports === 'object') {
10
+ module.exports = factory(require('../moment')); // Node
11
+ } else {
12
+ factory(window.moment); // Browser global
13
+ }
14
+ }(function (moment) {
15
+ return moment.lang('it', {
16
+ months : "Gennaio_Febbraio_Marzo_Aprile_Maggio_Giugno_Luglio_Agosto_Settembre_Ottobre_Novembre_Dicembre".split("_"),
17
+ monthsShort : "Gen_Feb_Mar_Apr_Mag_Giu_Lug_Ago_Set_Ott_Nov_Dic".split("_"),
18
+ weekdays : "Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),
19
+ weekdaysShort : "Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),
20
+ weekdaysMin : "D_L_Ma_Me_G_V_S".split("_"),
21
+ longDateFormat : {
22
+ LT : "HH:mm",
23
+ L : "DD/MM/YYYY",
24
+ LL : "D MMMM YYYY",
25
+ LLL : "D MMMM YYYY LT",
26
+ LLLL : "dddd, D MMMM YYYY LT"
27
+ },
28
+ calendar : {
29
+ sameDay: '[Oggi alle] LT',
30
+ nextDay: '[Domani alle] LT',
31
+ nextWeek: 'dddd [alle] LT',
32
+ lastDay: '[Ieri alle] LT',
33
+ lastWeek: '[lo scorso] dddd [alle] LT',
34
+ sameElse: 'L'
35
+ },
36
+ relativeTime : {
37
+ future : function (s) {
38
+ return ((/^[0-9].+$/).test(s) ? "tra" : "in") + " " + s;
39
+ },
40
+ past : "%s fa",
41
+ s : "alcuni secondi",
42
+ m : "un minuto",
43
+ mm : "%d minuti",
44
+ h : "un'ora",
45
+ hh : "%d ore",
46
+ d : "un giorno",
47
+ dd : "%d giorni",
48
+ M : "un mese",
49
+ MM : "%d mesi",
50
+ y : "un anno",
51
+ yy : "%d anni"
52
+ },
53
+ ordinal: '%dº',
54
+ week : {
55
+ dow : 1, // Monday is the first day of the week.
56
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
57
+ }
58
+ });
59
+ }));
@@ -0,0 +1,58 @@
1
+ // moment.js language configuration
2
+ // language : japanese (ja)
3
+ // author : LI Long : https://github.com/baryon
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ return moment.lang('ja', {
15
+ months : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
16
+ monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
17
+ weekdays : "日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),
18
+ weekdaysShort : "日_月_火_水_木_金_土".split("_"),
19
+ weekdaysMin : "日_月_火_水_木_金_土".split("_"),
20
+ longDateFormat : {
21
+ LT : "Ah時m分",
22
+ L : "YYYY/MM/DD",
23
+ LL : "YYYY年M月D日",
24
+ LLL : "YYYY年M月D日LT",
25
+ LLLL : "YYYY年M月D日LT dddd"
26
+ },
27
+ meridiem : function (hour, minute, isLower) {
28
+ if (hour < 12) {
29
+ return "午前";
30
+ } else {
31
+ return "午後";
32
+ }
33
+ },
34
+ calendar : {
35
+ sameDay : '[今日] LT',
36
+ nextDay : '[明日] LT',
37
+ nextWeek : '[来週]dddd LT',
38
+ lastDay : '[昨日] LT',
39
+ lastWeek : '[前週]dddd LT',
40
+ sameElse : 'L'
41
+ },
42
+ relativeTime : {
43
+ future : "%s後",
44
+ past : "%s前",
45
+ s : "数秒",
46
+ m : "1分",
47
+ mm : "%d分",
48
+ h : "1時間",
49
+ hh : "%d時間",
50
+ d : "1日",
51
+ dd : "%d日",
52
+ M : "1ヶ月",
53
+ MM : "%dヶ月",
54
+ y : "1年",
55
+ yy : "%d年"
56
+ }
57
+ });
58
+ }));
@@ -0,0 +1,108 @@
1
+ // moment.js language configuration
2
+ // language : Georgian (ka)
3
+ // author : Irakli Janiashvili : https://github.com/irakli-janiashvili
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+
15
+ function monthsCaseReplace(m, format) {
16
+ var months = {
17
+ 'nominative': 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'),
18
+ 'accusative': 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_')
19
+ },
20
+
21
+ nounCase = (/D[oD] *MMMM?/).test(format) ?
22
+ 'accusative' :
23
+ 'nominative';
24
+
25
+ return months[nounCase][m.month()];
26
+ }
27
+
28
+ function weekdaysCaseReplace(m, format) {
29
+ var weekdays = {
30
+ 'nominative': 'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split('_'),
31
+ 'accusative': 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split('_')
32
+ },
33
+
34
+ nounCase = (/(წინა|შემდეგ)/).test(format) ?
35
+ 'accusative' :
36
+ 'nominative';
37
+
38
+ return weekdays[nounCase][m.day()];
39
+ }
40
+
41
+ return moment.lang('ka', {
42
+ months : monthsCaseReplace,
43
+ monthsShort : "იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ".split("_"),
44
+ weekdays : weekdaysCaseReplace,
45
+ weekdaysShort : "კვი_ორშ_სამ_ოთხ_ხუთ_პარ_შაბ".split("_"),
46
+ weekdaysMin : "კვ_ორ_სა_ოთ_ხუ_პა_შა".split("_"),
47
+ longDateFormat : {
48
+ LT : "h:mm A",
49
+ L : "DD/MM/YYYY",
50
+ LL : "D MMMM YYYY",
51
+ LLL : "D MMMM YYYY LT",
52
+ LLLL : "dddd, D MMMM YYYY LT"
53
+ },
54
+ calendar : {
55
+ sameDay : '[დღეს] LT[-ზე]',
56
+ nextDay : '[ხვალ] LT[-ზე]',
57
+ lastDay : '[გუშინ] LT[-ზე]',
58
+ nextWeek : '[შემდეგ] dddd LT[-ზე]',
59
+ lastWeek : '[წინა] dddd LT-ზე',
60
+ sameElse : 'L'
61
+ },
62
+ relativeTime : {
63
+ future : function (s) {
64
+ return (/(წამი|წუთი|საათი|წელი)/).test(s) ?
65
+ s.replace(/ი$/, "ში") :
66
+ s + "ში";
67
+ },
68
+ past : function (s) {
69
+ if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) {
70
+ return s.replace(/(ი|ე)$/, "ის წინ");
71
+ }
72
+ if ((/წელი/).test(s)) {
73
+ return s.replace(/წელი$/, "წლის წინ");
74
+ }
75
+ },
76
+ s : "რამდენიმე წამი",
77
+ m : "წუთი",
78
+ mm : "%d წუთი",
79
+ h : "საათი",
80
+ hh : "%d საათი",
81
+ d : "დღე",
82
+ dd : "%d დღე",
83
+ M : "თვე",
84
+ MM : "%d თვე",
85
+ y : "წელი",
86
+ yy : "%d წელი"
87
+ },
88
+ ordinal : function (number) {
89
+ if (number === 0) {
90
+ return number;
91
+ }
92
+
93
+ if (number === 1) {
94
+ return number + "-ლი";
95
+ }
96
+
97
+ if ((number < 20) || (number <= 100 && (number % 20 === 0)) || (number % 100 === 0)) {
98
+ return "მე-" + number;
99
+ }
100
+
101
+ return number + "-ე";
102
+ },
103
+ week : {
104
+ dow : 1,
105
+ doy : 7
106
+ }
107
+ });
108
+ }));
@@ -0,0 +1,55 @@
1
+ // moment.js language configuration
2
+ // language : khmer (km)
3
+ // author : Kruy Vanna : https://github.com/kruyvanna
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ return moment.lang('km', {
15
+ months: "មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),
16
+ monthsShort: "មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ".split("_"),
17
+ weekdays: "អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),
18
+ weekdaysShort: "អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),
19
+ weekdaysMin: "អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍".split("_"),
20
+ longDateFormat: {
21
+ LT: "HH:mm",
22
+ L: "DD/MM/YYYY",
23
+ LL: "D MMMM YYYY",
24
+ LLL: "D MMMM YYYY LT",
25
+ LLLL: "dddd, D MMMM YYYY LT"
26
+ },
27
+ calendar: {
28
+ sameDay: '[ថ្ងៃនៈ ម៉ោង] LT',
29
+ nextDay: '[ស្អែក ម៉ោង] LT',
30
+ nextWeek: 'dddd [ម៉ោង] LT',
31
+ lastDay: '[ម្សិលមិញ ម៉ោង] LT',
32
+ lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
33
+ sameElse: 'L'
34
+ },
35
+ relativeTime: {
36
+ future: "%sទៀត",
37
+ past: "%sមុន",
38
+ s: "ប៉ុន្មានវិនាទី",
39
+ m: "មួយនាទី",
40
+ mm: "%d នាទី",
41
+ h: "មួយម៉ោង",
42
+ hh: "%d ម៉ោង",
43
+ d: "មួយថ្ងៃ",
44
+ dd: "%d ថ្ងៃ",
45
+ M: "មួយខែ",
46
+ MM: "%d ខែ",
47
+ y: "មួយឆ្នាំ",
48
+ yy: "%d ឆ្នាំ"
49
+ },
50
+ week: {
51
+ dow: 1, // Monday is the first day of the week.
52
+ doy: 4 // The week that contains Jan 4th is the first week of the year.
53
+ }
54
+ });
55
+ }));