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.

108 lines
2.2 KiB

  1. /*eslint eqeqeq: "off"*/
  2. /*eslint no-nested-ternary: "off"*/
  3. /*eslint quotes: "off"*/
  4. export default [{
  5. locale: "co",
  6. pluralRuleFunction: function (e, a) {
  7. return a ? 1 == e ? "one" : "other" : e >= 0 && e < 2 ? "one" : "other";
  8. },
  9. fields: {
  10. year: {
  11. displayName: "annu",
  12. relative: {
  13. 0: "quist'annu",
  14. 1: "l'annu chì vene",
  15. "-1": "l'annu passatu",
  16. },
  17. relativeTime: {
  18. future: {
  19. one: "in {0} annu",
  20. other: "in {0} anni",
  21. },
  22. past: {
  23. one: "{0} annu fà",
  24. other: "{0} anni fà",
  25. },
  26. },
  27. },
  28. month: {
  29. displayName: "mese",
  30. relative: {
  31. 0: "Questu mese",
  32. 1: "u mese chì vene",
  33. "-1": "u mese passatu",
  34. },
  35. relativeTime: {
  36. future: {
  37. one: "in {0} mese",
  38. other: "in {0} mesi",
  39. },
  40. past: {
  41. one: "{0} mese fà",
  42. other: "{0} mesi fà",
  43. },
  44. },
  45. },
  46. day: {
  47. displayName: "ghjornu",
  48. relative: {
  49. 0: "oghje",
  50. 1: "dumane",
  51. "-1": "eri",
  52. },
  53. relativeTime: {
  54. future: {
  55. one: "in {0} ghjornu",
  56. other: "in {0} ghjornu",
  57. },
  58. past: {
  59. one: "{0} ghjornu fà",
  60. other: "{0} ghjorni fà",
  61. },
  62. },
  63. },
  64. hour: {
  65. displayName: "ora",
  66. relativeTime: {
  67. future: {
  68. one: "in {0} ora",
  69. other: "in {0} ore",
  70. },
  71. past: {
  72. one: "{0} ora fà",
  73. other: "{0} ore fà",
  74. },
  75. },
  76. },
  77. minute: {
  78. displayName: "minuta",
  79. relativeTime: {
  80. future: {
  81. one: "in {0} minuta",
  82. other: "in {0} minute",
  83. },
  84. past: {
  85. one: "{0} minuta fà",
  86. other: "{0} minute fà",
  87. },
  88. },
  89. },
  90. second: {
  91. displayName: "siconda",
  92. relative: {
  93. 0: "avà",
  94. },
  95. relativeTime: {
  96. future: {
  97. one: "in {0} siconda",
  98. other: "in {0} siconde",
  99. },
  100. past: {
  101. one: "{0} siconda fà",
  102. other: "{0} siconde fà",
  103. },
  104. },
  105. },
  106. },
  107. }];