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.util;
05:
06: import java.util.ListResourceBundle;
07:
08: public class ProductInfoBundle extends ListResourceBundle {
09: public Object[][] getContents() {
10: return contents;
11: }
12:
13: static final Object[][] contents = {
14: { "moniker", "Terracotta" },
15: { "invalid.timestamp",
16: "The build timestamp string ''{0}'' does not appear to be valid." },
17: { "load.properties.failure",
18: "Unable to load build properties from ''{0}''." },
19: { "copyright",
20: "Copyright (c) 2003-2007 Terracotta, Inc. All rights reserved." },
21: { "option.verbose", "Produces more detailed information." },
22: { "option.help", "Shows this text." } };
23: }
|