blob: 8722ba3afadfb6b01b5dcbc5364a3e6ce7b65068 [file] [log] [blame]
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved.
#
# Oracle and Java are registered trademarks of Oracle and/or its affiliates.
# Other names may be trademarks of their respective owners.
#
# The contents of this file are subject to the terms of either the GNU
# General Public License Version 2 only ("GPL") or the Common
# Development and Distribution License("CDDL") (collectively, the
# "License"). You may not use this file except in compliance with the
# License. You can obtain a copy of the License at
# http://www.netbeans.org/cddl-gplv2.html
# or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
# specific language governing permissions and limitations under the
# License. When distributing the software, include this License Header
# Notice in each file and include the License file at
# nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the GPL Version 2 section of the License file that
# accompanied this code. If applicable, add the following below the
# License Header, with the fields enclosed by brackets [] replaced by
# your own identifying information:
# "Portions Copyrighted [year] [name of copyright owner]"
#
# Contributor(s):
#
#The Original Software is NetBeans. The Initial Developer of the Original
# Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
#Microsystems, Inc. All Rights Reserved.
#
# If you wish your version of this file to be governed by only the CDDL
# or only the GPL Version 2, indicate your decision by adding
# "[Contributor] elects to include this software in this distribution
# under the [CDDL or GPL Version 2] license." If you do not indicate a
# single choice of license, a recipient has the option to distribute
# your version of this file under either the CDDL, the GPL Version 2 or
# to extend the choice of license to its licensees as provided above.
# However, if you add GPL Version 2 code and therefore, elected the GPL
# Version 2 license, then the option applies only if the new code is
# made subject to such option by the copyright holder.
#
# This file contains localized strings used in this package. The typical
# NetBeans pattern is to use one bundle per-package, called Bundle.properties;
# the openide class NbBundle supports this usage.
#
# Typically, fetch a resource as follows:
# NbBundle.getMessage (MyClass.class, "SOME_Key");
#
# Don't bother caching strings or worse, static references to resource bundles -
# this may seem like its faster, but it wastes memory and slows things down
# in the long run.
#
MSG_NonPublicClassAsEntity=Una classe entit\u00e0 deve essere public.
MSG_FinalClassAsEntity=Una classe entit\u00e0 non pu\u00f2 essere final.
MSG_HasNoNoArgConstructor=La classe dovrebbe avere un costruttore senza argomenti, public o protected.
MSG_NestedClassAsEntity=Una classe entit\u00e0 deve essere una classe di levello pi\u00f9 alto.
MSG_NonSerializableClass=An entity or IdClass class should implement the java.io.Serializable interface.
MSG_InnerClassAsIdClass=Una classe interna non pu\u00f2 essere usata come IdClass. Renderla una classe static annidata.
MSG_IdClassDoesNotOverrideEquals=La classe IdClass deve coprire i metodi equals(Object o) e hashCode().
MSG_IdClassDoesNotOverrideHashCode=La classe IdClass non sovrascrive il metodo hashCode().
MSG_NoIdDefinedInHierarchy=Nessun ID definito per questa gerarchia di entit\u00e0.
MSG_MissingIdField=I seguenti campi si trovano solo in IdClass:[ {0} ]
MSG_MissingIdProperty=I seguenti accessori si trovano solo in IdClass:[ {0} ]
Msg_NoIdClass=Ci sono diversi ID in questa classe entit\u00e0, ma non \u00e8 definito alcun IdClass.
MSG_ClassNamedWithJavaPersistenceQLKeyword=L'entit\u00e0 nome tabella \u00e8 una parola chiave riservata di Java Persistence QL.
MSG_InvalidPersistenceQLIdentifier=L'entit\u00e0 nome tabella non \u00e8 un identificatore valido di Java Persistence QL.
MSG_ClassNamedWithReservedSQLKeyword=Lenti\u00e0 nome tabella \u00e8 una parola riservata di SQL-99.
MSG_IdClassUsedByNonEntity=Questa classe non pu\u00f2 usare un IdClass perch\u00e8 essa non e una entit\u00e0 e nemmeno una MappedSuperclass.
MSG_EntitySubclassHasIdClass=Una entit\u00e0 sub-class non pu\u00f2 avere un IdClass perch\u00e8 altrimenti si avrebbero multipli ID nella gerarchia delle entit\u00e0.
MSG_MissingPersistenceUnitHint=Il progetto non contiene una unit\u00e0 persistente
MSG_InconsistentAccessType=La classe deve usare un tipo di accesso consistente (un campo o una propriet\u00e0).
MSG_NonUniqueEntityName=Nome della entit\u00e0 duplicato. La classe {0} sta usando lo stesso nome.
MSG_IllegalAnnotationCombination=Combinazione di annotazioni non permessa: {0} e {1}
MSG_JPAAnnotsOnlyOnAccesor=Solo alla propriet\u00e0 metodo getter \u00e8 permesso avere una annotazione Java Persistence come {0}.
MSG_QueriesProperlyDefined=Le query con nome possono essere definite solo in una classe entit\u00e0 o MappedSuperclass.
MSG_OnlyEntityOrMappedSuperclassCanUseIdClass=Solo le entit\u00e0 o le MappedSuperclass possono usare IdClass.