01: /**
02: * Copyright (C) 2001-2005 France Telecom R&D
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */package org.objectweb.speedo.locale;
18:
19: import java.util.ListResourceBundle;
20:
21: public class SpeedoResources extends ListResourceBundle {
22: protected Object[][] getContents() {
23: return contents;
24: }
25:
26: static final Object[][] contents = {
27: // LOCALIZE THIS
28: // org.objectweb.fractal.adl.Factory.AbstractSpeedo
29: { "start", " is starting ..." },
30: { "ready", " is ready." },
31: { "pmreused", "PM reused with imbricated PMF.getPM()" },
32: { "speedused", ": Speedo is used " },
33: { "managed", "in a managed environnement" },
34: { "standalone", "in stand alone" },
35: { "tmspec",
36: ": no value specified, use a well known application server" },
37: { "txlisten",
38: "Impossible to instanciate the specified TransactionListener" },
39: { "txconcmgt", "Transaction/Concurrency management: " },
40: {
41: "dbpessim",
42: " with concurrency delegated to the database, Speedo supports only pessimitic policy currently (optimitic => pessimistic)" },
43: { "optim", "Optimistic" },
44: { "pessim", "Pessimitic" },
45: { "concdeleg", ", delegated to database" },
46: { "concspeed", ", managed by Speedo" },
47: { "lockpol", ", locking policy=" },
48: { "thinlock",
49: "Speedo pessimistic thin locking level: enabled" },
50: { "thlklvl", ", with thin locking level" },
51: { "prefetch", "Data prefetching: " },
52: { "NONE", "NONE" },
53: { "QUERY", "QUERY" },
54: { "EXTENT", "EXTENT" },
55: { "COLLECTION", "COLLECTION" },
56: { "ignjdbcinfo",
57: "Ignoring direct JDBC access information (driver, url, user, password)" },
58: { "ignconninfo",
59: "Ignoring connection pool configuration(min, max, ttl, timeout)" },
60: { "connfact",
61: "Data source access through a connection factory found in JNDI:" },
62: { "jndinm", "\n\tjndi name: " },
63: { "factfound", "\n\tconnection factory found: " },
64: { "mappernm", "\n\tmapper name: " },
65: { "property", "Property" },
66: { "deprecuse", " is deprecated, you must use " },
67: { "jdbcdrv", "Data source access through a jdbc driver:" },
68: { "driver", "\n\tdriver= " },
69: { "url", "\n\turl= " },
70: { "user", "\n\tuser= " },
71: { "noconnchk", "No connection checking at start up!" },
72: { "unexpprop", "Unexpected value for property '" },
73: { "pfound", "', found: '" },
74: { "pexpect", "', expected [" },
75: { "datast", "Data Structure: " },
76: { "badhttp",
77: "Bad HTTP port for the administration console: " },
78: { "jmxactiv", "JMX activated" },
79: { "jmxhttp", "JMX and HTTP console on port '" },
80: { "forhost", "' for host " },
81: { "activated", " activated" },
82: // END OF MATERIAL TO LOCALIZE
83: };
84: }
|