fix typos and PO issues
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17342 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
a29a67a3b8
commit
b94e505fc4
|
@ -305,67 +305,7 @@ session.flush();]]></programlisting>
|
|||
property, or will actually query the second-level cache or, worst case, the database, to see if the
|
||||
row exists.
|
||||
</para>
|
||||
|
||||
<!-- undocumenting
|
||||
<para>
|
||||
There is one further possibility. The <literal>Interceptor</literal> method named
|
||||
<literal>isUnsaved()</literal> lets the application implement its own strategy for distinguishing
|
||||
newly instantiated objects. For example, you could define a base class for your persistent classes.
|
||||
</para>
|
||||
|
||||
<programlisting><![CDATA[public class Persistent {
|
||||
private boolean _saved = false;
|
||||
public void onSave() {
|
||||
_saved=true;
|
||||
}
|
||||
public void onLoad() {
|
||||
_saved=true;
|
||||
}
|
||||
......
|
||||
public boolean isSaved() {
|
||||
return _saved;
|
||||
}
|
||||
}]]></programlisting>
|
||||
|
||||
<para>
|
||||
(The <literal>saved</literal> property is non-persistent.)
|
||||
Now implement <literal>isUnsaved()</literal>, along with <literal>onLoad()</literal>
|
||||
and <literal>onSave()</literal> as follows.
|
||||
</para>
|
||||
|
||||
<programlisting><![CDATA[public Boolean isUnsaved(Object entity) {
|
||||
if (entity instanceof Persistent) {
|
||||
return new Boolean( !( (Persistent) entity ).isSaved() );
|
||||
}
|
||||
else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean onLoad(Object entity,
|
||||
Serializable id,
|
||||
Object[] state,
|
||||
String[] propertyNames,
|
||||
Type[] types) {
|
||||
|
||||
if (entity instanceof Persistent) ( (Persistent) entity ).onLoad();
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean onSave(Object entity,
|
||||
Serializable id,
|
||||
Object[] state,
|
||||
String[] propertyNames,
|
||||
Type[] types) {
|
||||
|
||||
if (entity instanceof Persistent) ( (Persistent) entity ).onSave();
|
||||
return false;
|
||||
}]]></programlisting>
|
||||
|
||||
<para>
|
||||
Do not worry; in Hibernate3 you do not need to write any of this kind of code if you do not want to.
|
||||
</para>
|
||||
-->
|
||||
</sect1>
|
||||
|
||||
<sect1 id="example-parentchild-conclusion">
|
||||
|
|
|
@ -1334,11 +1334,6 @@ ObjectName on = new ObjectName("hibernate", tb); // MBean object name
|
|||
StatisticsService stats = new StatisticsService(); // MBean implementation
|
||||
server.registerMBean(stats, on); // Register the MBean on the server]]></programlisting>
|
||||
|
||||
<!--<para>
|
||||
TODO: This does not make sense: In the first case, we retrieve and use the MBean directly. In the second one, we must give
|
||||
the JNDI name in which the session factory is held before using it. Use
|
||||
<literal>hibernateStatsBean.setSessionFactoryJNDIName("my/JNDI/Name")</literal>
|
||||
</para>-->
|
||||
<para>
|
||||
You can activate and deactivate the monitoring for a <literal>SessionFactory</literal>:
|
||||
</para>
|
||||
|
|
|
@ -703,12 +703,5 @@ public class MyEntityTuplizer extends PojoEntityTuplizer {
|
|||
</para>
|
||||
</sect1>
|
||||
|
||||
<!--<sect1 id="persistent-classes-extensions">
|
||||
<title>Extensions</title>
|
||||
<para>
|
||||
TODO: Document user-extension framework in the property and proxy packages
|
||||
</para>
|
||||
</sect1>-->
|
||||
|
||||
</chapter>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-23 18:41+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Language es-ES translations for PACKAGE package.
|
||||
# Language es-ES translations for Branch package.
|
||||
# Automatically generated, 2009.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Project-Id-Version: Branch 3_3\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"PO-Revision-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-16 18:47+0000\n"
|
||||
"PO-Revision-Date: 2009-06-16 18:47+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -27,7 +27,7 @@ msgid ""
|
|||
msgstr "Una visión a (muy) alto nivel de la arquitectura de Hibernate:"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:48
|
||||
#: architecture.xml:50
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We do not have the scope in this document to provide a more detailed view of "
|
||||
|
@ -43,7 +43,7 @@ msgstr ""
|
|||
"mínimo subconjunto de la API de Hibernate:"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:54
|
||||
#: architecture.xml:56
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"This next diagram illustrates how Hibernate utilizes database and "
|
||||
|
@ -55,7 +55,7 @@ msgstr ""
|
|||
"persistentes) a la aplicación."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:59
|
||||
#: architecture.xml:61
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The \"minimal\" architecture has the application provide its own JDBC "
|
||||
|
@ -70,7 +70,7 @@ msgstr ""
|
|||
"mínimo subconjunto de la API de Hibernate:"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:74
|
||||
#: architecture.xml:78
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The \"comprehensive\" architecture abstracts the application away from the "
|
||||
|
@ -80,19 +80,19 @@ msgstr ""
|
|||
"JDBC/JTA y deja que Hibernate se encargue de los detalles."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:88
|
||||
#: architecture.xml:92
|
||||
#, fuzzy, no-c-format
|
||||
msgid "Here are some definitions of the objects depicted in the diagrams:"
|
||||
msgstr "He aquí algunas definiciones de los objetos en los diagramas:"
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:93
|
||||
#: architecture.xml:97
|
||||
#, no-c-format
|
||||
msgid "SessionFactory (<literal>org.hibernate.SessionFactory</literal>)"
|
||||
msgstr "SessionFactory (<literal>org.hibernate.SessionFactory</literal>)"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:95
|
||||
#: architecture.xml:99
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"A threadsafe, immutable cache of compiled mappings for a single database. A "
|
||||
|
@ -108,13 +108,13 @@ msgstr ""
|
|||
"nivel de proceso o de cluster."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:105
|
||||
#: architecture.xml:109
|
||||
#, no-c-format
|
||||
msgid "Session (<literal>org.hibernate.Session</literal>)"
|
||||
msgstr "Session (<literal>org.hibernate.Session</literal>)"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:107
|
||||
#: architecture.xml:111
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"A single-threaded, short-lived object representing a conversation between "
|
||||
|
@ -131,13 +131,13 @@ msgstr ""
|
|||
"objetos por identificador."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:117
|
||||
#: architecture.xml:121
|
||||
#, no-c-format
|
||||
msgid "Persistent objects and collections"
|
||||
msgstr "Objetos y colecciones persistentes"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:119
|
||||
#: architecture.xml:123
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Short-lived, single threaded objects containing persistent state and "
|
||||
|
@ -158,13 +158,13 @@ msgstr ""
|
|||
"n)."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:129
|
||||
#: architecture.xml:133
|
||||
#, no-c-format
|
||||
msgid "Transient and detached objects and collections"
|
||||
msgstr "Objetos y colecciones transitorios y separados"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:131
|
||||
#: architecture.xml:135
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Instances of persistent classes that are not currently associated with a "
|
||||
|
@ -178,13 +178,13 @@ msgstr ""
|
|||
"haber sido instanciadas por una <literal>Session</literal> cerrada."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:140
|
||||
#: architecture.xml:144
|
||||
#, no-c-format
|
||||
msgid "Transaction (<literal>org.hibernate.Transaction</literal>)"
|
||||
msgstr "Transaction (<literal>org.hibernate.Transaction</literal>)"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:142
|
||||
#: architecture.xml:146
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"(Optional) A single-threaded, short-lived object used by the application to "
|
||||
|
@ -203,7 +203,7 @@ msgstr ""
|
|||
"literal>, nunca es opcional!"
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:153
|
||||
#: architecture.xml:157
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"ConnectionProvider (<literal>org.hibernate.connection.ConnectionProvider</"
|
||||
|
@ -213,7 +213,7 @@ msgstr ""
|
|||
"literal>)"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:155
|
||||
#: architecture.xml:159
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"(Optional) A factory for, and pool of, JDBC connections. It abstracts the "
|
||||
|
@ -228,7 +228,7 @@ msgstr ""
|
|||
"desarrollador."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:163
|
||||
#: architecture.xml:167
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"TransactionFactory (<literal>org.hibernate.TransactionFactory</literal>)"
|
||||
|
@ -236,7 +236,7 @@ msgstr ""
|
|||
"TransactionFactory (<literal>org.hibernate.TransactionFactory</literal>)"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:165
|
||||
#: architecture.xml:169
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"(Optional) A factory for <literal>Transaction</literal> instances. It is not "
|
||||
|
@ -248,13 +248,13 @@ msgstr ""
|
|||
"implementado por el desarrollador."
|
||||
|
||||
#. Tag: emphasis
|
||||
#: architecture.xml:172
|
||||
#: architecture.xml:176
|
||||
#, no-c-format
|
||||
msgid "Extension Interfaces"
|
||||
msgstr "Interfaces de Extensión"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:174
|
||||
#: architecture.xml:178
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate offers a range of optional extension interfaces you can implement "
|
||||
|
@ -267,7 +267,7 @@ msgstr ""
|
|||
"API."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:183
|
||||
#: architecture.xml:187
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Given a \"minimal\" architecture, the application bypasses the "
|
||||
|
@ -281,13 +281,13 @@ msgstr ""
|
|||
"JDBC."
|
||||
|
||||
#. Tag: title
|
||||
#: architecture.xml:191
|
||||
#: architecture.xml:195
|
||||
#, no-c-format
|
||||
msgid "Instance states"
|
||||
msgstr "Estados de instancia"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:192
|
||||
#: architecture.xml:196
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"An instance of a persistent class can be in one of three different states. "
|
||||
|
@ -301,13 +301,13 @@ msgstr ""
|
|||
"de persistencia:"
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:200
|
||||
#: architecture.xml:204
|
||||
#, no-c-format
|
||||
msgid "transient"
|
||||
msgstr "transitorio"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:202
|
||||
#: architecture.xml:206
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The instance is not associated with any persistence context. It has no "
|
||||
|
@ -317,13 +317,13 @@ msgstr ""
|
|||
"persistencia. No tiene identidad persistente (valor de clave primaria)."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:210
|
||||
#: architecture.xml:214
|
||||
#, no-c-format
|
||||
msgid "persistent"
|
||||
msgstr "persistente"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:212
|
||||
#: architecture.xml:216
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The instance is currently associated with a persistence context. It has a "
|
||||
|
@ -340,13 +340,13 @@ msgstr ""
|
|||
"(localización en memoria del objeto)."
|
||||
|
||||
#. Tag: term
|
||||
#: architecture.xml:224
|
||||
#: architecture.xml:228
|
||||
#, no-c-format
|
||||
msgid "detached"
|
||||
msgstr "separado"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:226
|
||||
#: architecture.xml:230
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The instance was once associated with a persistence context, but that "
|
||||
|
@ -363,13 +363,13 @@ msgstr ""
|
|||
"e identidad Java."
|
||||
|
||||
#. Tag: title
|
||||
#: architecture.xml:241
|
||||
#: architecture.xml:245
|
||||
#, no-c-format
|
||||
msgid "JMX Integration"
|
||||
msgstr "Integración JMX"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:243
|
||||
#: architecture.xml:247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"JMX is the J2EE standard for the management of Java components. Hibernate "
|
||||
|
@ -383,7 +383,7 @@ msgstr ""
|
|||
"<literal>org.hibernate.jmx.HibernateService</literal>."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:249
|
||||
#: architecture.xml:253
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For an example of how to deploy Hibernate as a JMX service on the JBoss "
|
||||
|
@ -396,7 +396,7 @@ msgstr ""
|
|||
"usando JMX:"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:257
|
||||
#: architecture.xml:261
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"<emphasis>Session Management</emphasis>: the Hibernate <literal>Session</"
|
||||
|
@ -421,7 +421,7 @@ msgstr ""
|
|||
"<literal>HibernateContext</literal>."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:269
|
||||
#: architecture.xml:273
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"<emphasis>HAR deployment</emphasis>: the Hibernate JMX service is deployed "
|
||||
|
@ -442,7 +442,7 @@ msgstr ""
|
|||
"de mapeo en tu fichero HAR."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:280
|
||||
#: architecture.xml:284
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Consult the JBoss AS user guide for more information about these options."
|
||||
|
@ -451,7 +451,7 @@ msgstr ""
|
|||
"Guía de Usuario del JBoss AS."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:284
|
||||
#: architecture.xml:288
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Another feature available as a JMX service is runtime Hibernate statistics. "
|
||||
|
@ -463,13 +463,13 @@ msgstr ""
|
|||
"\"configuration-optional-statistics\"/>."
|
||||
|
||||
#. Tag: title
|
||||
#: architecture.xml:291
|
||||
#: architecture.xml:295
|
||||
#, no-c-format
|
||||
msgid "JCA Support"
|
||||
msgstr "Soporte JCA:"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:292
|
||||
#: architecture.xml:296
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate can also be configured as a JCA connector. Please see the website "
|
||||
|
@ -481,13 +481,13 @@ msgstr ""
|
|||
"soporte de JCA de Hibernate está aún considerado experimental."
|
||||
|
||||
#. Tag: title
|
||||
#: architecture.xml:299
|
||||
#: architecture.xml:303
|
||||
#, fuzzy, no-c-format
|
||||
msgid "Contextual sessions"
|
||||
msgstr "UNTRANSLATED! Contextual Sessions"
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:300
|
||||
#: architecture.xml:304
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Most applications using Hibernate need some form of \"contextual\" session, "
|
||||
|
@ -511,7 +511,7 @@ msgstr ""
|
|||
"proxy/interception-based contextual sessions."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:309
|
||||
#: architecture.xml:313
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Starting with version 3.0.1, Hibernate added the <literal>SessionFactory."
|
||||
|
@ -536,7 +536,7 @@ msgstr ""
|
|||
"based contextual sessions is all you should ever need to use."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:319
|
||||
#: architecture.xml:323
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"However, as of version 3.1, the processing behind <literal>SessionFactory."
|
||||
|
@ -554,7 +554,7 @@ msgstr ""
|
|||
"pluggability of the scope and context of defining current sessions."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:326
|
||||
#: architecture.xml:330
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"See the Javadocs for the <literal>org.hibernate.context."
|
||||
|
@ -572,7 +572,7 @@ msgstr ""
|
|||
"implementations of this interface."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:336
|
||||
#: architecture.xml:340
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"<literal>org.hibernate.context.JTASessionContext</literal>: current sessions "
|
||||
|
@ -586,7 +586,7 @@ msgstr ""
|
|||
"the Javadocs for details."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:344
|
||||
#: architecture.xml:348
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"<literal>org.hibernate.context.ThreadLocalSessionContext</literal>:current "
|
||||
|
@ -597,7 +597,7 @@ msgstr ""
|
|||
"details."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:350
|
||||
#: architecture.xml:354
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"<literal>org.hibernate.context.ManagedSessionContext</literal>: current "
|
||||
|
@ -611,7 +611,7 @@ msgstr ""
|
|||
"this class, it does never open, flush, or close a <literal>Session</literal>."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:359
|
||||
#: architecture.xml:363
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The first two implementations provide a \"one session - one database "
|
||||
|
@ -640,7 +640,7 @@ msgstr ""
|
|||
"linkend=\"transactions\"/> for more information and code examples."
|
||||
|
||||
#. Tag: para
|
||||
#: architecture.xml:371
|
||||
#: architecture.xml:375
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The <literal>hibernate.current_session_context_class</literal> configuration "
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Language es-ES translations for PACKAGE package.
|
||||
# Language es-ES translations for Branch package.
|
||||
# Automatically generated, 2009.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Project-Id-Version: Branch 3_3\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"PO-Revision-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: 2009-06-10 21:02+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -602,25 +602,25 @@ msgstr ""
|
|||
|
||||
#. Tag: programlisting
|
||||
#: component_mapping.xml:224
|
||||
#, fuzzy, no-c-format
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[<class name=\"OrderLine\">\n"
|
||||
"\n"
|
||||
" \n"
|
||||
" <composite-id name=\"id\" class=\"OrderLineId\">\n"
|
||||
" <key-property name=\"lineId\"/>\n"
|
||||
" <key-property name=\"orderId\"/>\n"
|
||||
" <key-property name=\"customerId\"/>\n"
|
||||
" </composite-id>\n"
|
||||
"\n"
|
||||
" \n"
|
||||
" <property name=\"name\"/>\n"
|
||||
"\n"
|
||||
" \n"
|
||||
" <many-to-one name=\"order\" class=\"Order\"\n"
|
||||
" insert=\"false\" update=\"false\">\n"
|
||||
" <column name=\"orderId\"/>\n"
|
||||
" <column name=\"customerId\"/>\n"
|
||||
" </many-to-one>\n"
|
||||
" ....\n"
|
||||
"\n"
|
||||
" \n"
|
||||
"</class>]]>"
|
||||
msgstr ""
|
||||
"<![CDATA[<class name=\"OrderLine\">\n"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-16 18:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -883,7 +883,7 @@ msgstr "Recuperación por unión externa (outer join)"
|
|||
#: inheritance_mapping.xml:314
|
||||
#, no-c-format
|
||||
msgid "table per class-hierarchy"
|
||||
msgstr "<entry>tabla por jerarquía de clases</entry>"
|
||||
msgstr "tabla por jerarquía de clases"
|
||||
|
||||
#. Tag: literal
|
||||
#: inheritance_mapping.xml:315 inheritance_mapping.xml:326
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -1536,7 +1536,7 @@ msgstr "TreeCache de JBoss"
|
|||
#. Tag: literal
|
||||
#: performance.xml:675
|
||||
#, fuzzy, no-c-format
|
||||
msgid "org.hibernate.cache.jbc.JBossCacheRegionFactory"
|
||||
msgid "org.hibernate.cache.jbc2.JBossCacheRegionFactory"
|
||||
msgstr "org.hibernate.cache.EhCacheProvider"
|
||||
|
||||
#. Tag: entry
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -1105,13 +1105,13 @@ msgstr ""
|
|||
" }]]>"
|
||||
|
||||
#. Tag: title
|
||||
#: persistent_classes.xml:354
|
||||
#: persistent_classes.xml:353
|
||||
#, no-c-format
|
||||
msgid "EntityNameResolvers"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: persistent_classes.xml:356
|
||||
#: persistent_classes.xml:355
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"The <interfacename>org.hibernate.EntityNameResolver</interfacename> "
|
||||
|
@ -1130,7 +1130,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: programlisting
|
||||
#: persistent_classes.xml:368
|
||||
#: persistent_classes.xml:367
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"/**\n"
|
||||
|
@ -1262,7 +1262,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: persistent_classes.xml:370
|
||||
#: persistent_classes.xml:369
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"In order to register an <interfacename>org.hibernate.EntityNameResolver</"
|
||||
|
@ -1270,7 +1270,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: persistent_classes.xml:374
|
||||
#: persistent_classes.xml:373
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Implement a custom <link linkend=\"persistent-classes-tuplizers\">Tuplizer</"
|
||||
|
@ -1279,7 +1279,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: persistent_classes.xml:380
|
||||
#: persistent_classes.xml:379
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Register it with the <classname>org.hibernate.impl.SessionFactoryImpl</"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Language es-ES translations for PACKAGE package.
|
||||
# Language es-ES translations for Branch package.
|
||||
# Automatically generated, 2009.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Project-Id-Version: Branch 3_3\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"PO-Revision-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-23 18:41+0000\n"
|
||||
"PO-Revision-Date: 2009-06-16 18:47+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-16 18:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -88,7 +88,7 @@ msgid ""
|
|||
"instructions. The source code for the tutorial is included in the "
|
||||
"distribution in the <literal>doc/reference/tutorial/</literal> directory."
|
||||
msgstr ""
|
||||
"Lee <xref linkend=\"quickstart\"/> para un tutorial de 30 minutos, usando "
|
||||
"Lee <xref linkend=\"tutorial\"/> para un tutorial de 30 minutos, usando "
|
||||
"Tomcat."
|
||||
|
||||
#. Tag: para
|
||||
|
@ -200,6 +200,21 @@ msgstr ""
|
|||
"proyecto de la suite de productos de código abierto JBoss "
|
||||
"Professional."
|
||||
|
||||
#. Tag: title
|
||||
#: preface.xml:133
|
||||
#, no-c-format
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: preface.xml:134
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Use <ulink url=\"http://opensource.atlassian.com/projects/hibernate"
|
||||
"\">Hibernate JIRA</ulink> to report errors or request enhacements to this "
|
||||
"documentation."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "ROLES_OF_TRANSLATORS"
|
||||
#~ msgstr "<!--TRANS:ROLES_OF_TRANSLATORS-->"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -726,14 +726,14 @@ msgstr ""
|
|||
"Opciones de Línea de Comandos de <literal>SchemaExport</literal>"
|
||||
|
||||
#. Tag: entry
|
||||
#: toolset_guide.xml:307 toolset_guide.xml:457 toolset_guide.xml:527
|
||||
#: toolset_guide.xml:307 toolset_guide.xml:457 toolset_guide.xml:526
|
||||
#, no-c-format
|
||||
msgid "Option"
|
||||
msgstr "Opción"
|
||||
|
||||
#. Tag: entry
|
||||
#: toolset_guide.xml:308 toolset_guide.xml:395 toolset_guide.xml:458
|
||||
#: toolset_guide.xml:528
|
||||
#: toolset_guide.xml:527
|
||||
#, no-c-format
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
@ -799,19 +799,19 @@ msgid "output the ddl script to a file"
|
|||
msgstr "enviar la salida del guión ddl a un fichero"
|
||||
|
||||
#. Tag: literal
|
||||
#: toolset_guide.xml:333 toolset_guide.xml:471 toolset_guide.xml:533
|
||||
#: toolset_guide.xml:333 toolset_guide.xml:471 toolset_guide.xml:532
|
||||
#, no-c-format
|
||||
msgid "--naming=eg.MyNamingStrategy"
|
||||
msgstr "--naming=eg.MyNamingStrategy"
|
||||
|
||||
#. Tag: entry
|
||||
#: toolset_guide.xml:334 toolset_guide.xml:472 toolset_guide.xml:534
|
||||
#: toolset_guide.xml:334 toolset_guide.xml:472 toolset_guide.xml:533
|
||||
#, no-c-format
|
||||
msgid "select a <literal>NamingStrategy</literal>"
|
||||
msgstr "select a <literal>NamingStrategy</literal>"
|
||||
|
||||
#. Tag: literal
|
||||
#: toolset_guide.xml:337 toolset_guide.xml:479 toolset_guide.xml:541
|
||||
#: toolset_guide.xml:337 toolset_guide.xml:479 toolset_guide.xml:540
|
||||
#, no-c-format
|
||||
msgid "--config=hibernate.cfg.xml"
|
||||
msgstr "--config=hibernate.cfg.xml"
|
||||
|
@ -823,13 +823,13 @@ msgid "read Hibernate configuration from an XML file"
|
|||
msgstr "lee la configuración de Hibernate de un fichero XML"
|
||||
|
||||
#. Tag: literal
|
||||
#: toolset_guide.xml:341 toolset_guide.xml:475 toolset_guide.xml:537
|
||||
#: toolset_guide.xml:341 toolset_guide.xml:475 toolset_guide.xml:536
|
||||
#, no-c-format
|
||||
msgid "--properties=hibernate.properties"
|
||||
msgstr "--properties=hibernate.properties"
|
||||
|
||||
#. Tag: entry
|
||||
#: toolset_guide.xml:342 toolset_guide.xml:476 toolset_guide.xml:538
|
||||
#: toolset_guide.xml:342 toolset_guide.xml:476 toolset_guide.xml:537
|
||||
#, no-c-format
|
||||
msgid "read database properties from a file"
|
||||
msgstr "lee las propiedades de base de datos de un fichero"
|
||||
|
@ -1089,7 +1089,7 @@ msgid "do not export the script to the database"
|
|||
msgstr "don't export the script to the database"
|
||||
|
||||
#. Tag: entry
|
||||
#: toolset_guide.xml:480 toolset_guide.xml:542
|
||||
#: toolset_guide.xml:480 toolset_guide.xml:541
|
||||
#, no-c-format
|
||||
msgid "specify a <literal>.cfg.xml</literal> file"
|
||||
msgstr "specify a <literal>.cfg.xml</literal> file"
|
||||
|
@ -1190,28 +1190,20 @@ msgstr ""
|
|||
"<literal>org.hibernate.tool.hbm2ddl.SchemaValidator</literal> "
|
||||
"<emphasis>options mapping_files</emphasis>"
|
||||
|
||||
#. Tag: para
|
||||
#: toolset_guide.xml:518
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The following table displays the <literal>SchemaValidator</literal> command "
|
||||
"line options:"
|
||||
msgstr "<literal>SchemaValidator</literal> Command Line Options"
|
||||
|
||||
#. Tag: title
|
||||
#: toolset_guide.xml:521
|
||||
#: toolset_guide.xml:520
|
||||
#, no-c-format
|
||||
msgid "<literal>SchemaValidator</literal> Command Line Options"
|
||||
msgstr "<literal>SchemaValidator</literal> Command Line Options"
|
||||
|
||||
#. Tag: para
|
||||
#: toolset_guide.xml:548
|
||||
#: toolset_guide.xml:547
|
||||
#, fuzzy, no-c-format
|
||||
msgid "You can embed <literal>SchemaValidator</literal> in your application:"
|
||||
msgstr "You may embed <literal>SchemaValidator</literal> in your application:"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: toolset_guide.xml:552
|
||||
#: toolset_guide.xml:551
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Configuration cfg = ....;\n"
|
||||
|
@ -1222,19 +1214,19 @@ msgstr ""
|
|||
"(cfg).validate();]]>"
|
||||
|
||||
#. Tag: title
|
||||
#: toolset_guide.xml:557
|
||||
#: toolset_guide.xml:556
|
||||
#, no-c-format
|
||||
msgid "Using Ant for schema validation"
|
||||
msgstr "Using Ant for schema validation"
|
||||
|
||||
#. Tag: para
|
||||
#: toolset_guide.xml:559
|
||||
#: toolset_guide.xml:558
|
||||
#, no-c-format
|
||||
msgid "You can call <literal>SchemaValidator</literal> from the Ant script:"
|
||||
msgstr "You can call <literal>SchemaValidator</literal> from the Ant script:"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: toolset_guide.xml:563
|
||||
#: toolset_guide.xml:562
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[<target name=\"schemavalidate\">\n"
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-23 18:41+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-10 21:02+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-06-16 18:47+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -577,13 +577,13 @@ msgstr ""
|
|||
"pire des cas, à la base de données, pour voir si la ligne existe."
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr "Conclusion"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The sections we have just covered can be a bit confusing. However, in "
|
||||
|
@ -596,7 +596,7 @@ msgstr ""
|
|||
"pattern père / fils."
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We mentioned an alternative in the first paragraph. None of the above issues "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2495,7 +2495,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can activate and deactivate the monitoring for a "
|
||||
|
@ -2504,7 +2504,7 @@ msgstr ""
|
|||
"Vous pouvez (dés)activer le suivi pour une <literal>SessionFactory</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at configuration time, set <literal>hibernate.generate_statistics</literal> "
|
||||
|
@ -2514,7 +2514,7 @@ msgstr ""
|
|||
"generate_statistics</literal> à <literal>false</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> "
|
||||
|
@ -2524,7 +2524,7 @@ msgstr ""
|
|||
"literal> ou <literal>hibernateStatsBean.setStatisticsEnabled(true)</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Statistics can be reset programmatically using the <literal>clear()</"
|
||||
|
@ -2537,13 +2537,13 @@ msgstr ""
|
|||
"literal>"
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr "Métriques"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate provides a number of metrics, from basic information to more "
|
||||
|
@ -2557,7 +2557,7 @@ msgstr ""
|
|||
"l'API de l'interface <literal>Statistics</literal> dans trois catégories :"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the general <literal>Session</literal> usage, such as "
|
||||
|
@ -2568,7 +2568,7 @@ msgstr ""
|
|||
"récupérées, etc..."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the entities, collections, queries, and caches as a whole "
|
||||
|
@ -2578,7 +2578,7 @@ msgstr ""
|
|||
"leur ensemble (métriques globales),"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Detailed metrics related to a particular entity, collection, query or cache "
|
||||
|
@ -2588,7 +2588,7 @@ msgstr ""
|
|||
"ou une région de cache particulière."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For example, you can check the cache hit, miss, and put ratio of entities, "
|
||||
|
@ -2605,7 +2605,7 @@ msgstr ""
|
|||
"n'offre qu'une précision de l'ordre de 10 secondes."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Simple getters are used to access the global metrics (i.e. not tied to a "
|
||||
|
@ -2630,7 +2630,7 @@ msgstr ""
|
|||
"simple :"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -2652,7 +2652,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can work on all entities, collections, queries and region caches, by "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -565,13 +565,13 @@ msgstr ""
|
|||
"ます。"
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr "結論"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The sections we have just covered can be a bit confusing. However, in "
|
||||
|
@ -583,7 +583,7 @@ msgstr ""
|
|||
"リケーションでは、多くの場面で親子パターンを使用します。"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We mentioned an alternative in the first paragraph. None of the above issues "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2402,7 +2402,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can activate and deactivate the monitoring for a "
|
||||
|
@ -2412,7 +2412,7 @@ msgstr ""
|
|||
"とが出来ます。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at configuration time, set <literal>hibernate.generate_statistics</literal> "
|
||||
|
@ -2422,7 +2422,7 @@ msgstr ""
|
|||
"<literal>false</literal> にします"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> "
|
||||
|
@ -2433,7 +2433,7 @@ msgstr ""
|
|||
"び出します"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Statistics can be reset programmatically using the <literal>clear()</"
|
||||
|
@ -2445,13 +2445,13 @@ msgstr ""
|
|||
"ることが出来ます (infoレベルです)。"
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr "メトリクス"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate provides a number of metrics, from basic information to more "
|
||||
|
@ -2463,7 +2463,7 @@ msgstr ""
|
|||
"literal> インターフェイスのAPIに書かれており、3つの分類があります。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the general <literal>Session</literal> usage, such as "
|
||||
|
@ -2473,7 +2473,7 @@ msgstr ""
|
|||
"オープンしたセッションの数がJDBCコネクションと関連しているのと同じです。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the entities, collections, queries, and caches as a whole "
|
||||
|
@ -2483,7 +2483,7 @@ msgstr ""
|
|||
"(別名はグローバルメトリクスです)。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Detailed metrics related to a particular entity, collection, query or cache "
|
||||
|
@ -2493,7 +2493,7 @@ msgstr ""
|
|||
"関係しています。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For example, you can check the cache hit, miss, and put ratio of entities, "
|
||||
|
@ -2508,7 +2508,7 @@ msgstr ""
|
|||
"によっては10秒単位でしか正確でないかもしれません。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Simple getters are used to access the global metrics (i.e. not tied to a "
|
||||
|
@ -2531,7 +2531,7 @@ msgstr ""
|
|||
"literal> APIのjavadocを 参照してください。以下のコードは簡単な例です。"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -2553,7 +2553,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can work on all entities, collections, queries and region caches, by "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -566,13 +566,13 @@ msgstr ""
|
|||
"존재하는지를 알기 위해 데이터베이스를 질의할 것이다."
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr "결론"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The sections we have just covered can be a bit confusing. However, in "
|
||||
|
@ -584,7 +584,7 @@ msgstr ""
|
|||
"들은 많은 장소들에서 부모/자식 패턴을 사용한다."
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We mentioned an alternative in the first paragraph. None of the above issues "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2418,7 +2418,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can activate and deactivate the monitoring for a "
|
||||
|
@ -2428,7 +2428,7 @@ msgstr ""
|
|||
"수 있다"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at configuration time, set <literal>hibernate.generate_statistics</literal> "
|
||||
|
@ -2438,7 +2438,7 @@ msgstr ""
|
|||
"<literal>false</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> "
|
||||
|
@ -2448,7 +2448,7 @@ msgstr ""
|
|||
"는 <literal>hibernateStatsBean.setStatisticsEnabled(true)</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Statistics can be reset programmatically using the <literal>clear()</"
|
||||
|
@ -2460,13 +2460,13 @@ msgstr ""
|
|||
"를 사용하여 logger(info 레벨)에게 전송될 수 있다."
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr "Metrics"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate provides a number of metrics, from basic information to more "
|
||||
|
@ -2480,7 +2480,7 @@ msgstr ""
|
|||
"다:"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the general <literal>Session</literal> usage, such as "
|
||||
|
@ -2490,7 +2490,7 @@ msgstr ""
|
|||
"<literal>Session</literal> 사용에 관련된 metrics."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the entities, collections, queries, and caches as a whole "
|
||||
|
@ -2500,7 +2500,7 @@ msgstr ""
|
|||
"metrics로 알려져 있음),"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Detailed metrics related to a particular entity, collection, query or cache "
|
||||
|
@ -2508,7 +2508,7 @@ msgid ""
|
|||
msgstr "특정한 엔티티, 콜렉션, 질의 또는 캐시 영역에 관련된 상세 metrics."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For example, you can check the cache hit, miss, and put ratio of entities, "
|
||||
|
@ -2524,7 +2524,7 @@ msgstr ""
|
|||
"있다."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Simple getters are used to access the global metrics (i.e. not tied to a "
|
||||
|
@ -2548,7 +2548,7 @@ msgstr ""
|
|||
"준다:"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -2570,7 +2570,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can work on all entities, collections, queries and region caches, by "
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
|
||||
|
@ -378,19 +378,19 @@ msgid "This may be suitable for the case of a generated identifier, but what abo
|
|||
msgstr ""
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, no-c-format
|
||||
msgid "The sections we have just covered can be a bit confusing. However, in practice, it all works out nicely. Most Hibernate applications use the parent/child pattern in many places."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, no-c-format
|
||||
msgid "We mentioned an alternative in the first paragraph. None of the above issues exist in the case of <literal><composite-element></literal> mappings, which have exactly the semantics of a parent/child relationship. Unfortunately, there are two big limitations with composite element classes: composite elements cannot own collections and they should not be the child of any entity other than the unique parent."
|
||||
msgstr ""
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
|
||||
|
@ -1467,73 +1467,73 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, no-c-format
|
||||
msgid "You can activate and deactivate the monitoring for a <literal>SessionFactory</literal>:"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid "at configuration time, set <literal>hibernate.generate_statistics</literal> to <literal>false</literal>"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid "at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> or <literal>hibernateStatsBean.setStatisticsEnabled(true)</literal>"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, no-c-format
|
||||
msgid "Statistics can be reset programmatically using the <literal>clear()</literal> method. A summary can be sent to a logger (info level) using the <literal>logSummary()</literal> method."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, no-c-format
|
||||
msgid "Hibernate provides a number of metrics, from basic information to more specialized information that is only relevant in certain scenarios. All available counters are described in the <literal>Statistics</literal> interface API, in three categories:"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid "Metrics related to the general <literal>Session</literal> usage, such as number of open sessions, retrieved JDBC connections, etc."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, no-c-format
|
||||
msgid "Metrics related to the entities, collections, queries, and caches as a whole (aka global metrics)."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid "Detailed metrics related to a particular entity, collection, query or cache region."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, no-c-format
|
||||
msgid "For example, you can check the cache hit, miss, and put ratio of entities, collections and queries, and the average time a query needs. Be aware that the number of milliseconds is subject to approximation in Java. Hibernate is tied to the JVM precision and on some platforms this might only be accurate to 10 seconds."
|
||||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, no-c-format
|
||||
msgid "Simple getters are used to access the global metrics (i.e. not tied to a particular entity, collection, cache region, etc.). You can access the metrics of a particular entity, collection or cache region through its name, and through its HQL or SQL representation for queries. Please refer to the <literal>Statistics</literal>, <literal>EntityStatistics</literal>, <literal>CollectionStatistics</literal>, <literal>SecondLevelCacheStatistics</literal>, and <literal>QueryStatistics</literal> API Javadoc for more information. The following code is a simple example:"
|
||||
msgstr ""
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -1555,7 +1555,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, no-c-format
|
||||
msgid "You can work on all entities, collections, queries and region caches, by retrieving the list of names of entities, collections, queries and region caches using the following methods: <literal>getQueries()</literal>, <literal>getEntityNames()</literal>, <literal>getCollectionRoleNames()</literal>, and <literal>getSecondLevelCacheRegionNames()</literal>."
|
||||
msgstr ""
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -567,13 +567,13 @@ msgstr ""
|
|||
"exists."
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr "Conclusion"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The sections we have just covered can be a bit confusing. However, in "
|
||||
|
@ -585,7 +585,7 @@ msgstr ""
|
|||
"applications use the parent / child pattern in many places."
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We mentioned an alternative in the first paragraph. None of the above issues "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2431,7 +2431,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can activate and deactivate the monitoring for a "
|
||||
|
@ -2440,7 +2440,7 @@ msgstr ""
|
|||
"You can (de)activate the monitoring for a <literal>SessionFactory</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at configuration time, set <literal>hibernate.generate_statistics</literal> "
|
||||
|
@ -2450,7 +2450,7 @@ msgstr ""
|
|||
"to <literal>false</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> "
|
||||
|
@ -2460,7 +2460,7 @@ msgstr ""
|
|||
"or <literal>hibernateStatsBean.setStatisticsEnabled(true)</literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Statistics can be reset programmatically using the <literal>clear()</"
|
||||
|
@ -2472,13 +2472,13 @@ msgstr ""
|
|||
"<literal>logSummary()</literal> method."
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr "Metrics"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate provides a number of metrics, from basic information to more "
|
||||
|
@ -2492,7 +2492,7 @@ msgstr ""
|
|||
"categories:"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the general <literal>Session</literal> usage, such as "
|
||||
|
@ -2502,7 +2502,7 @@ msgstr ""
|
|||
"number of open sessions, retrieved JDBC connections, etc."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the entities, collections, queries, and caches as a whole "
|
||||
|
@ -2512,7 +2512,7 @@ msgstr ""
|
|||
"(aka global metrics),"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Detailed metrics related to a particular entity, collection, query or cache "
|
||||
|
@ -2522,7 +2522,7 @@ msgstr ""
|
|||
"region."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For example, you can check the cache hit, miss, and put ratio of entities, "
|
||||
|
@ -2538,7 +2538,7 @@ msgstr ""
|
|||
"accurate to 10 seconds."
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Simple getters are used to access the global metrics (i.e. not tied to a "
|
||||
|
@ -2562,7 +2562,7 @@ msgstr ""
|
|||
"example:"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -2584,7 +2584,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can work on all entities, collections, queries and region caches, by "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:55+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -537,13 +537,13 @@ msgstr ""
|
|||
"查询第二级缓存,或者最坏的情况,查询数据库,来确认是否此行存在。"
|
||||
|
||||
#. Tag: title
|
||||
#: example_parentchild.xml:284
|
||||
#: example_parentchild.xml:263
|
||||
#, no-c-format
|
||||
msgid "Conclusion"
|
||||
msgstr "结论"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:286
|
||||
#: example_parentchild.xml:265
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"The sections we have just covered can be a bit confusing. However, in "
|
||||
|
@ -554,7 +554,7 @@ msgstr ""
|
|||
"常好。大部分Hibernate应用程序都会经常用到父子对象模式。"
|
||||
|
||||
#. Tag: para
|
||||
#: example_parentchild.xml:291
|
||||
#: example_parentchild.xml:270
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"We mentioned an alternative in the first paragraph. None of the above issues "
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2009-07-14 19:56+0000\n"
|
||||
"POT-Creation-Date: 2009-08-17 20:22+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -2289,7 +2289,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1233
|
||||
#: performance.xml:1228
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can activate and deactivate the monitoring for a "
|
||||
|
@ -2298,7 +2298,7 @@ msgstr ""
|
|||
"你可以通过以下方法打开或关闭<literal>SessionFactory</literal>的监测功能:"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1238
|
||||
#: performance.xml:1233
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at configuration time, set <literal>hibernate.generate_statistics</literal> "
|
||||
|
@ -2308,7 +2308,7 @@ msgstr ""
|
|||
"<literal>true</literal>或<literal>false</literal>;"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1245
|
||||
#: performance.xml:1240
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"at runtime: <literal>sf.getStatistics().setStatisticsEnabled(true)</literal> "
|
||||
|
@ -2319,7 +2319,7 @@ msgstr ""
|
|||
"literal>"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1252
|
||||
#: performance.xml:1247
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Statistics can be reset programmatically using the <literal>clear()</"
|
||||
|
@ -2330,13 +2330,13 @@ msgstr ""
|
|||
"<literal>logSummary()</literal> 在日志中记录(info级别)其总结。"
|
||||
|
||||
#. Tag: title
|
||||
#: performance.xml:1261
|
||||
#: performance.xml:1256
|
||||
#, no-c-format
|
||||
msgid "Metrics"
|
||||
msgstr "数据记录(Metrics)"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1263
|
||||
#: performance.xml:1258
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Hibernate provides a number of metrics, from basic information to more "
|
||||
|
@ -2349,7 +2349,7 @@ msgstr ""
|
|||
"分为三类:"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1270
|
||||
#: performance.xml:1265
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the general <literal>Session</literal> usage, such as "
|
||||
|
@ -2359,7 +2359,7 @@ msgstr ""
|
|||
"JDBC的连接数等;"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1276
|
||||
#: performance.xml:1271
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Metrics related to the entities, collections, queries, and caches as a whole "
|
||||
|
@ -2367,7 +2367,7 @@ msgid ""
|
|||
msgstr "实体、集合、查询、缓存等内容的统一数据记录"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1282
|
||||
#: performance.xml:1277
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"Detailed metrics related to a particular entity, collection, query or cache "
|
||||
|
@ -2375,7 +2375,7 @@ msgid ""
|
|||
msgstr "和具体实体、集合、查询、缓存相关的详细数据记录"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1289
|
||||
#: performance.xml:1284
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"For example, you can check the cache hit, miss, and put ratio of entities, "
|
||||
|
@ -2389,7 +2389,7 @@ msgstr ""
|
|||
"精度和具体的JVM有关,在有些平台上其精度甚至只能精确到10秒。"
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1296
|
||||
#: performance.xml:1291
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"Simple getters are used to access the global metrics (i.e. not tied to a "
|
||||
|
@ -2410,7 +2410,7 @@ msgstr ""
|
|||
"literal>的API文档以抓取更多信息。下面的代码则是个简单的例子:"
|
||||
|
||||
#. Tag: programlisting
|
||||
#: performance.xml:1306
|
||||
#: performance.xml:1301
|
||||
#, no-c-format
|
||||
msgid ""
|
||||
"<![CDATA[Statistics stats = HibernateUtil.sessionFactory.getStatistics();\n"
|
||||
|
@ -2432,7 +2432,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. Tag: para
|
||||
#: performance.xml:1308
|
||||
#: performance.xml:1303
|
||||
#, fuzzy, no-c-format
|
||||
msgid ""
|
||||
"You can work on all entities, collections, queries and region caches, by "
|
||||
|
|
Loading…
Reference in New Issue