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,60 @@
1
+ // moment.js language configuration
2
+ // language : euskara (eu)
3
+ // author : Eneko Illarramendi : https://github.com/eillarra
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('eu', {
15
+ months : "urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua".split("_"),
16
+ monthsShort : "urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.".split("_"),
17
+ weekdays : "igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata".split("_"),
18
+ weekdaysShort : "ig._al._ar._az._og._ol._lr.".split("_"),
19
+ weekdaysMin : "ig_al_ar_az_og_ol_lr".split("_"),
20
+ longDateFormat : {
21
+ LT : "HH:mm",
22
+ L : "YYYY-MM-DD",
23
+ LL : "YYYY[ko] MMMM[ren] D[a]",
24
+ LLL : "YYYY[ko] MMMM[ren] D[a] LT",
25
+ LLLL : "dddd, YYYY[ko] MMMM[ren] D[a] LT",
26
+ l : "YYYY-M-D",
27
+ ll : "YYYY[ko] MMM D[a]",
28
+ lll : "YYYY[ko] MMM D[a] LT",
29
+ llll : "ddd, YYYY[ko] MMM D[a] LT"
30
+ },
31
+ calendar : {
32
+ sameDay : '[gaur] LT[etan]',
33
+ nextDay : '[bihar] LT[etan]',
34
+ nextWeek : 'dddd LT[etan]',
35
+ lastDay : '[atzo] LT[etan]',
36
+ lastWeek : '[aurreko] dddd LT[etan]',
37
+ sameElse : 'L'
38
+ },
39
+ relativeTime : {
40
+ future : "%s barru",
41
+ past : "duela %s",
42
+ s : "segundo batzuk",
43
+ m : "minutu bat",
44
+ mm : "%d minutu",
45
+ h : "ordu bat",
46
+ hh : "%d ordu",
47
+ d : "egun bat",
48
+ dd : "%d egun",
49
+ M : "hilabete bat",
50
+ MM : "%d hilabete",
51
+ y : "urte bat",
52
+ yy : "%d urte"
53
+ },
54
+ ordinal : '%d.',
55
+ week : {
56
+ dow : 1, // Monday is the first day of the week.
57
+ doy : 7 // The week that contains Jan 1st is the first week of the year.
58
+ }
59
+ });
60
+ }));
@@ -0,0 +1,97 @@
1
+ // moment.js language configuration
2
+ // language : Persian Language
3
+ // author : Ebrahim Byagowi : https://github.com/ebraminio
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
+ var symbolMap = {
15
+ '1': '۱',
16
+ '2': '۲',
17
+ '3': '۳',
18
+ '4': '۴',
19
+ '5': '۵',
20
+ '6': '۶',
21
+ '7': '۷',
22
+ '8': '۸',
23
+ '9': '۹',
24
+ '0': '۰'
25
+ }, numberMap = {
26
+ '۱': '1',
27
+ '۲': '2',
28
+ '۳': '3',
29
+ '۴': '4',
30
+ '۵': '5',
31
+ '۶': '6',
32
+ '۷': '7',
33
+ '۸': '8',
34
+ '۹': '9',
35
+ '۰': '0'
36
+ };
37
+
38
+ return moment.lang('fa', {
39
+ months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
40
+ monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
41
+ weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
42
+ weekdaysShort : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
43
+ weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'),
44
+ longDateFormat : {
45
+ LT : 'HH:mm',
46
+ L : 'DD/MM/YYYY',
47
+ LL : 'D MMMM YYYY',
48
+ LLL : 'D MMMM YYYY LT',
49
+ LLLL : 'dddd, D MMMM YYYY LT'
50
+ },
51
+ meridiem : function (hour, minute, isLower) {
52
+ if (hour < 12) {
53
+ return "قبل از ظهر";
54
+ } else {
55
+ return "بعد از ظهر";
56
+ }
57
+ },
58
+ calendar : {
59
+ sameDay : '[امروز ساعت] LT',
60
+ nextDay : '[فردا ساعت] LT',
61
+ nextWeek : 'dddd [ساعت] LT',
62
+ lastDay : '[دیروز ساعت] LT',
63
+ lastWeek : 'dddd [پیش] [ساعت] LT',
64
+ sameElse : 'L'
65
+ },
66
+ relativeTime : {
67
+ future : 'در %s',
68
+ past : '%s پیش',
69
+ s : 'چندین ثانیه',
70
+ m : 'یک دقیقه',
71
+ mm : '%d دقیقه',
72
+ h : 'یک ساعت',
73
+ hh : '%d ساعت',
74
+ d : 'یک روز',
75
+ dd : '%d روز',
76
+ M : 'یک ماه',
77
+ MM : '%d ماه',
78
+ y : 'یک سال',
79
+ yy : '%d سال'
80
+ },
81
+ preparse: function (string) {
82
+ return string.replace(/[۰-۹]/g, function (match) {
83
+ return numberMap[match];
84
+ }).replace(/،/g, ',');
85
+ },
86
+ postformat: function (string) {
87
+ return string.replace(/\d/g, function (match) {
88
+ return symbolMap[match];
89
+ }).replace(/,/g, '،');
90
+ },
91
+ ordinal : '%dم',
92
+ week : {
93
+ dow : 6, // Saturday is the first day of the week.
94
+ doy : 12 // The week that contains Jan 1st is the first week of the year.
95
+ }
96
+ });
97
+ }));
@@ -0,0 +1,103 @@
1
+ // moment.js language configuration
2
+ // language : finnish (fi)
3
+ // author : Tarmo Aidantausta : https://github.com/bleadof
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
+ var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '),
15
+ numbersFuture = ['nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden',
16
+ numbersPast[7], numbersPast[8], numbersPast[9]];
17
+
18
+ function translate(number, withoutSuffix, key, isFuture) {
19
+ var result = "";
20
+ switch (key) {
21
+ case 's':
22
+ return isFuture ? 'muutaman sekunnin' : 'muutama sekunti';
23
+ case 'm':
24
+ return isFuture ? 'minuutin' : 'minuutti';
25
+ case 'mm':
26
+ result = isFuture ? 'minuutin' : 'minuuttia';
27
+ break;
28
+ case 'h':
29
+ return isFuture ? 'tunnin' : 'tunti';
30
+ case 'hh':
31
+ result = isFuture ? 'tunnin' : 'tuntia';
32
+ break;
33
+ case 'd':
34
+ return isFuture ? 'päivän' : 'päivä';
35
+ case 'dd':
36
+ result = isFuture ? 'päivän' : 'päivää';
37
+ break;
38
+ case 'M':
39
+ return isFuture ? 'kuukauden' : 'kuukausi';
40
+ case 'MM':
41
+ result = isFuture ? 'kuukauden' : 'kuukautta';
42
+ break;
43
+ case 'y':
44
+ return isFuture ? 'vuoden' : 'vuosi';
45
+ case 'yy':
46
+ result = isFuture ? 'vuoden' : 'vuotta';
47
+ break;
48
+ }
49
+ result = verbalNumber(number, isFuture) + " " + result;
50
+ return result;
51
+ }
52
+
53
+ function verbalNumber(number, isFuture) {
54
+ return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number;
55
+ }
56
+
57
+ return moment.lang('fi', {
58
+ months : "tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),
59
+ monthsShort : "tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),
60
+ weekdays : "sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),
61
+ weekdaysShort : "su_ma_ti_ke_to_pe_la".split("_"),
62
+ weekdaysMin : "su_ma_ti_ke_to_pe_la".split("_"),
63
+ longDateFormat : {
64
+ LT : "HH.mm",
65
+ L : "DD.MM.YYYY",
66
+ LL : "Do MMMM[ta] YYYY",
67
+ LLL : "Do MMMM[ta] YYYY, [klo] LT",
68
+ LLLL : "dddd, Do MMMM[ta] YYYY, [klo] LT",
69
+ l : "D.M.YYYY",
70
+ ll : "Do MMM YYYY",
71
+ lll : "Do MMM YYYY, [klo] LT",
72
+ llll : "ddd, Do MMM YYYY, [klo] LT"
73
+ },
74
+ calendar : {
75
+ sameDay : '[tänään] [klo] LT',
76
+ nextDay : '[huomenna] [klo] LT',
77
+ nextWeek : 'dddd [klo] LT',
78
+ lastDay : '[eilen] [klo] LT',
79
+ lastWeek : '[viime] dddd[na] [klo] LT',
80
+ sameElse : 'L'
81
+ },
82
+ relativeTime : {
83
+ future : "%s päästä",
84
+ past : "%s sitten",
85
+ s : translate,
86
+ m : translate,
87
+ mm : translate,
88
+ h : translate,
89
+ hh : translate,
90
+ d : translate,
91
+ dd : translate,
92
+ M : translate,
93
+ MM : translate,
94
+ y : translate,
95
+ yy : translate
96
+ },
97
+ ordinal : "%d.",
98
+ week : {
99
+ dow : 1, // Monday is the first day of the week.
100
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
101
+ }
102
+ });
103
+ }));
@@ -0,0 +1,56 @@
1
+ // moment.js language configuration
2
+ // language : faroese (fo)
3
+ // author : Ragnar Johannesen : https://github.com/ragnar123
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('fo', {
15
+ months : "januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember".split("_"),
16
+ monthsShort : "jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),
17
+ weekdays : "sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur".split("_"),
18
+ weekdaysShort : "sun_mán_týs_mik_hós_frí_ley".split("_"),
19
+ weekdaysMin : "su_má_tý_mi_hó_fr_le".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 : '[Í dag kl.] LT',
29
+ nextDay : '[Í morgin kl.] LT',
30
+ nextWeek : 'dddd [kl.] LT',
31
+ lastDay : '[Í gjár kl.] LT',
32
+ lastWeek : '[síðstu] dddd [kl] LT',
33
+ sameElse : 'L'
34
+ },
35
+ relativeTime : {
36
+ future : "um %s",
37
+ past : "%s síðani",
38
+ s : "fá sekund",
39
+ m : "ein minutt",
40
+ mm : "%d minuttir",
41
+ h : "ein tími",
42
+ hh : "%d tímar",
43
+ d : "ein dagur",
44
+ dd : "%d dagar",
45
+ M : "ein mánaði",
46
+ MM : "%d mánaðir",
47
+ y : "eitt ár",
48
+ yy : "%d ár"
49
+ },
50
+ ordinal : '%d.',
51
+ week : {
52
+ dow : 1, // Monday is the first day of the week.
53
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
54
+ }
55
+ });
56
+ }));
@@ -0,0 +1,54 @@
1
+ // moment.js language configuration
2
+ // language : canadian french (fr-ca)
3
+ // author : Jonathan Abourbih : https://github.com/jonbca
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('fr-ca', {
15
+ months : "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
16
+ monthsShort : "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
17
+ weekdays : "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
18
+ weekdaysShort : "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
19
+ weekdaysMin : "Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),
20
+ longDateFormat : {
21
+ LT : "HH:mm",
22
+ L : "YYYY-MM-DD",
23
+ LL : "D MMMM YYYY",
24
+ LLL : "D MMMM YYYY LT",
25
+ LLLL : "dddd D MMMM YYYY LT"
26
+ },
27
+ calendar : {
28
+ sameDay: "[Aujourd'hui à] LT",
29
+ nextDay: '[Demain à] LT',
30
+ nextWeek: 'dddd [à] LT',
31
+ lastDay: '[Hier à] LT',
32
+ lastWeek: 'dddd [dernier à] LT',
33
+ sameElse: 'L'
34
+ },
35
+ relativeTime : {
36
+ future : "dans %s",
37
+ past : "il y a %s",
38
+ s : "quelques secondes",
39
+ m : "une minute",
40
+ mm : "%d minutes",
41
+ h : "une heure",
42
+ hh : "%d heures",
43
+ d : "un jour",
44
+ dd : "%d jours",
45
+ M : "un mois",
46
+ MM : "%d mois",
47
+ y : "un an",
48
+ yy : "%d ans"
49
+ },
50
+ ordinal : function (number) {
51
+ return number + (number === 1 ? 'er' : '');
52
+ }
53
+ });
54
+ }));
@@ -0,0 +1,58 @@
1
+ // moment.js language configuration
2
+ // language : french (fr)
3
+ // author : John Fischer : https://github.com/jfroffice
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('fr', {
15
+ months : "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),
16
+ monthsShort : "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),
17
+ weekdays : "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),
18
+ weekdaysShort : "dim._lun._mar._mer._jeu._ven._sam.".split("_"),
19
+ weekdaysMin : "Di_Lu_Ma_Me_Je_Ve_Sa".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: "[Aujourd'hui à] LT",
29
+ nextDay: '[Demain à] LT',
30
+ nextWeek: 'dddd [à] LT',
31
+ lastDay: '[Hier à] LT',
32
+ lastWeek: 'dddd [dernier à] LT',
33
+ sameElse: 'L'
34
+ },
35
+ relativeTime : {
36
+ future : "dans %s",
37
+ past : "il y a %s",
38
+ s : "quelques secondes",
39
+ m : "une minute",
40
+ mm : "%d minutes",
41
+ h : "une heure",
42
+ hh : "%d heures",
43
+ d : "un jour",
44
+ dd : "%d jours",
45
+ M : "un mois",
46
+ MM : "%d mois",
47
+ y : "un an",
48
+ yy : "%d ans"
49
+ },
50
+ ordinal : function (number) {
51
+ return number + (number === 1 ? 'er' : '');
52
+ },
53
+ week : {
54
+ dow : 1, // Monday is the first day of the week.
55
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
56
+ }
57
+ });
58
+ }));
@@ -0,0 +1,71 @@
1
+ // moment.js language configuration
2
+ // language : galician (gl)
3
+ // author : Juan G. Hurtado : https://github.com/juanghurtado
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('gl', {
15
+ months : "Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro".split("_"),
16
+ monthsShort : "Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.".split("_"),
17
+ weekdays : "Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado".split("_"),
18
+ weekdaysShort : "Dom._Lun._Mar._Mér._Xov._Ven._Sáb.".split("_"),
19
+ weekdaysMin : "Do_Lu_Ma_Mé_Xo_Ve_Sá".split("_"),
20
+ longDateFormat : {
21
+ LT : "H: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 : function () {
29
+ return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
30
+ },
31
+ nextDay : function () {
32
+ return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
33
+ },
34
+ nextWeek : function () {
35
+ return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
36
+ },
37
+ lastDay : function () {
38
+ return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT';
39
+ },
40
+ lastWeek : function () {
41
+ return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
42
+ },
43
+ sameElse : 'L'
44
+ },
45
+ relativeTime : {
46
+ future : function (str) {
47
+ if (str === "uns segundos") {
48
+ return "nuns segundos";
49
+ }
50
+ return "en " + str;
51
+ },
52
+ past : "hai %s",
53
+ s : "uns segundos",
54
+ m : "un minuto",
55
+ mm : "%d minutos",
56
+ h : "unha hora",
57
+ hh : "%d horas",
58
+ d : "un día",
59
+ dd : "%d días",
60
+ M : "un mes",
61
+ MM : "%d meses",
62
+ y : "un ano",
63
+ yy : "%d anos"
64
+ },
65
+ ordinal : '%dº',
66
+ week : {
67
+ dow : 1, // Monday is the first day of the week.
68
+ doy : 7 // The week that contains Jan 1st is the first week of the year.
69
+ }
70
+ });
71
+ }));