1. /*
  2. * @(#)DateFormatZoneData_en.java 1.10 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * @(#)DateFormatZoneData_en.java 1.10 01/11/29
  9. *
  10. * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  11. * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  12. *
  13. * Portions copyright (c) 1997, 1998 Sun Microsystems, Inc.
  14. * All Rights Reserved.
  15. *
  16. * The original version of this source code and documentation
  17. * is copyrighted and owned by Taligent, Inc., a wholly-owned
  18. * subsidiary of IBM. These materials are provided under terms
  19. * of a License Agreement between Taligent and Sun. This technology
  20. * is protected by multiple US and International patents.
  21. *
  22. * This notice and attribution to Taligent may not be removed.
  23. * Taligent is a registered trademark of Taligent, Inc.
  24. *
  25. * Permission to use, copy, modify, and distribute this software
  26. * and its documentation for NON-COMMERCIAL purposes and without
  27. * fee is hereby granted provided that this copyright notice
  28. * appears in all copies. Please refer to the file "copyright.html"
  29. * for further important copyright and licensing information.
  30. *
  31. * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  32. * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  33. * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  34. * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  35. * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  36. * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  37. *
  38. */
  39. package java.text.resources;
  40. import java.util.ListResourceBundle;
  41. /**
  42. * Supplement package private date-time formatting zone data for DateFormat.
  43. * DateFormatData used in DateFormat will be initialized by loading the data
  44. * from LocaleElements and DateFormatZoneData resources. The zone data are
  45. * represented with the following form:
  46. * {ID, long zone string, short zone string, long daylight string,
  47. * short daylight string, representative city of zone}, where ID is
  48. * NOT localized, but is used to look up the localized timezone data
  49. * internally. Localizers can localize any zone strings except
  50. * for the ID of the timezone.
  51. * @see ListResourceBundle
  52. * @see Format
  53. * @see DateFormatData
  54. * @see LocaleElements
  55. * @see SimpleDateFormat
  56. * @see TimeZone
  57. * @version 1.4 01/27/97
  58. * @author Chen-Lieh Huang
  59. * @author Alan Liu
  60. */
  61. // US DateFormatZoneData
  62. //
  63. public final class DateFormatZoneData_en extends ListResourceBundle
  64. {
  65. /**
  66. * Overrides ListResourceBundle
  67. */
  68. public Object[][] getContents() {
  69. return new Object[][] {
  70. {"zoneStrings",
  71. new String[][] {
  72. // Zones should have unique names and abbreviations within this locale.
  73. // Names and abbreviations may be identical if the corresponding zones
  74. // really are identical. E.g.: America/Phoenix and America/Denver both
  75. // use MST; these zones differ only in that America/Denver uses MDT as
  76. // well.
  77. //
  78. // We list both short and long IDs. Short IDs come first so that they
  79. // are chosen preferentially during parsing of zone names.
  80. //
  81. // ar
  82. //{"Africa/Cairo", "Egypt Standard Time", "EET",
  83. // "Egypt Daylight Time", "EEST" /*Cairo*/}
  84. // be
  85. //{"Europe/Minsk", "Eastern European Standard Time", "EET",
  86. // "Eastern European Daylight Time", "EEST" /*Minsk*/}
  87. // bg
  88. //{"Europe/Bucharest", "Eastern European Standard Time", "EET",
  89. // "Eastern European Daylight Time", "EEST" /*Sofia*/}
  90. // ca
  91. //{"Europe/Paris", "Central European Standard Time", "CET",
  92. // "Central European Daylight Time", "CEST" /*Madrid*/}
  93. // cs
  94. //{"ECT", "Central European Standard Time", "CEST",
  95. // "Central European Daylight Time", "CEDT" /*Prague*/},
  96. // da
  97. //{"ECT", "Central European Standard Time", "CEST",
  98. // "Central European Daylight Time", "CEDT" /*Copenhagen*/},
  99. // de
  100. //{"ECT", "Central European Standard Time", "CEST",
  101. // "Central European Daylight Time", "CEDT" /*Berlin*/},
  102. // de_AT
  103. //{"ECT", "Central European Standard Time", "CEST",
  104. // "Central European Daylight Time", "CEDT" /*Vienna*/},
  105. // de_CH
  106. //{"ECT", "Central European Standard Time", "CEST",
  107. // "Central European Daylight Time", "CEDT" /*Zurich*/},
  108. // el
  109. //{"Europe/Istanbul", "Eastern European Standard Time", "EET",
  110. // "Eastern European Daylight Time", "EEST" /*Athens*/},
  111. // en
  112. {"PST" /*--America/Los_Angeles--*/, "Pacific Standard Time", "PST",
  113. "Pacific Daylight Time", "PDT" /*San Francisco*/},
  114. {"America/Los_Angeles", "Pacific Standard Time", "PST",
  115. "Pacific Daylight Time", "PDT" /*San Francisco*/},
  116. {"MST" /*--America/Denver--*/, "Mountain Standard Time", "MST",
  117. "Mountain Daylight Time", "MDT" /*Denver*/},
  118. {"America/Denver", "Mountain Standard Time", "MST",
  119. "Mountain Daylight Time", "MDT" /*Denver*/},
  120. {"PNT" /*--America/Phoenix--*/, "Mountain Standard Time", "MST",
  121. "Mountain Standard Time", "MST" /*Phoenix*/},
  122. {"America/Phoenix", "Mountain Standard Time", "MST",
  123. "Mountain Standard Time", "MST" /*Phoenix*/},
  124. {"CST" /*--America/Chicago--*/, "Central Standard Time", "CST",
  125. "Central Daylight Time", "CDT" /*Chicago*/},
  126. {"America/Chicago", "Central Standard Time", "CST",
  127. "Central Daylight Time", "CDT" /*Chicago*/},
  128. {"EST" /*--America/New_York--*/, "Eastern Standard Time", "EST",
  129. "Eastern Daylight Time", "EDT" /*New York*/},
  130. {"America/New_York", "Eastern Standard Time", "EST",
  131. "Eastern Daylight Time", "EDT" /*New York*/},
  132. {"IET" /*--America/Indianapolis--*/, "Eastern Standard Time", "EST",
  133. "Eastern Standard Time", "EST" /*Indianapolis*/},
  134. {"America/Indianapolis", "Eastern Standard Time", "EST",
  135. "Eastern Standard Time", "EST" /*Indianapolis*/},
  136. {"HST" /*--Pacific/Honolulu--*/, "Hawaii Standard Time", "HST",
  137. "Hawaii Standard Time", "HST" /*Honolulu*/},
  138. {"Pacific/Honolulu", "Hawaii Standard Time", "HST",
  139. "Hawaii Standard Time", "HST" /*Honolulu*/},
  140. {"AST" /*--America/Anchorage--*/, "Alaska Standard Time", "AKST",
  141. "Alaska Daylight Time", "AKDT" /*Anchorage*/},
  142. {"America/Anchorage", "Alaska Standard Time", "AKST",
  143. "Alaska Daylight Time", "AKDT" /*Anchorage*/},
  144. // en_CA
  145. {"America/Halifax", "Atlantic Standard Time", "AST",
  146. "Atlantic Daylight Time", "ADT" /*Halifax*/},
  147. {"CNT" /*--America/St_Johns--*/, "Newfoundland Standard Time",
  148. "NST", "Newfoundland Daylight Time", "NDT" /*St. John's*/},
  149. {"America/St_Johns", "Newfoundland Standard Time",
  150. "NST", "Newfoundland Daylight Time", "NDT" /*St. John's*/},
  151. // es
  152. //{"ECT", "Central European Standard Time", "CEST",
  153. // "Central European Daylight Time", "CEDT" /*Madrid*/},
  154. // et
  155. //{"EET", "Eastern European Standard Time", "EEST",
  156. // "Eastern European Daylight Time", "EEDT" /*Tallinn*/},
  157. // fi
  158. //{"EET", "Eastern European Standard Time", "EEST",
  159. // "Eastern European Daylight Time", "EEDT" /*Helsinki*/},
  160. // fr
  161. {"ECT" /*--Europe/Paris--*/, "Central European Standard Time",
  162. "CET", "Central European Daylight Time", "CEST" /*Paris*/},
  163. {"Europe/Paris", "Central European Standard Time", "CET",
  164. "Central European Daylight Time", "CEST" /*Paris*/},
  165. // fr_BE
  166. //{"ECT", "Central European Standard Time", "CEST",
  167. // "Central European Daylight Time", "CEDT" /*Brussels*/},
  168. // fr_CA
  169. // fr_CH
  170. //{"ECT", "Central European Standard Time", "CEST",
  171. // "Central European Daylight Time", "CEDT" /*Geneva*/},
  172. // hr
  173. //{"ECT", "Central European Standard Time", "CEST",
  174. // "Central European Daylight Time", "CEDT" /*Zagreb*/},
  175. // hu
  176. //{"ECT", "Central European Standard Time", "CEST",
  177. // "Central European Daylight Time", "CEDT" /*Budapest*/},
  178. // is
  179. {"GMT", "Greenwich Mean Time", "GMT",
  180. "Greenwich Mean Time", "GMT" /*Reykjavik*/},
  181. {"Africa/Casablanca", "Greenwich Mean Time", "GMT",
  182. "Greenwich Mean Time", "GMT" /*Reykjavik*/},
  183. // it
  184. //{"ECT", "Central European Standard Time", "CEST",
  185. // "Central European Daylight Time", "CEDT" /*Rome*/},
  186. // it_CH
  187. //{"ECT", "Central European Standard Time", "CEST",
  188. // "Central European Daylight Time", "CEDT" /*Zurich*/},
  189. // iw
  190. {"Asia/Jerusalem", "Israel Standard Time", "IST",
  191. "Israel Daylight Time", "IDT" /*Tel Aviv*/},
  192. // ja
  193. {"JST" /*--Asia/Tokyo--*/, "Japan Standard Time",
  194. "JST", "Japan Standard Time", "JST" /*Tokyo*/},
  195. {"Asia/Tokyo", "Japan Standard Time", "JST",
  196. "Japan Standard Time", "JST" /*Tokyo*/},
  197. // ko
  198. //{"JST" /*--Asia/Tokyo--*/, "Korea Standard Time",
  199. // "KST", "Korea Standard Time", "KST" /*Seoul*/},
  200. // lt
  201. //{"EET", "Eastern European Standard Time", "EEST",
  202. // "Eastern European Daylight Time", "EEDT" /*Vilnius*/},
  203. // lv
  204. //{"Europe/Riga", "Eastern European Standard Time",
  205. // "EET", "Eastern European Daylight Time", "EEST" /*Riga*/},
  206. // mk
  207. //{"ECT", "Central European Standard Time", "CEST",
  208. // "Central European Daylight Time", "CEDT" /*Skopje*/},
  209. // nl
  210. //{"ECT", "Central European Standard Time", "CEST",
  211. // "Central European Daylight Time", "CEDT" /*Amsterdam*/},
  212. // nl_BE
  213. //{"ECT", "Central European Standard Time", "CEST",
  214. // "Central European Daylight Time", "CEDT" /*Brussels*/},
  215. // no
  216. //{"ECT", "Central European Standard Time", "CEST",
  217. // "Central European Daylight Time", "CEDT" /*Oslo*/},
  218. // no_NO_NY
  219. //{"ECT", "Central European Standard Time", "CEST",
  220. // "Central European Daylight Time", "CEDT" /*Oslo*/},
  221. // pl
  222. //{"Europe/Warsaw", "Central European Standard Time",
  223. // "CET", "Central European Daylight Time", "CEST" /*Warsaw*/},
  224. // pt
  225. //{"ECT", "Central European Standard Time", "CEST",
  226. // "Central European Daylight Time", "CEDT" /*Lisbon*/},
  227. // ro
  228. {"Europe/Bucharest", "Eastern European Standard Time",
  229. "EET", "Eastern European Daylight Time", "EEST" /*Bucharest*/},
  230. // ru
  231. //{"EET", "Eastern European Standard Time", "EEST",
  232. // "Eastern European Daylight Time", "EEDT" /*Unknown*/},
  233. // sh
  234. //{"Europe/Paris", "Central European Standard Time",
  235. // "CET", "Central European Daylight Time", "CEST" /*Paris*/}
  236. // sk
  237. //{"ECT", "Central European Standard Time", "CEST",
  238. // "Central European Daylight Time", "CEDT" /*Paris*/},
  239. // sl
  240. //{"ECT", "Central European Standard Time", "CEST",
  241. // "Central European Daylight Time", "CEDT" /*Ljubljana*/},
  242. // sq
  243. //{"ECT", "Central European Standard Time", "CEST",
  244. // "Central European Daylight Time", "CEDT" /*Tirana*/},
  245. // sr
  246. //{"ECT", "Central European Standard Time", "CEST",
  247. // "Central European Daylight Time", "CEDT" /*Paris*/},
  248. // sv
  249. //{"ECT", "Central European Standard Time", "CEST",
  250. // "Central European Daylight Time", "CEDT" /*Stockholm*/},
  251. // tr
  252. //{"EET", "Eastern European Standard Time", "EEST",
  253. // "Eastern European Daylight Time", "EEDT" /*Ankara*/},
  254. // uk
  255. //{"EET", "Eastern European Standard Time", "EEST",
  256. // "Eastern European Daylight Time", "EEDT" /*Kiev*/},
  257. // zh
  258. {"CTT", "China Standard Time", "CST",
  259. "China Standard Time", "CDT" /*Peking*/},
  260. {"Asia/Shanghai", "China Standard Time", "CST",
  261. "China Standard Time", "CDT" /*Peking*/},
  262. // zh_TW
  263. //{"CTT", "Taiwan Standard Time", "TST",
  264. // "Taiwan Standard Time", "TST" /*Taipei*/},
  265. }
  266. },
  267. {"localPatternChars", "GyMdkHmsSEDFwWahKz"},
  268. };
  269. }
  270. }