en-gb.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // moment.js language configuration
  2. // language : great britain english (en-gb)
  3. // author : Chris Gedrim : https://github.com/chrisgedrim
  4. (function (factory) {
  5. if (typeof define === 'function' && define.amd) {
  6. define(['moment'], factory); // AMD
  7. } else if (typeof exports === 'object') {
  8. module.exports = factory(require('../moment')); // Node
  9. } else {
  10. factory(window.moment); // Browser global
  11. }
  12. }(function (moment) {
  13. return moment.lang('en-gb', {
  14. months : "January_February_March_April_May_June_July_August_September_October_November_December".split("_"),
  15. monthsShort : "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),
  16. weekdays : "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),
  17. weekdaysShort : "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),
  18. weekdaysMin : "Su_Mo_Tu_We_Th_Fr_Sa".split("_"),
  19. longDateFormat : {
  20. LT : "HH:mm",
  21. L : "DD/MM/YYYY",
  22. LL : "D MMMM YYYY",
  23. LLL : "D MMMM YYYY LT",
  24. LLLL : "dddd, D MMMM YYYY LT"
  25. },
  26. calendar : {
  27. sameDay : '[Today at] LT',
  28. nextDay : '[Tomorrow at] LT',
  29. nextWeek : 'dddd [at] LT',
  30. lastDay : '[Yesterday at] LT',
  31. lastWeek : '[Last] dddd [at] LT',
  32. sameElse : 'L'
  33. },
  34. relativeTime : {
  35. future : "in %s",
  36. past : "%s ago",
  37. s : "a few seconds",
  38. m : "a minute",
  39. mm : "%d minutes",
  40. h : "an hour",
  41. hh : "%d hours",
  42. d : "a day",
  43. dd : "%d days",
  44. M : "a month",
  45. MM : "%d months",
  46. y : "a year",
  47. yy : "%d years"
  48. },
  49. ordinal : function (number) {
  50. var b = number % 10,
  51. output = (~~ (number % 100 / 10) === 1) ? 'th' :
  52. (b === 1) ? 'st' :
  53. (b === 2) ? 'nd' :
  54. (b === 3) ? 'rd' : 'th';
  55. return number + output;
  56. },
  57. week : {
  58. dow : 1, // Monday is the first day of the week.
  59. doy : 4 // The week that contains Jan 4th is the first week of the year.
  60. }
  61. });
  62. }));