01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.welcome;
05:
06: import java.util.ListResourceBundle;
07:
08: public class HyperlinkFrameBundle extends ListResourceBundle {
09: public Object[][] getContents() {
10: return contents;
11: }
12:
13: static final Object[][] contents = {
14: { "file.menu.title", "File" },
15: { "help.menu.title", "Help" },
16: { "visit.forums.title", "Visit Terracotta Forums" },
17: { "forums.url", "http://www.terracottatech.com/forums/" },
18: { "contact.support.title",
19: "Contact Terracotta Technical Support" },
20: { "support.url",
21: "http://www.terracottatech.com/support_services.shtml" },
22: { "contact.field.eng.title",
23: "Contact Terracotta Field Engineering" },
24: { "field.eng.url",
25: "http://www.terracottatech.com/contact/field/" },
26: { "contact.sales.title", "Contact Terracotta Sales" },
27: { "sales.url", "http://www.terracottatech.com/contact/" },
28: { "page.load.error", "Unable to load page." },
29: { "about.title.prefix", "About " },
30: { "quit.action.name", "Exit" } };
31: }
|