/src/main/java/org/ocpsoft/prettytime/i18n/Resources_en.java

http://github.com/ocpsoft/prettytime · Java · 121 lines · 102 code · 4 blank · 15 comment · 0 complexity · cbde7b11060561025794725b5aee3609 MD5 · raw file

  1. /*
  2. * Copyright 2012 <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.ocpsoft.prettytime.i18n;
  17. import java.util.ListResourceBundle;
  18. public class Resources_en extends ListResourceBundle
  19. {
  20. private static final Object[][] OBJECTS = new Object[][] {
  21. { "CenturyPattern", "%n %u" },
  22. { "CenturyFuturePrefix", "" },
  23. { "CenturyFutureSuffix", " from now" },
  24. { "CenturyPastPrefix", "" },
  25. { "CenturyPastSuffix", " ago" },
  26. { "CenturyName", "century" },
  27. { "CenturyPluralName", "centuries" },
  28. { "DayPattern", "%n %u" },
  29. { "DayFuturePrefix", "" },
  30. { "DayFutureSuffix", " from now" },
  31. { "DayPastPrefix", "" },
  32. { "DayPastSuffix", " ago" },
  33. { "DayName", "day" },
  34. { "DayPluralName", "days" },
  35. { "DecadePattern", "%n %u" },
  36. { "DecadeFuturePrefix", "" },
  37. { "DecadeFutureSuffix", " from now" },
  38. { "DecadePastPrefix", "" },
  39. { "DecadePastSuffix", " ago" },
  40. { "DecadeName", "decade" },
  41. { "DecadePluralName", "decades" },
  42. { "HourPattern", "%n %u" },
  43. { "HourFuturePrefix", "" },
  44. { "HourFutureSuffix", " from now" },
  45. { "HourPastPrefix", "" },
  46. { "HourPastSuffix", " ago" },
  47. { "HourName", "hour" },
  48. { "HourPluralName", "hours" },
  49. { "JustNowPattern", "%u" },
  50. { "JustNowFuturePrefix", "" },
  51. { "JustNowFutureSuffix", "moments from now" },
  52. { "JustNowPastPrefix", "moments ago" },
  53. { "JustNowPastSuffix", "" },
  54. { "JustNowName", "" },
  55. { "JustNowPluralName", "" },
  56. { "MillenniumPattern", "%n %u" },
  57. { "MillenniumFuturePrefix", "" },
  58. { "MillenniumFutureSuffix", " from now" },
  59. { "MillenniumPastPrefix", "" },
  60. { "MillenniumPastSuffix", " ago" },
  61. { "MillenniumName", "millennium" },
  62. { "MillenniumPluralName", "millennia" },
  63. { "MillisecondPattern", "%n %u" },
  64. { "MillisecondFuturePrefix", "" },
  65. { "MillisecondFutureSuffix", " from now" },
  66. { "MillisecondPastPrefix", "" },
  67. { "MillisecondPastSuffix", " ago" },
  68. { "MillisecondName", "millisecond" },
  69. { "MillisecondPluralName", "milliseconds" },
  70. { "MinutePattern", "%n %u" },
  71. { "MinuteFuturePrefix", "" },
  72. { "MinuteFutureSuffix", " from now" },
  73. { "MinutePastPrefix", "" },
  74. { "MinutePastSuffix", " ago" },
  75. { "MinuteName", "minute" },
  76. { "MinutePluralName", "minutes" },
  77. { "MonthPattern", "%n %u" },
  78. { "MonthFuturePrefix", "" },
  79. { "MonthFutureSuffix", " from now" },
  80. { "MonthPastPrefix", "" },
  81. { "MonthPastSuffix", " ago" },
  82. { "MonthName", "month" },
  83. { "MonthPluralName", "months" },
  84. { "SecondPattern", "%n %u" },
  85. { "SecondFuturePrefix", "" },
  86. { "SecondFutureSuffix", " from now" },
  87. { "SecondPastPrefix", "" },
  88. { "SecondPastSuffix", " ago" },
  89. { "SecondName", "second" },
  90. { "SecondPluralName", "seconds" },
  91. { "WeekPattern", "%n %u" },
  92. { "WeekFuturePrefix", "" },
  93. { "WeekFutureSuffix", " from now" },
  94. { "WeekPastPrefix", "" },
  95. { "WeekPastSuffix", " ago" },
  96. { "WeekName", "week" },
  97. { "WeekPluralName", "weeks" },
  98. { "YearPattern", "%n %u" },
  99. { "YearFuturePrefix", "" },
  100. { "YearFutureSuffix", " from now" },
  101. { "YearPastPrefix", "" },
  102. { "YearPastSuffix", " ago" },
  103. { "YearName", "year" },
  104. { "YearPluralName", "years" },
  105. { "AbstractTimeUnitPattern", "" },
  106. { "AbstractTimeUnitFuturePrefix", "" },
  107. { "AbstractTimeUnitFutureSuffix", "" },
  108. { "AbstractTimeUnitPastPrefix", "" },
  109. { "AbstractTimeUnitPastSuffix", "" },
  110. { "AbstractTimeUnitName", "" },
  111. { "AbstractTimeUnitPluralName", "" } };
  112. @Override
  113. public Object[][] getContents()
  114. {
  115. return OBJECTS;
  116. }
  117. }