gatein SVN: r1332 - in portal/trunk/webui/core/src: main/java/org/exoplatform/webui/application/replication/serial and 1 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-01-16 07:38:39 -0500 (Sat, 16 Jan 2010)
New Revision: 1332
Modified:
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java
portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java
Log:
a bit more type safe
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java 2010-01-16 12:08:06 UTC (rev 1331)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java 2010-01-16 12:38:39 UTC (rev 1332)
@@ -30,14 +30,14 @@
public final class DefaultObjectFactory extends ObjectFactory<Object>
{
@Override
- public <S> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException
+ public <S> S create(Class<S> type, Map<FieldModel<? super S, ?>, ?> state) throws CreateException
{
try
{
S instance = type.newInstance();
//
- for (Map.Entry<FieldModel<?, ?>, ?> entry : state.entrySet())
+ for (Map.Entry<FieldModel<? super S, ?>, ?> entry : state.entrySet())
{
FieldModel<?, ?> fieldModel = entry.getKey();
Object value = entry.getValue();
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java 2010-01-16 12:08:06 UTC (rev 1331)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java 2010-01-16 12:38:39 UTC (rev 1332)
@@ -40,6 +40,6 @@
* @return the S instance
* @throws CreateException anything wrong that could happen during instance creation
*/
- public abstract <S extends B> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException;
+ public abstract <S extends B> S create(Class<S> type, Map<FieldModel<? super S, ?>, ?> state) throws CreateException;
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java 2010-01-16 12:08:06 UTC (rev 1331)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java 2010-01-16 12:38:39 UTC (rev 1332)
@@ -42,7 +42,7 @@
private final Map<Integer, Object> idToObject;
/** . */
- private final Map<Integer, List<Resolution>> idToResolutions;
+ private final Map<Integer, List<FutureFieldUpdate<?>>> idToResolutions;
public ObjectReader(SerializationContext context, InputStream in) throws IOException
{
@@ -54,10 +54,10 @@
//
this.context = context;
this.idToObject = new HashMap<Integer, Object>();
- this.idToResolutions = new HashMap<Integer, List<Resolution>>();
+ this.idToResolutions = new HashMap<Integer, List<FutureFieldUpdate<?>>>();
}
- private <O> O instantiate(ReplicatableTypeModel<O> typeModel, Map<FieldModel<?, ?>, ?> state) throws InvalidClassException
+ private <O> O instantiate(ReplicatableTypeModel<O> typeModel, Map<FieldModel<? super O, ?>, ?> state) throws InvalidClassException
{
try
{
@@ -74,140 +74,141 @@
}
}
- @Override
- protected Object resolveObject(Object obj) throws IOException
+ protected <O> O instantiate(int id, DataContainer container, ReplicatableTypeModel<O> typeModel) throws IOException
{
- if (obj instanceof DataContainer)
+ Map<FieldModel<? super O, ?>, Object> state = new HashMap<FieldModel<? super O, ?>, Object>();
+ TypeModel<? super O> currentTypeModel = typeModel;
+ List<FieldUpdate<O>> sets = new ArrayList<FieldUpdate<O>>();
+ while (currentTypeModel != null)
{
- DataContainer container = (DataContainer) obj;
-
- int id;
- int sw = container.readInt();
- switch (sw)
+ if (currentTypeModel instanceof ReplicatableTypeModel)
{
- case DataKind.OBJECT_REF:
- id = container.readInt();
- Object o1 = idToObject.get(id);
- if (o1 == null)
+ for (FieldModel<? super O, ?> fieldModel : currentTypeModel.getFields())
+ {
+ if (!fieldModel.isTransient())
{
- throw new AssertionError();
- }
- return o1;
- case DataKind.OBJECT:
- id = container.readInt();
- Class<?> clazz = (Class) container.readObject();
-
- ReplicatableTypeModel<?> typeModel = (ReplicatableTypeModel)context.getTypeDomain().getTypeModel(clazz);
-
- //
- Map<FieldModel<?, ?>, Object> state = new HashMap<FieldModel<?, ?>, Object>();
- TypeModel<?> currentTypeModel = typeModel;
- List<Bilto> biltos = new ArrayList<Bilto>();
- while (currentTypeModel != null)
- {
- if (currentTypeModel instanceof ReplicatableTypeModel)
+ switch (container.readInt())
{
- for (FieldModel<?, ?> fieldModel : currentTypeModel.getFields())
- {
- if (!fieldModel.isTransient())
+ case DataKind.NULL_VALUE:
+ state.put(fieldModel, null);
+ break;
+ case DataKind.OBJECT_REF:
+ int refId = container.readInt();
+ Object refO = idToObject.get(refId);
+ if (refO != null)
{
- switch (container.readInt())
- {
- case DataKind.NULL_VALUE:
- state.put(fieldModel, null);
- break;
- case DataKind.OBJECT_REF:
- int refId = container.readInt();
- Object refO = idToObject.get(refId);
- if (refO != null)
- {
- state.put(fieldModel, refO);
- }
- else
- {
- biltos.add(new Bilto(refId, fieldModel));
- }
- break;
- case DataKind.OBJECT:
- Object o = container.readObject();
- state.put(fieldModel, o);
- break;
-
- }
+ state.put(fieldModel, refO);
}
- }
- }
- currentTypeModel = currentTypeModel.getSuperType();
- }
+ else
+ {
+ sets.add(new FieldUpdate<O>(refId, fieldModel));
+ }
+ break;
+ case DataKind.OBJECT:
+ Object o = container.readObject();
+ state.put(fieldModel, o);
+ break;
- //
- Object instance = instantiate(typeModel, state);
-
- //
- for (Bilto bilto : biltos)
- {
- List<Resolution> resolutions = idToResolutions.get(bilto.ref);
- if (resolutions == null)
- {
- resolutions = new ArrayList<Resolution>();
- idToResolutions.put(bilto.ref, resolutions);
}
- resolutions.add(new Resolution(instance, bilto.fieldModel));
}
+ }
+ }
+ currentTypeModel = currentTypeModel.getSuperType();
+ }
- //
- idToObject.put(id, instance);
+ //
+ O instance = instantiate(typeModel, state);
- //
- List<Resolution> resolutions = idToResolutions.remove(id);
- if (resolutions != null)
- {
- for (Resolution resolution : resolutions)
- {
- resolution.fieldModel.set(resolution.target, instance);
- }
- }
-
- //
- return instance;
- default:
- throw new StreamCorruptedException("Unrecognized data " + sw);
+ // Create future field updates
+ for (FieldUpdate<O> set : sets)
+ {
+ List<FutureFieldUpdate<?>> resolutions = idToResolutions.get(set.ref);
+ if (resolutions == null)
+ {
+ resolutions = new ArrayList<FutureFieldUpdate<?>>();
+ idToResolutions.put(set.ref, resolutions);
}
+ resolutions.add(new FutureFieldUpdate<O>(instance, set.fieldModel));
}
- else
+
+ //
+ idToObject.put(id, instance);
+
+ // Resolve future field updates
+ List<FutureFieldUpdate<?>> resolutions = idToResolutions.remove(id);
+ if (resolutions != null)
{
- return obj;
+ for (FutureFieldUpdate<?> resolution : resolutions)
+ {
+ resolution.fieldModel.castAndSet(resolution.target, instance);
+ }
}
+
+ //
+ return instance;
}
- private static class Bilto
+ private static class FieldUpdate<O>
{
/** . */
private final int ref;
/** . */
- private final FieldModel fieldModel;
+ private final FieldModel<? super O, ?> fieldModel;
- private Bilto(int ref, FieldModel fieldModel)
+ private FieldUpdate(int ref, FieldModel<? super O, ?> fieldModel)
{
this.ref = ref;
this.fieldModel = fieldModel;
}
}
- private static class Resolution
+ private static class FutureFieldUpdate<O>
{
/** . */
- private final Object target;
+ private final O target;
/** . */
- private final FieldModel fieldModel;
+ private final FieldModel<? super O, ?> fieldModel;
- private Resolution(Object target, FieldModel fieldModel)
+ private FutureFieldUpdate(O target, FieldModel<? super O, ?> fieldModel)
{
this.target = target;
this.fieldModel = fieldModel;
}
}
+ @Override
+ protected Object resolveObject(Object obj) throws IOException
+ {
+ if (obj instanceof DataContainer)
+ {
+ DataContainer container = (DataContainer) obj;
+
+ int id;
+ int sw = container.readInt();
+ switch (sw)
+ {
+ case DataKind.OBJECT_REF:
+ id = container.readInt();
+ Object o1 = idToObject.get(id);
+ if (o1 == null)
+ {
+ throw new AssertionError();
+ }
+ return o1;
+ case DataKind.OBJECT:
+ id = container.readInt();
+ Class<?> clazz = (Class) container.readObject();
+ ReplicatableTypeModel<?> typeModel = (ReplicatableTypeModel)context.getTypeDomain().getTypeModel(clazz);
+ return instantiate(id, container, typeModel);
+ default:
+ throw new StreamCorruptedException("Unrecognized data " + sw);
+ }
+ }
+ else
+ {
+ return obj;
+ }
+ }
}
Modified: portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java
===================================================================
--- portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java 2010-01-16 12:08:06 UTC (rev 1331)
+++ portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java 2010-01-16 12:38:39 UTC (rev 1332)
@@ -35,7 +35,7 @@
static A2 instance = new A2();
@Override
- public <S extends A2> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException
+ public <S extends A2> S create(Class<S> type, Map<FieldModel<? super S, ?>, ?> state) throws CreateException
{
if (type == A2.class)
{
16 years, 3 months
gatein SVN: r1331 - in portal/trunk/webui/core/src: main/java/org/exoplatform/webui/application/replication/model and 3 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2010-01-16 07:08:06 -0500 (Sat, 16 Jan 2010)
New Revision: 1331
Modified:
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ClassTypeModel.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/FieldModel.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ReplicatableTypeModel.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeDomain.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeModel.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java
portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectWriter.java
portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/TestTypeModel.java
portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java
Log:
make replication framework more type safe
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/DefaultObjectFactory.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -30,16 +30,18 @@
public final class DefaultObjectFactory extends ObjectFactory<Object>
{
@Override
- public <S> S create(Class<S> type, Map<FieldModel, ?> state) throws CreateException
+ public <S> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException
{
try
{
S instance = type.newInstance();
//
- for (Map.Entry<FieldModel, ?> entry : state.entrySet())
+ for (Map.Entry<FieldModel<?, ?>, ?> entry : state.entrySet())
{
- entry.getKey().setValue(instance, entry.getValue());
+ FieldModel<?, ?> fieldModel = entry.getKey();
+ Object value = entry.getValue();
+ fieldModel.castAndSet(instance, value);
}
//
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/factory/ObjectFactory.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -40,6 +40,6 @@
* @return the S instance
* @throws CreateException anything wrong that could happen during instance creation
*/
- public abstract <S extends B> S create(Class<S> type, Map<FieldModel, ?> state) throws CreateException;
+ public abstract <S extends B> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException;
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ClassTypeModel.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ClassTypeModel.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ClassTypeModel.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -25,9 +25,9 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public final class ClassTypeModel<O> extends TypeModel
+public final class ClassTypeModel<O> extends TypeModel<O>
{
- ClassTypeModel(Class<?> type, TypeModel superType, Map<String, FieldModel> fields)
+ ClassTypeModel(Class<O> type, TypeModel<? super O> superType, Map<String, FieldModel<O, ?>> fields)
{
super(type, superType, fields);
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/FieldModel.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/FieldModel.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/FieldModel.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -26,25 +26,34 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public final class FieldModel
+public final class FieldModel<O, V>
{
/** . */
+ private final TypeModel<O> owner;
+
+ /** . */
private final Field field;
/** . */
- private final TypeModel type;
+ private final TypeModel<V> type;
/** . */
private boolean _transient;
- FieldModel(Field field, TypeModel type)
+ FieldModel(TypeModel<O> owner, Field field, TypeModel<V> type)
{
+ this.owner = owner;
this.field = field;
this.type = type;
this._transient = Modifier.isTransient(field.getModifiers());
}
+ public TypeModel<O> getOwner()
+ {
+ return owner;
+ }
+
public String getName()
{
return field.getName();
@@ -55,16 +64,32 @@
return _transient;
}
- public TypeModel getType()
+ public TypeModel<V> getType()
{
return type;
}
- public Object getValue(Object o)
+ public V get(Object o)
{
try
{
- return field.get(o);
+ Object value = field.get(o);
+ if (value == null)
+ {
+ return null;
+ }
+ else
+ {
+ Class<V> valueType = type.getJavaType();
+ if (valueType.isInstance(value))
+ {
+ return valueType.cast(value);
+ }
+ else
+ {
+ throw new ClassCastException("Cannot cast value " + value + " with type " + value.getClass().getName() + " to type " + valueType.getName());
+ }
+ }
}
catch (IllegalAccessException e)
{
@@ -72,8 +97,14 @@
}
}
- public void setValue(Object o, Object value)
+ public void castAndSet(Object o, Object value)
{
+ V v = type.getJavaType().cast(value);
+ set(o, v);
+ }
+
+ public void set(Object o, V value)
+ {
try
{
field.set(o, value);
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ReplicatableTypeModel.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ReplicatableTypeModel.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/ReplicatableTypeModel.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -25,26 +25,14 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public final class ReplicatableTypeModel<O> extends TypeModel
+public final class ReplicatableTypeModel<O> extends TypeModel<O>
{
- /** . */
- private final Class<O> objectType;
-
ReplicatableTypeModel(
Class<O> javaType,
- TypeModel superType,
- Map<String, FieldModel> fields)
+ TypeModel<? super O> superType,
+ Map<String, FieldModel<O, ?>> fields)
{
super(javaType, superType, fields);
-
- //
- this.objectType = javaType;
}
-
- @Override
- public Class<O> getJavaType()
- {
- return objectType;
- }
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeDomain.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeDomain.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeDomain.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -24,6 +24,7 @@
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.*;
+import java.util.concurrent.ConcurrentHashMap;
/**
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
@@ -33,29 +34,48 @@
{
/** . */
+ private static final Map<Class<?>, Class<?>> primitiveToWrapperMap = new HashMap<Class<?>, Class<?>>();
+
+ static
+ {
+ primitiveToWrapperMap.put(byte.class, Byte.class);
+ primitiveToWrapperMap.put(short.class, Short.class);
+ primitiveToWrapperMap.put(int.class, Integer.class);
+ primitiveToWrapperMap.put(long.class, Long.class);
+ primitiveToWrapperMap.put(float.class, Float.class);
+ primitiveToWrapperMap.put(double.class, Double.class);
+ primitiveToWrapperMap.put(boolean.class, Boolean.class);
+ primitiveToWrapperMap.put(char.class, Character.class);
+ }
+
+ /** . */
private final Map<String, TypeModel> typeModelMap;
/** . */
private final Map<String, TypeModel> immutableTypeModelMap;
/** . */
- private final Set<TypeModel> typeModelSet;
+ private final Collection<TypeModel> immutableTypeModelSet;
/** . */
- private final Set<TypeModel> immutableTypeModelSet;
+ private final boolean buildIfAbsent;
public TypeDomain()
{
- HashMap<String, TypeModel> typeModelMap = new HashMap<String, TypeModel>();
+ this(false);
+ }
+
+ public TypeDomain(boolean buildIfAbsent)
+ {
+ ConcurrentHashMap<String, TypeModel> typeModelMap = new ConcurrentHashMap<String, TypeModel>();
Map<String, TypeModel> immutableTypeModelMap = Collections.unmodifiableMap(typeModelMap);
- HashSet<TypeModel> typeModelSet = new HashSet<TypeModel>();
- Set<TypeModel> immutableTypeModelSet = Collections.unmodifiableSet(typeModelSet);
+ Collection<TypeModel> immutableTypeModelSet = Collections.unmodifiableCollection(typeModelMap.values());
//
this.typeModelMap = typeModelMap;
this.immutableTypeModelMap = immutableTypeModelMap;
- this.typeModelSet = typeModelSet;
this.immutableTypeModelSet = immutableTypeModelSet;
+ this.buildIfAbsent = buildIfAbsent;
}
public Map<String, TypeModel> getTypeModelMap()
@@ -63,8 +83,13 @@
return immutableTypeModelMap;
}
- public Set<TypeModel> getTypeModels()
+ public boolean getBuildIfAbsent()
{
+ return buildIfAbsent;
+ }
+
+ public Collection<TypeModel> getTypeModels()
+ {
return immutableTypeModelSet;
}
@@ -83,19 +108,40 @@
{
throw new NullPointerException();
}
- return typeModelMap.get(javaType.getName());
+
+ //
+ TypeModel typeModel = typeModelMap.get(javaType.getName());
+
+ //
+ if (typeModel == null && buildIfAbsent)
+ {
+ typeModel = add(javaType);
+ }
+
+ //
+ return typeModel;
}
- public TypeModel add(Class<?> javaType)
+ // For now that operation is synchronized
+ public synchronized TypeModel add(Class<?> javaType)
{
if (javaType == null)
{
throw new NullPointerException();
}
+
+ // Build the missing types required to have knowledge about the
+ // provided java type
Map<String, TypeModel> addedTypeModels = new HashMap<String, TypeModel>();
TypeModel model = build(javaType, addedTypeModels);
+
+ // Perform merge
typeModelMap.putAll(addedTypeModels);
- typeModelSet.addAll(addedTypeModels.values());
+
+ //
+ System.out.println("Added types " + addedTypeModels.values() + " to replication domain");
+
+ //
return model;
}
@@ -106,15 +152,21 @@
private <O> TypeModel build(Class<O> javaType, Map<String, TypeModel> addedTypeModels)
{
- TypeModel typeModel = get(javaType, addedTypeModels);
+ if (javaType.isPrimitive())
+ {
+ throw new IllegalArgumentException("No primitive type accepted");
+ }
+ // Cast OK
+ TypeModel<O> typeModel = (TypeModel<O>)get(javaType, addedTypeModels);
+
//
if (typeModel == null)
{
boolean replicated = javaType.getAnnotation(ReplicatedType.class) != null;
//
- TypeModel superTypeModel = null;
+ TypeModel<?> superTypeModel = null;
for (Class<?> ancestor = javaType.getSuperclass();ancestor != null;ancestor = ancestor.getSuperclass())
{
superTypeModel = build(ancestor, addedTypeModels);
@@ -125,16 +177,16 @@
}
//
- TreeMap<String, FieldModel> fieldModels = new TreeMap<String, FieldModel>();
+ TreeMap<String, FieldModel<O, ?>> fieldModels = new TreeMap<String, FieldModel<O, ?>>();
//
if (replicated)
{
- typeModel = new ReplicatableTypeModel<O>(javaType, superTypeModel, fieldModels);
+ typeModel = new ReplicatableTypeModel<O>(javaType, (TypeModel<? super O>)superTypeModel, fieldModels);
}
else
{
- typeModel = new ClassTypeModel(javaType, superTypeModel, fieldModels);
+ typeModel = new ClassTypeModel<O>(javaType, (TypeModel<? super O>)superTypeModel, fieldModels);
}
//
@@ -147,10 +199,17 @@
{
field.setAccessible(true);
Class<?> fieldJavaType = field.getType();
- TypeModel fieldTypeModel = build(fieldJavaType, addedTypeModels);
+
+ // Replace if a primitive
+ if (fieldJavaType.isPrimitive())
+ {
+ fieldJavaType = primitiveToWrapperMap.get(fieldJavaType);
+ }
+
+ TypeModel<?> fieldTypeModel = build(fieldJavaType, addedTypeModels);
if (fieldTypeModel != null)
{
- fieldModels.put(field.getName(), new FieldModel(field, fieldTypeModel));
+ fieldModels.put(field.getName(), createField(typeModel, field, fieldTypeModel));
}
}
}
@@ -160,6 +219,11 @@
return typeModel;
}
+ private <O, V> FieldModel<O, V> createField(TypeModel<O> owner, Field field, TypeModel<V> fieldTypeModel)
+ {
+ return new FieldModel<O, V>(owner, field, fieldTypeModel);
+ }
+
private TypeModel get(Class<?> javaType, Map<String, TypeModel> addedTypeModels)
{
TypeModel typeModel = typeModelMap.get(javaType.getName());
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeModel.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeModel.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/model/TypeModel.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -27,22 +27,22 @@
* @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a>
* @version $Revision$
*/
-public abstract class TypeModel
+public abstract class TypeModel<O>
{
/** . */
- private final Class<?> javaType;
+ private final Class<O> javaType;
/** . */
- private final TypeModel superType;
+ private final TypeModel<? super O> superType;
/** . */
- private final Map<String, FieldModel> fields;
+ private final Map<String, FieldModel<O, ?>> fields;
/** . */
- private final Map<String, FieldModel> immutableFields;
+ private final Map<String, FieldModel<O, ?>> immutableFields;
- TypeModel(Class<?> javaType, TypeModel superType, Map<String, FieldModel> fields)
+ TypeModel(Class<O> javaType, TypeModel<? super O> superType, Map<String, FieldModel<O, ?>> fields)
{
this.javaType = javaType;
this.superType = superType;
@@ -50,12 +50,12 @@
this.immutableFields = Collections.unmodifiableMap(fields);
}
- public Collection<FieldModel> getFields()
+ public Collection<FieldModel<O, ?>> getFields()
{
return immutableFields.values();
}
- public Map<String, FieldModel> getFieldMap()
+ public Map<String, FieldModel<O, ?>> getFieldMap()
{
return immutableFields;
}
@@ -65,12 +65,12 @@
return javaType.getName();
}
- public Class<?> getJavaType()
+ public Class<O> getJavaType()
{
return javaType;
}
- public TypeModel getSuperType()
+ public TypeModel<? super O> getSuperType()
{
return superType;
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectReader.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -57,7 +57,7 @@
this.idToResolutions = new HashMap<Integer, List<Resolution>>();
}
- private <O> O instantiate(ReplicatableTypeModel<O> typeModel, Map<FieldModel, ?> state) throws InvalidClassException
+ private <O> O instantiate(ReplicatableTypeModel<O> typeModel, Map<FieldModel<?, ?>, ?> state) throws InvalidClassException
{
try
{
@@ -95,19 +95,19 @@
return o1;
case DataKind.OBJECT:
id = container.readInt();
- Class clazz = (Class) container.readObject();
+ Class<?> clazz = (Class) container.readObject();
ReplicatableTypeModel<?> typeModel = (ReplicatableTypeModel)context.getTypeDomain().getTypeModel(clazz);
//
- Map<FieldModel, Object> state = new HashMap<FieldModel, Object>();
- TypeModel currentTypeModel = typeModel;
+ Map<FieldModel<?, ?>, Object> state = new HashMap<FieldModel<?, ?>, Object>();
+ TypeModel<?> currentTypeModel = typeModel;
List<Bilto> biltos = new ArrayList<Bilto>();
while (currentTypeModel != null)
{
if (currentTypeModel instanceof ReplicatableTypeModel)
{
- for (FieldModel fieldModel : currentTypeModel.getFields())
+ for (FieldModel<?, ?> fieldModel : currentTypeModel.getFields())
{
if (!fieldModel.isTransient())
{
@@ -164,7 +164,7 @@
{
for (Resolution resolution : resolutions)
{
- resolution.fieldModel.setValue(resolution.target, instance);
+ resolution.fieldModel.set(resolution.target, instance);
}
}
Modified: portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectWriter.java
===================================================================
--- portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectWriter.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/main/java/org/exoplatform/webui/application/replication/serial/ObjectWriter.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -83,8 +83,8 @@
}
else
{
- Class<? extends Object> objClass = obj.getClass();
- TypeModel typeModel = context.getTypeDomain().getTypeModel(objClass);
+ Class<?> objClass = obj.getClass();
+ TypeModel<?> typeModel = context.getTypeDomain().getTypeModel(objClass);
//
if (typeModel == null)
@@ -99,15 +99,15 @@
//
SerializationStatus status = SerializationStatus.NONE;
- for (TypeModel currentTypeModel = typeModel;currentTypeModel != null;currentTypeModel = currentTypeModel.getSuperType())
+ for (TypeModel<?> currentTypeModel = typeModel;currentTypeModel != null;currentTypeModel = currentTypeModel.getSuperType())
{
- if (currentTypeModel instanceof ReplicatableTypeModel)
+ if (currentTypeModel instanceof ReplicatableTypeModel<?>)
{
- for (FieldModel fieldModel : currentTypeModel.getFields())
+ for (FieldModel<?, ?> fieldModel : currentTypeModel.getFields())
{
if (!fieldModel.isTransient())
{
- Object fieldValue = fieldModel.getValue(obj);
+ Object fieldValue = fieldModel.get(obj);
if (fieldValue == null)
{
output.writeObject(DataKind.NULL_VALUE);
Modified: portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/TestTypeModel.java
===================================================================
--- portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/TestTypeModel.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/TestTypeModel.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -43,37 +43,41 @@
{
TypeDomain domain = new TypeDomain();
assertType(String.class, domain.add(String.class));
- assertEquals(4, domain.getSize());
+ assertEquals(5, domain.getSize());
assertType(String.class, domain.getTypeModel(String.class));
assertType(Object.class, domain.getTypeModel(Object.class));
- assertType(int.class, domain.getTypeModel(int.class));
+ assertType(Integer.class, domain.getTypeModel(Integer.class));
assertType(char[].class, domain.getTypeModel(char[].class));
+ assertType(Number.class, domain.getTypeModel(Number.class));
}
public void testJuu()
{
TypeDomain domain = new TypeDomain();
- ReplicatableTypeModel aTM = (ReplicatableTypeModel) domain.add(A.class);
+ ReplicatableTypeModel<A> aTM = (ReplicatableTypeModel) domain.add(A.class);
assertEquals(A.class.getName(), aTM.getName());
+/*
assertEquals(SetBuilder.
create(domain.getTypeModel(Object.class)).
- with(domain.getTypeModel(int.class)).
+ with(domain.getTypeModel(Integer.class)).
+ with(domain.getTypeModel(Number.class)).
with(domain.getTypeModel(char[].class)).
with(aTM).
- with(domain.getTypeModel(boolean.class)).
+ with(domain.getTypeModel(Boolean.class)).
build(domain.getTypeModel(String.class))
, domain.getTypeModels());
- Map<String, FieldModel> fieldMap = aTM.getFieldMap();
+*/
+ Map<String, FieldModel<A, ?>> fieldMap = aTM.getFieldMap();
assertEquals(3, fieldMap.size());
FieldModel aFM = fieldMap.get("a");
assertEquals("a", aFM.getName());
assertEquals(domain.getTypeModel(String.class), aFM.getType());
FieldModel bFM = fieldMap.get("b");
assertEquals("b", bFM.getName());
- assertEquals(domain.getTypeModel(int.class), bFM.getType());
+ assertEquals(domain.getTypeModel(Integer.class), bFM.getType());
FieldModel cFM = fieldMap.get("c");
assertEquals("c", cFM.getName());
- assertEquals(domain.getTypeModel(boolean.class), cFM.getType());
+ assertEquals(domain.getTypeModel(Boolean.class), cFM.getType());
}
private void assertType(Class<?> javaType, TypeModel typeModel)
Modified: portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java
===================================================================
--- portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java 2010-01-16 01:44:51 UTC (rev 1330)
+++ portal/trunk/webui/core/src/test/java/org/exoplatform/webui/replication/factory/A1.java 2010-01-16 12:08:06 UTC (rev 1331)
@@ -35,7 +35,7 @@
static A2 instance = new A2();
@Override
- public <S extends A2> S create(Class<S> type, Map<FieldModel, ?> state) throws CreateException
+ public <S extends A2> S create(Class<S> type, Map<FieldModel<?, ?>, ?> state) throws CreateException
{
if (type == A2.class)
{
16 years, 3 months
gatein SVN: r1330 - in portal/trunk: component and 62 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 20:44:51 -0500 (Fri, 15 Jan 2010)
New Revision: 1330
Modified:
portal/trunk/component/application-registry/pom.xml
portal/trunk/component/common/pom.xml
portal/trunk/component/dashboard/pom.xml
portal/trunk/component/identity/pom.xml
portal/trunk/component/pc/pom.xml
portal/trunk/component/pom.xml
portal/trunk/component/portal/pom.xml
portal/trunk/component/resources/pom.xml
portal/trunk/component/scripting/pom.xml
portal/trunk/component/test/core/pom.xml
portal/trunk/component/test/jcr/pom.xml
portal/trunk/component/test/organization/pom.xml
portal/trunk/component/test/pom.xml
portal/trunk/component/web/pom.xml
portal/trunk/component/wsrp/pom.xml
portal/trunk/component/xml-parser/pom.xml
portal/trunk/examples/extension/config/pom.xml
portal/trunk/examples/extension/ear/pom.xml
portal/trunk/examples/extension/jar/pom.xml
portal/trunk/examples/extension/pom.xml
portal/trunk/examples/extension/war/pom.xml
portal/trunk/examples/pom.xml
portal/trunk/examples/portal/config/pom.xml
portal/trunk/examples/portal/ear/pom.xml
portal/trunk/examples/portal/jar/pom.xml
portal/trunk/examples/portal/pom.xml
portal/trunk/examples/portal/rest-war/pom.xml
portal/trunk/examples/portal/war/pom.xml
portal/trunk/examples/portlets/jsfhellouser/pom.xml
portal/trunk/examples/portlets/jsphellouser/pom.xml
portal/trunk/examples/portlets/pom.xml
portal/trunk/examples/portlets/simplesthelloworld/pom.xml
portal/trunk/gadgets/core/pom.xml
portal/trunk/gadgets/eXoGadgets/pom.xml
portal/trunk/gadgets/pom.xml
portal/trunk/gadgets/server/pom.xml
portal/trunk/packaging/module/pom.xml
portal/trunk/packaging/pkg/pom.xml
portal/trunk/packaging/pom.xml
portal/trunk/packaging/product/pom.xml
portal/trunk/packaging/reports/pom.xml
portal/trunk/pom.xml
portal/trunk/portlet/dashboard/pom.xml
portal/trunk/portlet/exoadmin/pom.xml
portal/trunk/portlet/pom.xml
portal/trunk/portlet/web/pom.xml
portal/trunk/server/jboss/patch-ear/pom.xml
portal/trunk/server/jboss/plugin/pom.xml
portal/trunk/server/jboss/pom.xml
portal/trunk/server/pom.xml
portal/trunk/server/tomcat/patch/pom.xml
portal/trunk/server/tomcat/plugin/pom.xml
portal/trunk/server/tomcat/pom.xml
portal/trunk/starter/ear/pom.xml
portal/trunk/starter/pom.xml
portal/trunk/starter/war/pom.xml
portal/trunk/web/eXoResources/pom.xml
portal/trunk/web/pom.xml
portal/trunk/web/portal/pom.xml
portal/trunk/web/rest/pom.xml
portal/trunk/webui/core/pom.xml
portal/trunk/webui/eXo/pom.xml
portal/trunk/webui/pom.xml
portal/trunk/webui/portal/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: portal/trunk/component/application-registry/pom.xml
===================================================================
--- portal/trunk/component/application-registry/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/application-registry/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -56,28 +56,28 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/common/pom.xml
===================================================================
--- portal/trunk/component/common/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/common/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
@@ -67,14 +67,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/dashboard/pom.xml
===================================================================
--- portal/trunk/component/dashboard/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/dashboard/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/component/identity/pom.xml
===================================================================
--- portal/trunk/component/identity/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/identity/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/pc/pom.xml
===================================================================
--- portal/trunk/component/pc/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/pc/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.pc</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<name>GateIn Portal Component PC integration</name>
<dependencies>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/trunk/component/pom.xml
===================================================================
--- portal/trunk/component/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: portal/trunk/component/portal/pom.xml
===================================================================
--- portal/trunk/component/portal/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/portal/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -46,25 +46,25 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -102,21 +102,21 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/resources/pom.xml
===================================================================
--- portal/trunk/component/resources/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/resources/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/trunk/component/scripting/pom.xml
===================================================================
--- portal/trunk/component/scripting/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/scripting/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,13 +40,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/core/pom.xml
===================================================================
--- portal/trunk/component/test/core/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/test/core/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/test/jcr/pom.xml
===================================================================
--- portal/trunk/component/test/jcr/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/test/jcr/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/organization/pom.xml
===================================================================
--- portal/trunk/component/test/organization/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/test/organization/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/pom.xml
===================================================================
--- portal/trunk/component/test/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/test/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/web/pom.xml
===================================================================
--- portal/trunk/component/web/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/web/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -55,13 +55,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -78,7 +78,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
Modified: portal/trunk/component/wsrp/pom.xml
===================================================================
--- portal/trunk/component/wsrp/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/wsrp/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.wsrp</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<name>GateIn Portal Component WSRP integration</name>
<dependencies>
Modified: portal/trunk/component/xml-parser/pom.xml
===================================================================
--- portal/trunk/component/xml-parser/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/component/xml-parser/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/extension/config/pom.xml
===================================================================
--- portal/trunk/examples/extension/config/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/extension/config/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/extension/ear/pom.xml
===================================================================
--- portal/trunk/examples/extension/ear/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/extension/ear/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/examples/extension/jar/pom.xml
===================================================================
--- portal/trunk/examples/extension/jar/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/extension/jar/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/examples/extension/pom.xml
===================================================================
--- portal/trunk/examples/extension/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/extension/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: portal/trunk/examples/extension/war/pom.xml
===================================================================
--- portal/trunk/examples/extension/war/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/extension/war/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/pom.xml
===================================================================
--- portal/trunk/examples/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: portal/trunk/examples/portal/config/pom.xml
===================================================================
--- portal/trunk/examples/portal/config/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/config/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portal/ear/pom.xml
===================================================================
--- portal/trunk/examples/portal/ear/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/ear/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/examples/portal/jar/pom.xml
===================================================================
--- portal/trunk/examples/portal/jar/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/jar/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/examples/portal/pom.xml
===================================================================
--- portal/trunk/examples/portal/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: portal/trunk/examples/portal/rest-war/pom.xml
===================================================================
--- portal/trunk/examples/portal/rest-war/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/rest-war/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portal/war/pom.xml
===================================================================
--- portal/trunk/examples/portal/war/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portal/war/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- portal/trunk/examples/portlets/jsfhellouser/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portlets/jsfhellouser/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: portal/trunk/examples/portlets/jsphellouser/pom.xml
===================================================================
--- portal/trunk/examples/portlets/jsphellouser/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portlets/jsphellouser/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: portal/trunk/examples/portlets/pom.xml
===================================================================
--- portal/trunk/examples/portlets/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portlets/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: portal/trunk/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- portal/trunk/examples/portlets/simplesthelloworld/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/examples/portlets/simplesthelloworld/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: portal/trunk/gadgets/core/pom.xml
===================================================================
--- portal/trunk/gadgets/core/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/gadgets/core/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/trunk/gadgets/eXoGadgets/pom.xml
===================================================================
--- portal/trunk/gadgets/eXoGadgets/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/gadgets/eXoGadgets/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -39,14 +39,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/trunk/gadgets/pom.xml
===================================================================
--- portal/trunk/gadgets/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/gadgets/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: portal/trunk/gadgets/server/pom.xml
===================================================================
--- portal/trunk/gadgets/server/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/gadgets/server/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: portal/trunk/packaging/module/pom.xml
===================================================================
--- portal/trunk/packaging/module/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/packaging/module/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/pkg/pom.xml
===================================================================
--- portal/trunk/packaging/pkg/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/packaging/pkg/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>js</type>
</dependency>
</dependencies>
Modified: portal/trunk/packaging/pom.xml
===================================================================
--- portal/trunk/packaging/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/packaging/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/product/pom.xml
===================================================================
--- portal/trunk/packaging/product/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/packaging/product/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/reports/pom.xml
===================================================================
--- portal/trunk/packaging/reports/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/packaging/reports/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -31,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -69,9 +69,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/portal/tags/3.0.0-Beta05</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/trunk</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/trunk</url>
</scm>
<modules>
Modified: portal/trunk/portlet/dashboard/pom.xml
===================================================================
--- portal/trunk/portlet/dashboard/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/portlet/dashboard/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,20 +35,20 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/portlet/exoadmin/pom.xml
===================================================================
--- portal/trunk/portlet/exoadmin/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/portlet/exoadmin/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
Modified: portal/trunk/portlet/pom.xml
===================================================================
--- portal/trunk/portlet/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/portlet/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: portal/trunk/portlet/web/pom.xml
===================================================================
--- portal/trunk/portlet/web/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/portlet/web/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/server/jboss/patch-ear/pom.xml
===================================================================
--- portal/trunk/server/jboss/patch-ear/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/jboss/patch-ear/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/jboss/plugin/pom.xml
===================================================================
--- portal/trunk/server/jboss/plugin/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/jboss/plugin/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/jboss/pom.xml
===================================================================
--- portal/trunk/server/jboss/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/jboss/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: portal/trunk/server/pom.xml
===================================================================
--- portal/trunk/server/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: portal/trunk/server/tomcat/patch/pom.xml
===================================================================
--- portal/trunk/server/tomcat/patch/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/tomcat/patch/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/tomcat/plugin/pom.xml
===================================================================
--- portal/trunk/server/tomcat/plugin/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/tomcat/plugin/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/tomcat/pom.xml
===================================================================
--- portal/trunk/server/tomcat/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/server/tomcat/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: portal/trunk/starter/ear/pom.xml
===================================================================
--- portal/trunk/starter/ear/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/starter/ear/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/starter/pom.xml
===================================================================
--- portal/trunk/starter/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/starter/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: portal/trunk/starter/war/pom.xml
===================================================================
--- portal/trunk/starter/war/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/starter/war/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/eXoResources/pom.xml
===================================================================
--- portal/trunk/web/eXoResources/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/web/eXoResources/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/pom.xml
===================================================================
--- portal/trunk/web/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/web/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: portal/trunk/web/portal/pom.xml
===================================================================
--- portal/trunk/web/portal/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/web/portal/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/rest/pom.xml
===================================================================
--- portal/trunk/web/rest/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/web/rest/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/webui/core/pom.xml
===================================================================
--- portal/trunk/webui/core/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/webui/core/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/trunk/webui/eXo/pom.xml
===================================================================
--- portal/trunk/webui/eXo/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/webui/eXo/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/webui/pom.xml
===================================================================
--- portal/trunk/webui/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/webui/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: portal/trunk/webui/portal/pom.xml
===================================================================
--- portal/trunk/webui/portal/pom.xml 2010-01-16 01:43:19 UTC (rev 1329)
+++ portal/trunk/webui/portal/pom.xml 2010-01-16 01:44:51 UTC (rev 1330)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,37 +45,37 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
<dependency>
@@ -90,7 +90,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.0.0-Beta05</version>
+ <version>3.0.0-CR01-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
16 years, 3 months
gatein SVN: r1329 - portal/tags.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 20:43:19 -0500 (Fri, 15 Jan 2010)
New Revision: 1329
Added:
portal/tags/3.0.0-Beta05/
Log:
[maven-scm] copy for tag 3.0.0-Beta05
Copied: portal/tags/3.0.0-Beta05 (from rev 1328, portal/trunk)
16 years, 3 months
gatein SVN: r1328 - in portal/trunk: component and 62 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 20:43:02 -0500 (Fri, 15 Jan 2010)
New Revision: 1328
Modified:
portal/trunk/component/application-registry/pom.xml
portal/trunk/component/common/pom.xml
portal/trunk/component/dashboard/pom.xml
portal/trunk/component/identity/pom.xml
portal/trunk/component/pc/pom.xml
portal/trunk/component/pom.xml
portal/trunk/component/portal/pom.xml
portal/trunk/component/resources/pom.xml
portal/trunk/component/scripting/pom.xml
portal/trunk/component/test/core/pom.xml
portal/trunk/component/test/jcr/pom.xml
portal/trunk/component/test/organization/pom.xml
portal/trunk/component/test/pom.xml
portal/trunk/component/web/pom.xml
portal/trunk/component/wsrp/pom.xml
portal/trunk/component/xml-parser/pom.xml
portal/trunk/examples/extension/config/pom.xml
portal/trunk/examples/extension/ear/pom.xml
portal/trunk/examples/extension/jar/pom.xml
portal/trunk/examples/extension/pom.xml
portal/trunk/examples/extension/war/pom.xml
portal/trunk/examples/pom.xml
portal/trunk/examples/portal/config/pom.xml
portal/trunk/examples/portal/ear/pom.xml
portal/trunk/examples/portal/jar/pom.xml
portal/trunk/examples/portal/pom.xml
portal/trunk/examples/portal/rest-war/pom.xml
portal/trunk/examples/portal/war/pom.xml
portal/trunk/examples/portlets/jsfhellouser/pom.xml
portal/trunk/examples/portlets/jsphellouser/pom.xml
portal/trunk/examples/portlets/pom.xml
portal/trunk/examples/portlets/simplesthelloworld/pom.xml
portal/trunk/gadgets/core/pom.xml
portal/trunk/gadgets/eXoGadgets/pom.xml
portal/trunk/gadgets/pom.xml
portal/trunk/gadgets/server/pom.xml
portal/trunk/packaging/module/pom.xml
portal/trunk/packaging/pkg/pom.xml
portal/trunk/packaging/pom.xml
portal/trunk/packaging/product/pom.xml
portal/trunk/packaging/reports/pom.xml
portal/trunk/pom.xml
portal/trunk/portlet/dashboard/pom.xml
portal/trunk/portlet/exoadmin/pom.xml
portal/trunk/portlet/pom.xml
portal/trunk/portlet/web/pom.xml
portal/trunk/server/jboss/patch-ear/pom.xml
portal/trunk/server/jboss/plugin/pom.xml
portal/trunk/server/jboss/pom.xml
portal/trunk/server/pom.xml
portal/trunk/server/tomcat/patch/pom.xml
portal/trunk/server/tomcat/plugin/pom.xml
portal/trunk/server/tomcat/pom.xml
portal/trunk/starter/ear/pom.xml
portal/trunk/starter/pom.xml
portal/trunk/starter/war/pom.xml
portal/trunk/web/eXoResources/pom.xml
portal/trunk/web/pom.xml
portal/trunk/web/portal/pom.xml
portal/trunk/web/rest/pom.xml
portal/trunk/webui/core/pom.xml
portal/trunk/webui/eXo/pom.xml
portal/trunk/webui/pom.xml
portal/trunk/webui/portal/pom.xml
Log:
[maven-release-plugin] prepare release 3.0.0-Beta05
Modified: portal/trunk/component/application-registry/pom.xml
===================================================================
--- portal/trunk/component/application-registry/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/application-registry/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
@@ -56,28 +56,28 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/common/pom.xml
===================================================================
--- portal/trunk/component/common/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/common/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.common</artifactId>
@@ -67,14 +67,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/dashboard/pom.xml
===================================================================
--- portal/trunk/component/dashboard/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/dashboard/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/component/identity/pom.xml
===================================================================
--- portal/trunk/component/identity/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/identity/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/pc/pom.xml
===================================================================
--- portal/trunk/component/pc/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/pc/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,13 +23,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.pc</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<name>GateIn Portal Component PC integration</name>
<dependencies>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/trunk/component/pom.xml
===================================================================
--- portal/trunk/component/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.component</artifactId>
Modified: portal/trunk/component/portal/pom.xml
===================================================================
--- portal/trunk/component/portal/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/portal/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -46,25 +46,25 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
@@ -102,21 +102,21 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.jcr</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.organization</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>test</scope>
</dependency>
Modified: portal/trunk/component/resources/pom.xml
===================================================================
--- portal/trunk/component/resources/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/resources/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
Modified: portal/trunk/component/scripting/pom.xml
===================================================================
--- portal/trunk/component/scripting/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/scripting/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -40,13 +40,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.xml-parser</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/core/pom.xml
===================================================================
--- portal/trunk/component/test/core/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/test/core/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/test/jcr/pom.xml
===================================================================
--- portal/trunk/component/test/jcr/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/test/jcr/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/organization/pom.xml
===================================================================
--- portal/trunk/component/test/organization/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/test/organization/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.test.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.identity</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
Modified: portal/trunk/component/test/pom.xml
===================================================================
--- portal/trunk/component/test/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/test/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/component/web/pom.xml
===================================================================
--- portal/trunk/component/web/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/web/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -55,13 +55,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.common</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
@@ -78,7 +78,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.scripting</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
Modified: portal/trunk/component/wsrp/pom.xml
===================================================================
--- portal/trunk/component/wsrp/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/wsrp/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exo.portal.component.wsrp</artifactId>
<packaging>jar</packaging>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<name>GateIn Portal Component WSRP integration</name>
<dependencies>
Modified: portal/trunk/component/xml-parser/pom.xml
===================================================================
--- portal/trunk/component/xml-parser/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/component/xml-parser/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/extension/config/pom.xml
===================================================================
--- portal/trunk/examples/extension/config/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/extension/config/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/extension/ear/pom.xml
===================================================================
--- portal/trunk/examples/extension/ear/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/extension/ear/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,23 +37,23 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.config</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.jar</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.extension.war</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/examples/extension/jar/pom.xml
===================================================================
--- portal/trunk/examples/extension/jar/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/extension/jar/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/examples/extension/pom.xml
===================================================================
--- portal/trunk/examples/extension/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/extension/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.sample.extension.root</artifactId>
Modified: portal/trunk/examples/extension/war/pom.xml
===================================================================
--- portal/trunk/examples/extension/war/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/extension/war/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/pom.xml
===================================================================
--- portal/trunk/examples/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.sample</artifactId>
Modified: portal/trunk/examples/portal/config/pom.xml
===================================================================
--- portal/trunk/examples/portal/config/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/config/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portal/ear/pom.xml
===================================================================
--- portal/trunk/examples/portal/ear/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/ear/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,29 +37,29 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.config</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.jar</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.war</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.sample.portal.rest-war</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/examples/portal/jar/pom.xml
===================================================================
--- portal/trunk/examples/portal/jar/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/jar/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/examples/portal/pom.xml
===================================================================
--- portal/trunk/examples/portal/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.sample.portal.root</artifactId>
Modified: portal/trunk/examples/portal/rest-war/pom.xml
===================================================================
--- portal/trunk/examples/portal/rest-war/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/rest-war/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portal/war/pom.xml
===================================================================
--- portal/trunk/examples/portal/war/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portal/war/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/examples/portlets/jsfhellouser/pom.xml
===================================================================
--- portal/trunk/examples/portlets/jsfhellouser/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portlets/jsfhellouser/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>gatein-jsf-hellouser</artifactId>
Modified: portal/trunk/examples/portlets/jsphellouser/pom.xml
===================================================================
--- portal/trunk/examples/portlets/jsphellouser/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portlets/jsphellouser/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>gatein-jsp-hellouser</artifactId>
Modified: portal/trunk/examples/portlets/pom.xml
===================================================================
--- portal/trunk/examples/portlets/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portlets/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
Modified: portal/trunk/examples/portlets/simplesthelloworld/pom.xml
===================================================================
--- portal/trunk/examples/portlets/simplesthelloworld/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/examples/portlets/simplesthelloworld/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.gatein.portal.examples.portlets</groupId>
<artifactId>parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>gatein-simplest-helloworld</artifactId>
Modified: portal/trunk/gadgets/core/pom.xml
===================================================================
--- portal/trunk/gadgets/core/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/gadgets/core/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -14,7 +14,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.gadgets-core</artifactId>
@@ -65,7 +65,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/trunk/gadgets/eXoGadgets/pom.xml
===================================================================
--- portal/trunk/gadgets/eXoGadgets/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/gadgets/eXoGadgets/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -39,14 +39,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: portal/trunk/gadgets/pom.xml
===================================================================
--- portal/trunk/gadgets/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/gadgets/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.gadgets</artifactId>
Modified: portal/trunk/gadgets/server/pom.xml
===================================================================
--- portal/trunk/gadgets/server/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/gadgets/server/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.gadgets-server</artifactId>
Modified: portal/trunk/packaging/module/pom.xml
===================================================================
--- portal/trunk/packaging/module/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/packaging/module/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/pkg/pom.xml
===================================================================
--- portal/trunk/packaging/pkg/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/packaging/pkg/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,13 +67,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.module</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>js</type>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>portal.packaging.product</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>js</type>
</dependency>
</dependencies>
Modified: portal/trunk/packaging/pom.xml
===================================================================
--- portal/trunk/packaging/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/packaging/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/product/pom.xml
===================================================================
--- portal/trunk/packaging/product/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/packaging/product/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/packaging/reports/pom.xml
===================================================================
--- portal/trunk/packaging/reports/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/packaging/reports/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.packaging</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/pom.xml
===================================================================
--- portal/trunk/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -19,8 +19,7 @@
-->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -32,7 +31,7 @@
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<packaging>pom</packaging>
<name>GateIn - Portal</name>
@@ -70,9 +69,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/trunk</connection>
- <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/portal/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05</connection>
+ <developerConnection>scm:svn:http://svn.jboss.org/repos/gatein/portal/tags/3.0.0-Beta05</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/portal/tags/3.0.0-Beta05</url>
</scm>
<modules>
@@ -559,12 +558,11 @@
<phase>compile</phase>
<configuration>
<tasks>
- <copy failonerror="false"
- todir="${project.build.directory}/${project.build.finalName}/WEB-INF/classes">
+ <copy failonerror="false" todir="${project.build.directory}/${project.build.finalName}/WEB-INF/classes">
<fileset dir="${basedir}/src/main/webapp/WEB-INF/classes">
- <include name="**/*_en.properties"/>
+ <include name="**/*_en.properties" />
</fileset>
- <globmapper from="*_en.properties" to="*.properties"/>
+ <globmapper from="*_en.properties" to="*.properties" />
</copy>
</tasks>
</configuration>
Modified: portal/trunk/portlet/dashboard/pom.xml
===================================================================
--- portal/trunk/portlet/dashboard/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/portlet/dashboard/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,20 +35,20 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.dashboard</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/portlet/exoadmin/pom.xml
===================================================================
--- portal/trunk/portlet/exoadmin/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/portlet/exoadmin/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,14 +35,14 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
Modified: portal/trunk/portlet/pom.xml
===================================================================
--- portal/trunk/portlet/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/portlet/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.portlet</artifactId>
Modified: portal/trunk/portlet/web/pom.xml
===================================================================
--- portal/trunk/portlet/web/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/portlet/web/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.portlet</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: portal/trunk/server/jboss/patch-ear/pom.xml
===================================================================
--- portal/trunk/server/jboss/patch-ear/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/jboss/patch-ear/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/jboss/plugin/pom.xml
===================================================================
--- portal/trunk/server/jboss/plugin/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/jboss/plugin/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.jboss</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/jboss/pom.xml
===================================================================
--- portal/trunk/server/jboss/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/jboss/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.server.jboss</artifactId>
Modified: portal/trunk/server/pom.xml
===================================================================
--- portal/trunk/server/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.server</artifactId>
Modified: portal/trunk/server/tomcat/patch/pom.xml
===================================================================
--- portal/trunk/server/tomcat/patch/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/tomcat/patch/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/tomcat/plugin/pom.xml
===================================================================
--- portal/trunk/server/tomcat/plugin/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/tomcat/plugin/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server.tomcat</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/server/tomcat/pom.xml
===================================================================
--- portal/trunk/server/tomcat/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/server/tomcat/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.server</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.server.tomcat</artifactId>
Modified: portal/trunk/starter/ear/pom.xml
===================================================================
--- portal/trunk/starter/ear/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/starter/ear/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.starter.war</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
<type>war</type>
</dependency>
</dependencies>
Modified: portal/trunk/starter/pom.xml
===================================================================
--- portal/trunk/starter/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/starter/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.starter.root</artifactId>
Modified: portal/trunk/starter/war/pom.xml
===================================================================
--- portal/trunk/starter/war/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/starter/war/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/eXoResources/pom.xml
===================================================================
--- portal/trunk/web/eXoResources/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/web/eXoResources/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/pom.xml
===================================================================
--- portal/trunk/web/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/web/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.web</artifactId>
Modified: portal/trunk/web/portal/pom.xml
===================================================================
--- portal/trunk/web/portal/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/web/portal/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/web/rest/pom.xml
===================================================================
--- portal/trunk/web/rest/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/web/rest/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: portal/trunk/webui/core/pom.xml
===================================================================
--- portal/trunk/webui/core/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/webui/core/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.web</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.gatein.common</groupId>
Modified: portal/trunk/webui/eXo/pom.xml
===================================================================
--- portal/trunk/webui/eXo/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/webui/eXo/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -35,13 +35,13 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
</dependencies>
</project>
Modified: portal/trunk/webui/pom.xml
===================================================================
--- portal/trunk/webui/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/webui/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.parent</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<artifactId>exo.portal.webui</artifactId>
Modified: portal/trunk/webui/portal/pom.xml
===================================================================
--- portal/trunk/webui/portal/pom.xml 2010-01-16 01:13:32 UTC (rev 1327)
+++ portal/trunk/webui/portal/pom.xml 2010-01-16 01:43:02 UTC (rev 1328)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -45,37 +45,37 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.resources</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.webui.eXo</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.portal</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.application-registry</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.component.pc</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
<dependency>
@@ -90,7 +90,7 @@
<dependency>
<groupId>org.exoplatform.portal</groupId>
<artifactId>exo.portal.gadgets-core</artifactId>
- <version>3.0.0-Beta05-SNAPSHOT</version>
+ <version>3.0.0-Beta05</version>
</dependency>
</dependencies>
</project>
16 years, 3 months
gatein SVN: r1326 - portal/trunk/component/application-registry/src/main/java/org/exoplatform/application/registry/impl.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 20:11:40 -0500 (Fri, 15 Jan 2010)
New Revision: 1326
Modified:
portal/trunk/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
Log:
GTNPORTAL-510: Retrieve icon for WSRP portlets
Workaround: always return the default icon, warning: hardcoded to /eXoResources/skin/sharedImages/Icon80x80/DefaultPortlet.png
Modified: portal/trunk/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java
===================================================================
--- portal/trunk/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-01-15 23:31:24 UTC (rev 1325)
+++ portal/trunk/component/application-registry/src/main/java/org/exoplatform/application/registry/impl/ApplicationRegistryServiceImpl.java 2010-01-16 01:11:40 UTC (rev 1326)
@@ -588,6 +588,10 @@
return "/" + chunks[0] + "/skin/DefaultSkin/portletIcons/" + chunks[1] + ".png";
}
}
+ else if (type == WSRP.CONTENT_TYPE)
+ {
+ return "/eXoResources/skin/sharedImages/Icon80x80/DefaultPortlet.png";
+ }
else if (type == org.exoplatform.portal.pom.spi.gadget.Gadget.CONTENT_TYPE)
{
return "/" + "eXoGadgets" + "/skin/DefaultSkin/portletIcons/" + contentId + ".png";
16 years, 3 months
gatein SVN: r1325 - in portal/trunk: component/resources/src/test/java/locale/test/resources and 10 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 18:31:24 -0500 (Fri, 15 Jan 2010)
New Revision: 1325
Modified:
portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties
portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties
portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties
portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties
portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/i18n/MessageResource_it.js
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.xml
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties
Log:
GTNPORTAL-496: Translation in Italian
Modified: portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties
===================================================================
--- portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,7 +17,7 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-# key1
-my.key1=Il mio nuovo valore in italiano
-# key3
-my.key3=Il mio nuovo valore in italiano
+# key1
+my.key1=Il mio nuovo valore in italiano
+# key3
+my.key3=Il mio nuovo valore in italiano
Modified: portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties
===================================================================
--- portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-language=Italiano
+language=Italiano
\ No newline at end of file
Modified: portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties
===================================================================
--- portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,8 +17,8 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-UITabPaneDashboard.action.addNewDashboard=Aggiungi Dashboard
-UITabPaneDashboard.action.switchShowRange=Cambia ordine
-UITabPaneDashboard.msg.deleteTab=Vuoi davvero rimuovere questa dashboard?
+UITabPaneDashboard.action.addNewDashboard=Aggiungi Dashboard
+UITabPaneDashboard.action.switchShowRange=Cambia ordine
+UITabPaneDashboard.msg.deleteTab=Vuoi davvero rimuovere questa dashboard?
UITabPaneDashboard.msg.cannotDeleteLastTab=Non posso eliminare l'ultimo tab.
-UITabPaneDashboard.msg.wrongTabName=Sono permessi soltanto caratteri alfabetici, numerici, underscore, trattino e spazio.
+UITabPaneDashboard.msg.wrongTabName=Sono permessi soltanto caratteri alfabetici, numerici, underscore, trattino e spazio.
\ No newline at end of file
Modified: portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties
===================================================================
--- portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -24,4 +24,4 @@
UIGadgetEditMode.action.Save=Salva
UIGadgetEditMode.label.option.remote=Gadget remoto
-UIGadgetEditMode.label.option.local=Gadget locale
+UIGadgetEditMode.label.option.local=Gadget locale
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,71 +17,71 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-##org.exoplatform.account.webui.component.UIAccountForm
-
-UIAccountForm.label.Profile=Profilo Utente
-UIAccountForm.title=Aggiungi/Modifica Account
-UIAccountForm.label.username=#{word.userName}:
-UIAccountForm.label.SearchUser=Cerca Utente
-UIAccountForm.label.password1x=Password:
-UIAccountForm.label.password2x=Conferma Password:
-UIAccountForm.label.password=Password:
-UIAccountForm.label.Confirmpassword=Conferma Password:
-UIAccountForm.action.Reset=Annulla
-UIAccountForm.label.firstName=#{word.firstName}:
-UIAccountForm.label.lastName=#{word.lastName}:
-UIAccountForm.label.email=Email Address:
-UIAccountForm.label.note=I campi segnati con l'asterisco<span style="color: red">*</span> sono obbligatori
-UIAccountForm.action.Back=#{word.back}
-UIAccountForm.action.Save=#{word.save}
-UIAccountForm.label.action.SearchUser=Cerca Utente
-#{0} is the username that the remote user enter
-UIAccountForm.msg.user-exist=Lo username '{0}' esiste gi\u00e0
-UIAccountForm.msg.incorrect-password=La password inserita non \u00e8 corretta
-UIAccountForm.msg.sucsesful.create.user=Utente creato con successo
-
-UIAccountForm.tab.label.AccountTemplate=Template dell'Account
-UIAccountForm.tab.label.UIUserProfileInputSet=Profilo Utente
-UIAccountForm.tab.label.AccountInputSet=Preferenze dell'Account
-UIAccountForm.tab.label.UIUserMembershipSelector=Membership Utente
-
-UIAccountForm.label.Membership=Membership
-
-
-UIAccountForm.label.option.male=Maschio
-UIAccountForm.label.option.female=Femmina
-
-UIAccountForm.label.HomeInfo=Informazioni della Home
-UIAccountForm.label.user.name.given=#{word.givenName}:
-UIAccountForm.label.user.name.family=#{word.familyName}:
-UIAccountForm.label.user.name.nickName=#{word.nickName}:
-UIAccountForm.label.user.bdate=#{word.birthday}:
-UIAccountForm.label.user.gender=#{word.gender}:
-UIAccountForm.label.user.employer=#{word.employer}:
-UIAccountForm.label.user.department=#{word.department}:
-UIAccountForm.label.user.jobtitle=#{word.jobTitle}:
-UIAccountForm.label.user.language=Linguaggio
-UIAccountForm.label.user.home-info.postal.name=#:
-UIAccountForm.label.user.home-info.postal.street=#{word.street}:
-UIAccountForm.label.user.home-info.postal.city=#{word.city}:
-UIAccountForm.label.user.home-info.postal.stateprov=#{word.stateProv}:
-UIAccountForm.label.user.home-info.postal.postalcode=#{word.postalCode}:
-UIAccountForm.label.user.home-info.postal.country=#{word.country}:
-UIAccountForm.label.user.home-info.telecom.mobile.number=#{word.mobile}:
-UIAccountForm.label.user.home-info.telecom.telephone.number=#{word.tel}:
-UIAccountForm.label.user.home-info.online.email=#{word.email}:
-UIAccountForm.label.user.home-info.online.uri=#{word.website}:
-
-UIAccountForm.label.BusinessInfo=Informazioni di Business
-UIAccountForm.label.user.business-info.postal.name=#:
-UIAccountForm.label.user.business-info.postal.street=#{word.street}:
-UIAccountForm.label.user.business-info.postal.city=#{word.city}:
-UIAccountForm.label.user.business-info.postal.stateprov=#{word.stateProv}:
-UIAccountForm.label.user.business-info.postal.postalcode=#{word.postalCode}:
-UIAccountForm.label.user.business-info.postal.country=#{word.country}:
-UIAccountForm.label.user.business-info.telecom.mobile.number=#{word.mobile}:
-UIAccountForm.label.user.business-info.telecom.telephone.number=#{word.tel}:
-UIAccountForm.label.user.business-info.online.email=#{word.email}:
-UIAccountForm.label.user.business-info.online.uri=#{word.website}:
-
-UIPopupWindow.title.UIGroupMembershipSelector=Seleziona il Membership dell'Utente
+##org.exoplatform.account.webui.component.UIAccountForm
+
+UIAccountForm.label.Profile=Profilo Utente
+UIAccountForm.title=Aggiungi/Modifica Account
+UIAccountForm.label.username=#{word.userName}:
+UIAccountForm.label.SearchUser=Cerca Utente
+UIAccountForm.label.password1x=Password:
+UIAccountForm.label.password2x=Conferma Password:
+UIAccountForm.label.password=Password:
+UIAccountForm.label.Confirmpassword=Conferma Password:
+UIAccountForm.action.Reset=Annulla
+UIAccountForm.label.firstName=#{word.firstName}:
+UIAccountForm.label.lastName=#{word.lastName}:
+UIAccountForm.label.email=Email Address:
+UIAccountForm.label.note=I campi segnati con l'asterisco<span style="color: red">*</span> sono obbligatori
+UIAccountForm.action.Back=#{word.back}
+UIAccountForm.action.Save=#{word.save}
+UIAccountForm.label.action.SearchUser=Cerca Utente
+#{0} is the username that the remote user enter
+UIAccountForm.msg.user-exist=Lo username '{0}' esiste gi\u00E0
+UIAccountForm.msg.incorrect-password=La password inserita non \u00E8 corretta
+UIAccountForm.msg.sucsesful.create.user=Utente creato con successo
+
+UIAccountForm.tab.label.AccountTemplate=Template dell'Account
+UIAccountForm.tab.label.UIUserProfileInputSet=Profilo Utente
+UIAccountForm.tab.label.AccountInputSet=Preferenze dell'Account
+UIAccountForm.tab.label.UIUserMembershipSelector=Membership Utente
+
+UIAccountForm.label.Membership=Membership
+
+
+UIAccountForm.label.option.male=Maschio
+UIAccountForm.label.option.female=Femmina
+
+UIAccountForm.label.HomeInfo=Informazioni della Home
+UIAccountForm.label.user.name.given=#{word.givenName}:
+UIAccountForm.label.user.name.family=#{word.familyName}:
+UIAccountForm.label.user.name.nickName=#{word.nickName}:
+UIAccountForm.label.user.bdate=#{word.birthday}:
+UIAccountForm.label.user.gender=#{word.gender}:
+UIAccountForm.label.user.employer=#{word.employer}:
+UIAccountForm.label.user.department=#{word.department}:
+UIAccountForm.label.user.jobtitle=#{word.jobTitle}:
+UIAccountForm.label.user.language=Linguaggio
+UIAccountForm.label.user.home-info.postal.name=#:
+UIAccountForm.label.user.home-info.postal.street=#{word.street}:
+UIAccountForm.label.user.home-info.postal.city=#{word.city}:
+UIAccountForm.label.user.home-info.postal.stateprov=#{word.stateProv}:
+UIAccountForm.label.user.home-info.postal.postalcode=#{word.postalCode}:
+UIAccountForm.label.user.home-info.postal.country=#{word.country}:
+UIAccountForm.label.user.home-info.telecom.mobile.number=#{word.mobile}:
+UIAccountForm.label.user.home-info.telecom.telephone.number=#{word.tel}:
+UIAccountForm.label.user.home-info.online.email=#{word.email}:
+UIAccountForm.label.user.home-info.online.uri=#{word.website}:
+
+UIAccountForm.label.BusinessInfo=Informazioni di Business
+UIAccountForm.label.user.business-info.postal.name=#:
+UIAccountForm.label.user.business-info.postal.street=#{word.street}:
+UIAccountForm.label.user.business-info.postal.city=#{word.city}:
+UIAccountForm.label.user.business-info.postal.stateprov=#{word.stateProv}:
+UIAccountForm.label.user.business-info.postal.postalcode=#{word.postalCode}:
+UIAccountForm.label.user.business-info.postal.country=#{word.country}:
+UIAccountForm.label.user.business-info.telecom.mobile.number=#{word.mobile}:
+UIAccountForm.label.user.business-info.telecom.telephone.number=#{word.tel}:
+UIAccountForm.label.user.business-info.online.email=#{word.email}:
+UIAccountForm.label.user.business-info.online.uri=#{word.website}:
+
+UIPopupWindow.title.UIGroupMembershipSelector=Seleziona il Membership dell'Utente
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -27,4 +27,4 @@
UIAdminToolbarPortlet.action.portal.Editor=Editor del Sito
UIAdminToolbarPortlet.action.group.Editor=Editor del Gruppo
UIAdminToolbarPortlet.action.user.Editor=Editor della Dashboard
-UIAdminToolbarPortlet.action.EditSiteLayout=Modifica il Layout
+UIAdminToolbarPortlet.action.EditSiteLayout=Modifica il Layout
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -21,9 +21,9 @@
word.cancel=Annulla
label.displayName=Nome visualizzabile:
label.description=Descrizione:
-category.msg.changeNotExist=Non posso salvare le modifiche alla categoria non pi\u00f9 presente nel database.
-application.msg.changeNotExist=Non posso salvare le modifiche all'applicazione non pi\u00f9 presente nel database.
-gadget.msg.changeNotExist=Non posso salvare le modifiche al Gadget non pi\u00f9 presente nel database.
+category.msg.changeNotExist=Non posso salvare le modifiche alla categoria non pi\u00F9 presente nel database.
+application.msg.changeNotExist=Non posso salvare le modifiche all'applicazione non pi\u00F9 presente nel database.
+gadget.msg.changeNotExist=Non posso salvare le modifiche al Gadget non pi� presente nel database.
## org.exoplatform.applicationregistry.webui.component.UIApplicationRegistryPortlet
UIToolbar.label.organize=Categorie
UIToolbar.label.portlet=Portlet
@@ -37,15 +37,15 @@
UIOrganizer.title.addApplication=Aggiungi l'Applicazione alla Categoria
UIOrganizer.title.deleteCategory=Elimina la Categoria
UIOrganizer.title.deleteApplication=Elimina l'Applicazione
-UIOrganizer.msg.importAll=Quest'operazione creer\u00e0 automaticamente le categorie e vi importer\u00e0 tutti i Gadget e le Portlet.
+UIOrganizer.msg.importAll=Quest'operazione creer\u00E0 automaticamente le categorie e vi importer\u00E0 tutti i Gadget e le Portlet.
UIOrganizer.msg.deleteCategory=Sicuro di voler eliminare questa categoria e tutte le applicazioni al suo interno?
UIOrganizer.msg.deleteApplication=Sicuro di voler eliminare quest'Applicazione?
UIOrganizer.msg.emptyCategory=Questa categoria non ha nessun'applicazione, clicca il bottone (+) per aggiungere un'applicazione.
UIOrganizer.msg.noCategory=Non ci sono categorie. Puoi cliccare su "Aggiungi Categoria" o "Importazione automatica" per aggiungere la Categoria.
-UIOrganizer.msg.deleteCategoryInUse=Non posso eliminare questa categoria, poich\u00e8 \u00e8 in uso.
-UIOrganizer.msg.deleteApplicationInUse=Non posso eliminare quest'applicazione, poich\u00e8 \u00e8 in uso.
-UIOrganizer.msg.categoryNoExist=Questa categoria non \u00e8 pi\u00f9 presente nel database.
-UIOrganizer.msg.applicationNoExist=Quest'applicazione non \u00e8 pi\u00f9 presente nel database.
+UIOrganizer.msg.deleteCategoryInUse=Non posso eliminare questa categoria, poich\u00E8 \u00E8 in uso.
+UIOrganizer.msg.deleteApplicationInUse=Non posso eliminare quest'applicazione, poich\u00E8 \u00E8 in uso.
+UIOrganizer.msg.categoryNoExist=Questa categoria non \u00E8 pi\u00F9 presente nel database.
+UIOrganizer.msg.applicationNoExist=Quest'applicazione non \u00E8 pi\u00F9 presente nel database.
## org.exoplatform.applicationregistry.webui.component.UIApplicationRegistryEditMode
UIApplicationRegistryEditMode.title=Importa Applicationi
@@ -74,7 +74,7 @@
UIAddApplicationForm.header.label=Nome visualizzabile
UIAddApplicationForm.header.description=Descrizione
UIAddApplicationForm.action.Add=Aggiungi
-UIAddApplicationForm.msg.PortletExist=L'applicazione \u00e8 gi\u00e0 presente nella categoria, selezionane un'altra!
+UIAddApplicationForm.msg.PortletExist=L'applicazione \u00E8 gi\u00E0 presente nella categoria, selezionane un'altra!
UIAddApplicationForm.msg.appNotExists=Seleziona l'applicazione.
UIAddApplicationForm.action.Cancel=#{word.cancel}
UIAddApplicationForm.label.displayName=#{label.displayName}
@@ -86,7 +86,7 @@
UICategoryForm.label.description=#{label.description}
UICategoryForm.action.Save=#{word.save}
UICategoryForm.action.Cancel=#{word.cancel}
-UICategoryForm.msg.SameName=La categoria esiste gi\u00e0, inseriscine un'altra!
+UICategoryForm.msg.SameName=La categoria esiste gi\u00E0, inseriscine un'altra!
UICategoryForm.label.UIListPermissionSelector=
UICategoryForm.tab.label.categoryPermission=Gestione dei Permessi
UICategoryForm.tab.label.categorySetting=Gestione della Categoria
@@ -108,7 +108,7 @@
UIGadgetManagement.label.createNew=Crea un nuovo gadget
UIGadgetManagement.title.deleteGadget=Elimina Gadget
UIGadgetManagement.msg.noGadget=Non ci sono Gadget disponibili.
-UIGadgetManagement.msg.deleteGadgetInUse=Non posso eliminare il gadget, poich\u00e8 \u00e8 in uso.
+UIGadgetManagement.msg.deleteGadgetInUse=Non posso eliminare il gadget, poich\u00E8 \u00E8 in uso.
UIGadgetManagement.msg.deleteGadget=Sicuro di voler eliminare questo gadget?
## org.exoplatform.applicationregistry.webui.component.UIGadgetInfo
@@ -125,19 +125,19 @@
UIGadgetInfo.title.refresh=Aggiorna l'informazione
UIGadgetInfo.title.editGadget=Modifica il Gadget
UIGadgetInfo.title.copy=Copia il Gadget nel repository locale
-UIGadgetInfo.msg.gadgetNotExist=Non posso eseguire l'operazione sul Gadget non pi\u00f9 presente nel database.
+UIGadgetInfo.msg.gadgetNotExist=Non posso eseguire l'operazione sul Gadget non pi\u00F9 presente nel database.
UICategorySelector.header.choose=Scegli
UICategorySelector.header.categoryName=Nome della categoria
UICategorySelector.action.Save=Salva
UICategorySelector.action.Cancel=Annulla
-UICategorySelector.msg.NoCategory=Non c'\u00e8 nessuna categoria
+UICategorySelector.msg.NoCategory=Non c'\u00E8 nessuna categoria
## org.exoplatform.applicationregistry.webui.component.UIAddGadget
UIAddGadget.action.Add=Aggiungi
UIAddGadget.action.Cancel=#{word.cancel}
UIAddGadget.label.url=URL
-UIAddGadget.label.urlExist=Quest'url \u00e8 gi\u00e0 presente, selezionane un'altro!
+UIAddGadget.label.urlExist=Quest'url \u00E8 gi\u00E0 presente, selezionane un'altro!
UIAddGadget.label.urlError=Dati dell'url: '{0}' non validi
## org.exoplatform.applicationregistry.webui.component.UIGadgetEditor
@@ -148,4 +148,4 @@
##package org.exoplatform.organization.webui.component.UIListPermissionSelector
UIListPermissionSelector.header.groupId=Gruppo
UIListPermissionSelector.header.membership=Membership
-UIListPermissionSelectorPopup.title.ListPermissionSelector=Seleziona il permesso
+UIListPermissionSelectorPopup.title.ListPermissionSelector=Seleziona il permesso
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -18,4 +18,4 @@
#
UIPageNavigationForm.action.ClosePopup=#{word.close}
-UIPageNavigationForm.action.Save=#{word.save}
+UIPageNavigationForm.action.Save=#{word.save}
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,241 +17,241 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-##org.exoplatform.organization.webui.component.UIOrganizationPortlet
-UIOrganizationPortlet.label.userManagement=Gestione Utenti
-UIOrganizationPortlet.label.groupManagement=Gestione Gruppi
-UIOrganizationPortlet.label.membershipManagement=Gestione Membership
-
-
-##org.exoplatform.organization.webui.component.UIMembershipTypeForm
-UIMembershipTypeForm.title=Add/Edit Membership
-UIMembershipTypeForm.label.name=Membership name
-UIMembershipTypeForm.label.description=Description
-UIMembershipTypeForm.action.Save=#{word.save}
-UIMembershipTypeForm.action.Back=#{word.back}
-UIMembershipTypeForm.action.Reset=Reset
+##org.exoplatform.organization.webui.component.UIOrganizationPortlet
+UIOrganizationPortlet.label.userManagement=Gestione Utenti
+UIOrganizationPortlet.label.groupManagement=Gestione Gruppi
+UIOrganizationPortlet.label.membershipManagement=Gestione Membership
+
+
+##org.exoplatform.organization.webui.component.UIMembershipTypeForm
+UIMembershipTypeForm.title=Add/Edit Membership
+UIMembershipTypeForm.label.name=Membership name
+UIMembershipTypeForm.label.description=Description
+UIMembershipTypeForm.action.Save=#{word.save}
+UIMembershipTypeForm.action.Back=#{word.back}
+UIMembershipTypeForm.action.Reset=Reset
UIMembershipTypeForm.msg.SameName=This membership already exists, please enter another one
UIMembershipTypeForm.msg.MembershipNotExist= Membership [{0}] is not exist or has been deleted.
-
-##org.exoplatform.organization.webui.component.UIGroupMembershipForm
-UIGroupEditMembershipForm.label.username=User Name
-UIGroupEditMembershipForm.label.membership=Membership
-UIGroupEditMembershipForm.action.Save=Save
-UIGroupEditMembershipForm.action.Cancel=Cancel
-UIGroupEditMembershipForm.msg.membership-delete=Can't save, membership removed!.
-UIGroupEditMembershipForm.msg.membership-exist="Membership type already exists, please enter another one.
-EditMembership.title.UIGroupEditMembershipForm=Edit Membership
-EditMembership.title.EditMembership=Edit Membership
-UIGroupMembershipForm.label.title=Group Membership
-UIGroupMembershipForm.label.username=Username
-UIGroupMembershipForm.label.membership=Membership
-UIGroupMembershipForm.action.Save=#{word.save}
-SearchUserForm.label.option.userName=#{word.userName}
-SearchUserForm.label.option.firstName=#{word.firstName}
-SearchUserForm.label.option.lastName=#{word.lastName}
-SearchUserForm.label.option.email=#{word.email}
-SearchUser.title.UIUserSelector=Select User
-SearchUser.title.SearchUser=Select User
-#{0} is the member that the remote memeber enter
-UIMemberShipForm.msg.membershipType-exist=The membership type '{0}' is taken
-
-##org.exoplatform.organization.webui.component.UIMembershipForm
-UIMembershipForm.label.username=User Name
-UIMembershipForm.label.membership=Membership
-UIMembershipForm.action.Save=#{word.save}
-UIMembershipForm.action.Back=#{word.back}
-UIMembershipForm.label.name=Membership Name
-UIMembershipForm.label.description=#{word.description}
-
-##org.exoplatform.organization.webui.component.UIListUser
-UIListUsers.header.userName=#{word.userName}
-UIListUsers.header.lastName=#{word.lastName}
-UIListUsers.header.firstName=#{word.firstName}
-UIListUsers.header.email=#{word.email}
-
-UIListUsers.action.title.DeleteUser=Delete User
-UIListUsers.action.title.SelectUser=Select User
-UIListUsers.action.title.ViewUserInfo=Edit User Info
-SearchUser.title.ListUserForSearch=Search User
-UIListUsers.header.action=#{word.action}
-UIListUsers.label.option.userName=#{word.userName}
-UIListUsers.label.option.firstName=#{word.firstName}
-UIListUsers.label.option.lastName=#{word.lastName}
-UIListUsers.label.option.email=#{word.email}
-UIListUsers.msg.DeleteSuperUser={0} is Super User, it can not be deleted
-UIListUsers.deleteUser=Are you sure you want to delete {0} user?
-
-UIListMembershipType.deleteMemberShip=Are you sure you want to delete this membership?
-
-##org.exoplatform.organization.webui.component.UIUserInfo
-UIUserInfo.title=User Profile Info
-UIUserInfo.tab.label.AccountInputSet=Account Info
-UIUserInfo.tab.label.UIUserProfileInputSet=User Profile
-UIUserInfo.tab.label.UIUserMembershipSelector=User Membership
-UIUserInfo.tab.label.UIAccountEditInputSet=Account Info
-
-UIUserInfo.label.changePassword=Change Password:
-UIUserInfo.label.newPassword=New Password:
-UIUserInfo.label.confirmPassword=Confirm Password:
-
-UIUserInfo.label.Profile=User Profile
-UIUserInfo.label.userName=#{word.userName}:
-UIUserInfo.label.password=Password :
-UIUserInfo.label.Confirmpassword=Confirm Password :
-UIUserInfo.label.firstName=#{word.firstName}:
-UIUserInfo.label.lastName=#{word.lastName}:
-UIUserInfo.label.email=Email Address:
-UIUserInfo.label.user.language: Language
-UIUserInfo.action.Back=#{word.cancel}
-UIUserInfo.action.Save=#{word.save}
-
-UIUserInfo.label.HomeInfo=Home Informations
-UIUserInfo.label.user.language=#{word.language}:
-UIUserInfo.label.user.name.given=#{word.givenName}:
-UIUserInfo.label.user.name.family=#{word.familyName}:
-UIUserInfo.label.user.name.nickName=#{word.nickName}:
-UIUserInfo.label.user.bdate=#{word.birthday}:
-UIUserInfo.label.user.gender=#{word.gender}:
-UIUserInfo.label.user.employer=#{word.employer}:
-UIUserInfo.label.user.department=#{word.department}:
-UIUserInfo.label.user.jobtitle=#{word.jobTitle}:
-UIUserInfo.label.user.home-info.postal.name=#:
-UIUserInfo.label.user.home-info.postal.street=#{word.street}:
-UIUserInfo.label.user.home-info.postal.city=#{word.city}:
-UIUserInfo.label.user.home-info.postal.stateprov=#{word.stateProv}:
-UIUserInfo.label.user.home-info.postal.postalcode=#{word.postalCode}:
-UIUserInfo.label.user.home-info.postal.country=#{word.country}:
-UIUserInfo.label.user.home-info.telecom.mobile.number=#{word.mobile}:
-UIUserInfo.label.user.home-info.telecom.telephone.number=#{word.tel}:
-UIUserInfo.label.user.home-info.online.email=#{word.email}:
-UIUserInfo.label.user.home-info.online.uri=Website:
-UIUserInfo.label.option.male=Male
-UIUserInfo.label.option.female=Female
-UIUserInfo.label.option.en=English
-UIUserInfo.label.option.ma=Ma
-UIUserInfo.label.option.vi=Vietnamese
-UIUserInfo.label.option.ar=Arabic
-UIUserInfo.label.option.fr=French
-UIUserInfo.label.option.ru=Russian
-
-UIUserInfo.label.BusinessInfo=Business Informations
-UIUserInfo.label.user.business-info.postal.name=#:
-UIUserInfo.label.user.business-info.postal.city=#{word.city}:
-UIUserInfo.label.user.business-info.postal.stateprov=State/Prov:
-UIUserInfo.label.user.business-info.postal.postalcode=Postal Code:
-UIUserInfo.label.user.business-info.postal.country=#{word.country}:
-UIUserInfo.label.user.business-info.telecom.mobile.number=#{word.mobile}:
-UIUserInfo.label.user.business-info.telecom.telephone.number=#{word.tel}:
-UIUserInfo.label.user.business-info.online.email=#{word.email}:
-UIUserInfo.label.user.business-info.online.uri=#{word.website}:
-
-##org.exoplatform.organization.webui.component.UIUserInGroup
-UIUserInGroup.confirm.deleteUser=Are you sure you want to delete user {0} from group {1}?
-UIUserInGroup.header.userName=#{word.userName}
-UIUserInGroup.header.lastName=#{word.lastName}
-UIUserInGroup.header.firstName=#{word.firstName}
-UIUserInGroup.header.email=#{word.email}
-UIUserInGroup.header.action=#{word.action}
-UIUserInGroup.header.membershipType=Membership Type
-UIUserInGroup.header.lastLoginTime=Last Login
-UIUserInGroup.label.username=#{word.userName}
-UIUserInGroup.label.membership=Membership name
-UIUserInGroup.action.title.DeleteUser=Delete member
-UIUserInGroup.action.title.Edit=Edit member
-
-##org.exoplatform.organization.webui.component.UIGroupInfo
-UIGroupInfo.tab.label.UIUserInGroup=User In Group
-UIGroupInfo.label.UIUserInGroup=
-UIGroupInfo.title=Group Info
-
-##org.exoplatform.organization.webui.component.UIMembershipList
-UIMembershipList.header.name=Membership name
-UIMembershipList.header.createdDate=Created date
-UIMembershipList.header.modifiedDate=Modified date
-UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
-UIMembershipList.action.title.EditMembership=Edit Membership
-UIMembershipList.action.title.DeleteMembership=Delete Membership
+
+##org.exoplatform.organization.webui.component.UIGroupMembershipForm
+UIGroupEditMembershipForm.label.username=User Name
+UIGroupEditMembershipForm.label.membership=Membership
+UIGroupEditMembershipForm.action.Save=Save
+UIGroupEditMembershipForm.action.Cancel=Cancel
+UIGroupEditMembershipForm.msg.membership-delete=Can't save, membership removed!.
+UIGroupEditMembershipForm.msg.membership-exist="Membership type already exists, please enter another one.
+EditMembership.title.UIGroupEditMembershipForm=Edit Membership
+EditMembership.title.EditMembership=Edit Membership
+UIGroupMembershipForm.label.title=Group Membership
+UIGroupMembershipForm.label.username=Username
+UIGroupMembershipForm.label.membership=Membership
+UIGroupMembershipForm.action.Save=#{word.save}
+SearchUserForm.label.option.userName=#{word.userName}
+SearchUserForm.label.option.firstName=#{word.firstName}
+SearchUserForm.label.option.lastName=#{word.lastName}
+SearchUserForm.label.option.email=#{word.email}
+SearchUser.title.UIUserSelector=Select User
+SearchUser.title.SearchUser=Select User
+#{0} is the member that the remote memeber enter
+UIMemberShipForm.msg.membershipType-exist=The membership type '{0}' is taken
+
+##org.exoplatform.organization.webui.component.UIMembershipForm
+UIMembershipForm.label.username=User Name
+UIMembershipForm.label.membership=Membership
+UIMembershipForm.action.Save=#{word.save}
+UIMembershipForm.action.Back=#{word.back}
+UIMembershipForm.label.name=Membership Name
+UIMembershipForm.label.description=#{word.description}
+
+##org.exoplatform.organization.webui.component.UIListUser
+UIListUsers.header.userName=#{word.userName}
+UIListUsers.header.lastName=#{word.lastName}
+UIListUsers.header.firstName=#{word.firstName}
+UIListUsers.header.email=#{word.email}
+
+UIListUsers.action.title.DeleteUser=Delete User
+UIListUsers.action.title.SelectUser=Select User
+UIListUsers.action.title.ViewUserInfo=Edit User Info
+SearchUser.title.ListUserForSearch=Search User
+UIListUsers.header.action=#{word.action}
+UIListUsers.label.option.userName=#{word.userName}
+UIListUsers.label.option.firstName=#{word.firstName}
+UIListUsers.label.option.lastName=#{word.lastName}
+UIListUsers.label.option.email=#{word.email}
+UIListUsers.msg.DeleteSuperUser={0} is Super User, it can not be deleted
+UIListUsers.deleteUser=Are you sure you want to delete {0} user?
+
+UIListMembershipType.deleteMemberShip=Are you sure you want to delete this membership?
+
+##org.exoplatform.organization.webui.component.UIUserInfo
+UIUserInfo.title=User Profile Info
+UIUserInfo.tab.label.AccountInputSet=Account Info
+UIUserInfo.tab.label.UIUserProfileInputSet=User Profile
+UIUserInfo.tab.label.UIUserMembershipSelector=User Membership
+UIUserInfo.tab.label.UIAccountEditInputSet=Account Info
+
+UIUserInfo.label.changePassword=Change Password:
+UIUserInfo.label.newPassword=New Password:
+UIUserInfo.label.confirmPassword=Confirm Password:
+
+UIUserInfo.label.Profile=User Profile
+UIUserInfo.label.userName=#{word.userName}:
+UIUserInfo.label.password=Password :
+UIUserInfo.label.Confirmpassword=Confirm Password :
+UIUserInfo.label.firstName=#{word.firstName}:
+UIUserInfo.label.lastName=#{word.lastName}:
+UIUserInfo.label.email=Email Address:
+UIUserInfo.label.user.language: Language
+UIUserInfo.action.Back=#{word.cancel}
+UIUserInfo.action.Save=#{word.save}
+
+UIUserInfo.label.HomeInfo=Home Informations
+UIUserInfo.label.user.language=#{word.language}:
+UIUserInfo.label.user.name.given=#{word.givenName}:
+UIUserInfo.label.user.name.family=#{word.familyName}:
+UIUserInfo.label.user.name.nickName=#{word.nickName}:
+UIUserInfo.label.user.bdate=#{word.birthday}:
+UIUserInfo.label.user.gender=#{word.gender}:
+UIUserInfo.label.user.employer=#{word.employer}:
+UIUserInfo.label.user.department=#{word.department}:
+UIUserInfo.label.user.jobtitle=#{word.jobTitle}:
+UIUserInfo.label.user.home-info.postal.name=#:
+UIUserInfo.label.user.home-info.postal.street=#{word.street}:
+UIUserInfo.label.user.home-info.postal.city=#{word.city}:
+UIUserInfo.label.user.home-info.postal.stateprov=#{word.stateProv}:
+UIUserInfo.label.user.home-info.postal.postalcode=#{word.postalCode}:
+UIUserInfo.label.user.home-info.postal.country=#{word.country}:
+UIUserInfo.label.user.home-info.telecom.mobile.number=#{word.mobile}:
+UIUserInfo.label.user.home-info.telecom.telephone.number=#{word.tel}:
+UIUserInfo.label.user.home-info.online.email=#{word.email}:
+UIUserInfo.label.user.home-info.online.uri=Website:
+UIUserInfo.label.option.male=Male
+UIUserInfo.label.option.female=Female
+UIUserInfo.label.option.en=English
+UIUserInfo.label.option.ma=Ma
+UIUserInfo.label.option.vi=Vietnamese
+UIUserInfo.label.option.ar=Arabic
+UIUserInfo.label.option.fr=French
+UIUserInfo.label.option.ru=Russian
+
+UIUserInfo.label.BusinessInfo=Business Informations
+UIUserInfo.label.user.business-info.postal.name=#:
+UIUserInfo.label.user.business-info.postal.city=#{word.city}:
+UIUserInfo.label.user.business-info.postal.stateprov=State/Prov:
+UIUserInfo.label.user.business-info.postal.postalcode=Postal Code:
+UIUserInfo.label.user.business-info.postal.country=#{word.country}:
+UIUserInfo.label.user.business-info.telecom.mobile.number=#{word.mobile}:
+UIUserInfo.label.user.business-info.telecom.telephone.number=#{word.tel}:
+UIUserInfo.label.user.business-info.online.email=#{word.email}:
+UIUserInfo.label.user.business-info.online.uri=#{word.website}:
+
+##org.exoplatform.organization.webui.component.UIUserInGroup
+UIUserInGroup.confirm.deleteUser=Are you sure you want to delete user {0} from group {1}?
+UIUserInGroup.header.userName=#{word.userName}
+UIUserInGroup.header.lastName=#{word.lastName}
+UIUserInGroup.header.firstName=#{word.firstName}
+UIUserInGroup.header.email=#{word.email}
+UIUserInGroup.header.action=#{word.action}
+UIUserInGroup.header.membershipType=Membership Type
+UIUserInGroup.header.lastLoginTime=Last Login
+UIUserInGroup.label.username=#{word.userName}
+UIUserInGroup.label.membership=Membership name
+UIUserInGroup.action.title.DeleteUser=Delete member
+UIUserInGroup.action.title.Edit=Edit member
+
+##org.exoplatform.organization.webui.component.UIGroupInfo
+UIGroupInfo.tab.label.UIUserInGroup=User In Group
+UIGroupInfo.label.UIUserInGroup=
+UIGroupInfo.title=Group Info
+
+##org.exoplatform.organization.webui.component.UIMembershipList
+UIMembershipList.header.name=Membership name
+UIMembershipList.header.createdDate=Created date
+UIMembershipList.header.modifiedDate=Modified date
+UIMembershipList.header.action=#{word.action}
+UIMembershipList.header.description=#{word.description}
+UIMembershipList.action.title.EditMembership=Edit Membership
+UIMembershipList.action.title.DeleteMembership=Delete Membership
UIMembershipList.msg.InUse=You can not delete this membership because it is in use
-UIMembershipList.msg.DeleteMandatory=You can not delete this membership because it is mandatory
-
-##org.exoplatform.organization.webui.component.UIGroupMembershipForm
-UIGroupMembershipForm.title=Add member
-UIGroupMembershipForm.label.username=User Name
-UIGroupMembershipForm.label.membership=Membership
-UIGroupMembershipForm.label.SearchUser=Select User
-UIGroupMembershipForm.label.Refresh=Refresh
-UIGroupMembershipForm.action.Save=#{word.save}
-UIUserMembershipSelector.deleteMembership=Are you sure you want to delete this membership?
-
-##org.exoplatform.organization.webui.component.UIGroupForm
-AddGroup.title=Add New Group
-EditGroup.title=Edit Current Group
-UIGroupForm.label.groupName=Group Name
-UIGroupForm.label.description=Description
-UIGroupForm.label.label=Label
-
-AddGroup.action.Save=#{word.save}
-AddGroup.action.Back=#{word.cancel}
-
-EditGroup.action.Save=#{word.save}
-EditGroup.action.Back=#{word.cancel}
-
+UIMembershipList.msg.DeleteMandatory=You can not delete this membership because it is mandatory
+
+##org.exoplatform.organization.webui.component.UIGroupMembershipForm
+UIGroupMembershipForm.title=Add member
+UIGroupMembershipForm.label.username=User Name
+UIGroupMembershipForm.label.membership=Membership
+UIGroupMembershipForm.label.SearchUser=Select User
+UIGroupMembershipForm.label.Refresh=Refresh
+UIGroupMembershipForm.action.Save=#{word.save}
+UIUserMembershipSelector.deleteMembership=Are you sure you want to delete this membership?
+
+##org.exoplatform.organization.webui.component.UIGroupForm
+AddGroup.title=Add New Group
+EditGroup.title=Edit Current Group
+UIGroupForm.label.groupName=Group Name
+UIGroupForm.label.description=Description
+UIGroupForm.label.label=Label
+
+AddGroup.action.Save=#{word.save}
+AddGroup.action.Back=#{word.cancel}
+
+EditGroup.action.Save=#{word.save}
+EditGroup.action.Back=#{word.cancel}
+
UIGroupForm.msg.group-exist=This group name ialready exists, please enter another one
-UIGroupForm.msg.group-not-exist=Group "{0}" doesn't exist or has been deleted.
-############################################################################
-# org.exoplatform.portal.component.customization.UIShareNavigationForm #
-############################################################################
-
-UITabPane.title.UISharedNavigationForm=Shared Navigation
-
-UISharedNavigationForm.action.Save=#{word.save}
-UISharedNavigationForm.action.Back=#{word.back}
-UISharedNavigationForm.action.Remove=Remove
-
-UISharedNavigationForm.label.navigation=Navigation
-UISharedNavigationForm.label.description=Description
-UISharedNavigation.msg.notSelected=You must select a group!
-UISharedNavigationForm.tab.label.SharedNavigation=Shared Navigation Setting
-UISharedNavigationForm.label.membership=Membership
-UISharedNavigationForm.tab.label.Permission=Permission Selector
-UISharedNavigationForm.label.priority=Priority
-UISharedNavigationForm.msg.user-nonexist=User "{0}" is not exist
-
-#############################################################################
-# org.exoplatform.portal.component.customization.UISharePortalForm#
-#############################################################################
-UITabPane.title.UISharedPortalForm=Shared Portal
-UISharedPortalForm.action.Save=#{word.save}
-UISharedPortalForm.action.Back=#{word.back}
-UISharedPortalForm.action.Remove=Remove
-
-UISharedPortalForm.label.portal=Portal
-UISharedPortalForm.label.description=Description
-UISharedPortalForm.label.membership=Membership
-UISharedPortalForm.label.priority=Priority
-
-UISharedPortalForm.tab.label.SharedPortal=Portal Setting
-UISharedPortalForm.tab.label.Permission=Permission Selector
-
-UITabPane.title.UIUserInGroup=Group Info
-UIGroupSharedInfo.title=Share Info
-UISharedPortalForm.msg.user-nonexist=User "{0}" is not exist
-
-#############################################################################
-# org.exoplatform.portal.organization.component.UIGroupManagement#
-#############################################################################
-UIGroupManagement.label.Groups=Groups
-UIGroupManagement.deleteGroup=Are you sure you want to delete this group?
-UIGroupManagement.label.Groups=Groups
-UIGroupManagement.label.AddGroup=Add New Group
-UIGroupManagement.label.EditGroup=Edit Selected Group
-UIGroupManagement.label.DeleteGroup=Delete Selected Group
-
-#############################################################################
-# org.exoplatform.portal.organization.component.UISharedNavigation#
-#############################################################################
-UITabPane.title.UISharedNavigation=Group Page Navigation
-UISharedNavigation.label.userNavigation=User Page Navigation Name
-UISharedNavigation.label.priority=Priority
+UIGroupForm.msg.group-not-exist=Group "{0}" doesn't exist or has been deleted.
+############################################################################
+# org.exoplatform.portal.component.customization.UIShareNavigationForm #
+############################################################################
+
+UITabPane.title.UISharedNavigationForm=Shared Navigation
+
+UISharedNavigationForm.action.Save=#{word.save}
+UISharedNavigationForm.action.Back=#{word.back}
+UISharedNavigationForm.action.Remove=Remove
+
+UISharedNavigationForm.label.navigation=Navigation
+UISharedNavigationForm.label.description=Description
+UISharedNavigation.msg.notSelected=You must select a group!
+UISharedNavigationForm.tab.label.SharedNavigation=Shared Navigation Setting
+UISharedNavigationForm.label.membership=Membership
+UISharedNavigationForm.tab.label.Permission=Permission Selector
+UISharedNavigationForm.label.priority=Priority
+UISharedNavigationForm.msg.user-nonexist=User "{0}" is not exist
+
+#############################################################################
+# org.exoplatform.portal.component.customization.UISharePortalForm#
+#############################################################################
+UITabPane.title.UISharedPortalForm=Shared Portal
+UISharedPortalForm.action.Save=#{word.save}
+UISharedPortalForm.action.Back=#{word.back}
+UISharedPortalForm.action.Remove=Remove
+
+UISharedPortalForm.label.portal=Portal
+UISharedPortalForm.label.description=Description
+UISharedPortalForm.label.membership=Membership
+UISharedPortalForm.label.priority=Priority
+
+UISharedPortalForm.tab.label.SharedPortal=Portal Setting
+UISharedPortalForm.tab.label.Permission=Permission Selector
+
+UITabPane.title.UIUserInGroup=Group Info
+UIGroupSharedInfo.title=Share Info
+UISharedPortalForm.msg.user-nonexist=User "{0}" is not exist
+
+#############################################################################
+# org.exoplatform.portal.organization.component.UIGroupManagement#
+#############################################################################
+UIGroupManagement.label.Groups=Groups
+UIGroupManagement.deleteGroup=Are you sure you want to delete this group?
+UIGroupManagement.label.Groups=Groups
+UIGroupManagement.label.AddGroup=Add New Group
+UIGroupManagement.label.EditGroup=Edit Selected Group
+UIGroupManagement.label.DeleteGroup=Delete Selected Group
+
+#############################################################################
+# org.exoplatform.portal.organization.component.UISharedNavigation#
+#############################################################################
+UITabPane.title.UISharedNavigation=Group Page Navigation
+UISharedNavigation.label.userNavigation=User Page Navigation Name
+UISharedNavigation.label.priority=Priority
UISharedNavigation.action.Save=Save
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -20,5 +20,5 @@
UISiteManagement.action.addNewPortal=Aggiungi un Nuovo Portale
UISiteManagement.label.editLayout=Modifica il Layout
UISiteManagement.label.editNav=Modifica la Navigazione
-UISiteManagement.label.editPortalProp=Modifica le propriet\u00e0 del Portale
-UISiteManagement.label.deletePortal=Elimina
+UISiteManagement.label.editPortalProp=Modifica le propriet\u00E0 del Portale
+UISiteManagement.label.deletePortal=Elimina
\ No newline at end of file
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -1,22 +1,22 @@
-#
-# Copyright (C) 2009 eXo Platform SAS.
-#
-# This is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation; either version 2.1 of
-# the License, or (at your option) any later version.
-#
-# This software is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this software; if not, write to the Free
-# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-#
-
-UIRegisterForm.registerWithSuccess.message=Hai registrato un nuovo account con successo!
-UIRegisterForm.title=Registra un Nuovo Account
-UIRegisterForm.label.action.CheckUsernameAvailability=Cerca Utenti
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# This is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2.1 of
+# the License, or (at your option) any later version.
+#
+# This software is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this software; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+#
+
+UIRegisterForm.registerWithSuccess.message=Hai registrato un nuovo account con successo!
+UIRegisterForm.title=Registra un Nuovo Account
+UIRegisterForm.label.action.CheckUsernameAvailability=Cerca Utenti
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -20,4 +20,4 @@
UIStarToolbarPortlet.item.ChangeLanguage=Cambia Linguaggio
UIStarToolbarPortlet.item.ChangeSkin=Cambia Skin
UIStarToolbarPortlet.item.AccountSetting=Preferenze Account
-UIStarToolbarPortlet.item.Logout=Uscita
+UIStarToolbarPortlet.item.Logout=Uscita
\ No newline at end of file
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-javax.portlet.title=Portlet della Navigazione
+javax.portlet.title=Portlet della Navigazione
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-javax.portlet.title=Portlet della Navigazione
+javax.portlet.title=Portlet della Navigazione
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -20,7 +20,7 @@
#####################################################################################
# EXCEPTION MAPPINGS #
#####################################################################################
-UIGroovyPortlet.note.Text=Questa \u00e8 una Groovy Portlet (Portlet di esempio) potr\u00e0 essere sviluppata come web application in futuro.
+UIGroovyPortlet.note.Text=Questa \u00E8 una Groovy Portlet (Portlet di esempio) potr\u00E0 essere sviluppata come web application in futuro.
UIIFrameEditMode.title=Cambia URL
UIIFrameEditMode.label.iframeUrl=URL
UIIFrameEditMode.label.editmode=Modifica
@@ -34,8 +34,8 @@
#############################################################################
UIHomePagePortlet.Label.Title=Prova GateIn 3.0 con uno di questi account utente:
-UIHomePagePortlet.Label.Intro=La nuova versione nasce con una moderna interfaccia utente<br/>Layout Classici e WebOS Desktop<br/> Funzionalit\u00e0 di Drag and Drop. Wizard di creazione della pagina<br/>E oltre...
-UIHomePagePortlet.Label.Slogan=Il Meglio di eXo e JBoss Portal<div>GateIn 3.0 Beta 5</div>
+UIHomePagePortlet.Label.Intro=La nuova versione nasce con una moderna interfaccia utente<br/>Layout Classici e WebOS Desktop<br/> Funzionalit\u00E0 di Drag and Drop. Wizard di creazione della pagina<br/>E oltre...
+UIHomePagePortlet.Label.Slogan=Il Meglio di eXo e JBoss Portal<div>GateIn 3.0 Beta 4</div>
UIHomePagePortlet.Label.Username=Nome utente:
UIHomePagePortlet.Label.Password=Password:
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -20,7 +20,7 @@
#####################################################################################
# EXCEPTION MAPPINGS #
#####################################################################################
-UILogoPortlet.note.Text=Questo \u00e8 il Logo
+UILogoPortlet.note.Text=Questo \u00E8 il Logo
UILogoEditMode.title=Cambia URL
UILogoEditMode.label.logoUrl=URL
UILogoEditMode.label.editmode=Modifica
@@ -29,4 +29,4 @@
UILogoPortlet.action.Register=Registra
UILogoPortlet.action.signout=Uscita
UILogoPortlet.action.signin=Ingresso
-UILogoPortlet.label.Welcome=Benvenuto
+UILogoPortlet.label.Welcome=Benvenuto
\ No newline at end of file
Modified: portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/i18n/MessageResource_it.js
===================================================================
--- portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/i18n/MessageResource_it.js 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/eXoResources/src/main/webapp/javascript/eXo/i18n/MessageResource_it.js 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,6 +17,6 @@
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
-eXo.i18n.I18NMessage.SessionTimeout = "La Sessione p scaduta ! Aggiorna la pagina del browser.";
-eXo.i18n.I18NMessage.TargetBlockNotFound = "Il target blockId da aggiornare non � stato trovato : {0}";
-eXo.i18n.I18NMessage.BlockUpdateNotFound = "Il blockId da aggiornare non � stato trovato : {0}";
+eXo.i18n.I18NMessage.SessionTimeout = "La Sessione \u00E8 scaduta ! Aggiorna la pagina del browser.";
+eXo.i18n.I18NMessage.TargetBlockNotFound = "Il target blockId da aggiornare non \u00E8 stato trovato : {0}";
+eXo.i18n.I18NMessage.BlockUpdateNotFound = "Il blockId da aggiornare non \u00E8 stato trovato : {0}";
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,6 +17,6 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-organization.title=Organizzazione
-organization.newstaff=Nuovo Staff
-organization.management=Gestione utenti e gruppi
+organization.title=Organizzazione
+organization.newstaff=Nuovo Staff
+organization.management=Gestione utenti e gruppi
\ No newline at end of file
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -23,4 +23,4 @@
administration.community-management=Gestione Community
administration.i18n=Internazionalizzazione
administration.console=Console Web
-administration.pageManagement=Gestione Pagina
+administration.pageManagement=Gestione Pagina
\ No newline at end of file
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,6 +17,6 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-platform.guests.register=Registra
-platform.guests.sitemap=Mappa del Sito
-platform.guests.link=Collegamento
+platform.guests.register=Registra
+platform.guests.sitemap=Mappa del Sito
+platform.guests.link=Collegamento
\ No newline at end of file
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,10 +17,10 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-platform.users.iframe=IFrame
-platform.users.mylink=Mio Link
-platform.users.mylink-blog=Blog
-platform.users.mylink-google=Google
-platform.users.mylink-facebook=Facebook
-platform.users.sitemap=Mappa del Sito
-platform.users.dashboard=Dashboard
+platform.users.iframe=IFrame
+platform.users.mylink=Mio Link
+platform.users.mylink-blog=Blog
+platform.users.mylink-google=Google
+platform.users.mylink-facebook=Facebook
+platform.users.sitemap=Mappa del Sito
+platform.users.dashboard=Dashboard
\ No newline at end of file
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -17,10 +17,10 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-portal.classic.home=Home
-portal.classic.sitemap=Mappa del Sito
-portal.classic.groupnavigation=Navigazione dei Gruppi
-portal.classic.portalnavigation=Navigazione del Portale
-portal.classic.register=Registrazione
-portal.classic.webexplorer=Web Explorer
-UIAddNewApplication.label.AddApplication = Aggiungi Applicazione
+portal.classic.home=Home
+portal.classic.sitemap=Mappa del Sito
+portal.classic.groupnavigation=Navigazione dei Gruppi
+portal.classic.portalnavigation=Navigazione del Portale
+portal.classic.register=Registrazione
+portal.classic.webexplorer=Web Explorer
+UIAddNewApplication.label.AddApplication = Aggiungi Applicazione
\ No newline at end of file
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -1,159 +1,191 @@
-#
-# Copyright (C) 2009 eXo Platform SAS.
-#
-# This is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation; either version 2.1 of
-# the License, or (at your option) any later version.
-#
-# This software is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this software; if not, write to the Free
-# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-#
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
-###################################################################
-# EXPRESSION START WITH 'A' #
-###################################################################
-word.accessPermission=Permesso di Accesso
-word.abort=Abbandona
-word.action=Azione
-###################################################################
-# EXPRESSION START WITH 'B' #
-###################################################################
-word.back=Indietro
-word.birthday=Compleanno
+ Copyright (C) 2009 eXo Platform SAS.
+
+ This is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as
+ published by the Free Software Foundation; either version 2.1 of
+ the License, or (at your option) any later version.
+
+ This software is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this software; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-###################################################################
-# EXPRESSION START WITH 'c' #
-###################################################################
-word.cancel=Annulla
-word.category=Categoria
-word.change=Cambia
-word.city=Citt\u00e0
-word.close=Chiudi
-word.comment=Commento
-word.content=Contenuto
-word.country=Nazione
+-->
-###################################################################
-# EXPRESSION START WITH 'd' #
-###################################################################
-word.date=Data
-word.decorator=Decorator
-word.department=Dipartimento
-word.description=Descrizione
+<bundle>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'A' #
+ ###################################################################
+ -->
+ <word>
+ <accessPermission>Permesso di Accesso</accessPermission>
+ <abort>Abbandona</abort>
+ <action>Azione</action>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'B' #
+ ###################################################################
+ -->
+ <back>Indietro</back>
+ <birthday>Compleanno</birthday>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'c' #
+ ###################################################################
+ -->
+ <cancel>Annulla</cancel>
+ <category>Categoria</category>
+ <change>Cambia</change>
+ <city>Citt\u00E0</city>
+ <close>Chiudi</close>
+ <comment>Commento</comment>
+ <content>Contenuto</content>
+ <country>Nazione</country>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'd' #
+ ###################################################################
+ -->
+ <date>Data</date>
+ <decorator>Decoratore</decorator>
+ <department>Dipartimento</department>
+ <description>Descrizione</description>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'e' #
+ ###################################################################
+ -->
+ <editPermission>Modifica il permesso</editPermission>
+ <email>Email</email>
+ <employer>Dipendente</employer>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'f' #
+ ###################################################################
+ -->
+ <familyName>Cognome</familyName>
+ <finish>Termina</finish>
+ <firstName>Nome</firstName>
+ <format>Formato</format>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'g' #
+ ###################################################################
+ -->
+ <groupId>Id del Gruppo</groupId>
+ <gender>Sesso</gender>
+ <givenName>Nome</givenName>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'h' #
+ ###################################################################
+ -->
+ <height>Altezza</height>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'i' #
+ ###################################################################
+ -->
+ <icon>Icona</icon>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'j' #
+ ###################################################################
+ -->
+ <jobTitle>Qualifica lavorativa</jobTitle>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'l' #
+ ###################################################################
+ -->
+ <locale>Lingua</locale>
+ <label>Etichetta</label>
+ <language>Linguaggio</language>
+ <lastName>Cognome</lastName>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'm' #
+ ###################################################################
+ -->
+ <mobile>Mobile</mobile>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'n' #
+ ###################################################################
+ -->
+ <name>Nome</name>
+ <nickName>Nick Name</nickName>
+ <next>Prossimo</next>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'o' #
+ ###################################################################
+ -->
+ <owner>Proprietario</owner>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'p' #
+ ###################################################################
+ -->
+ <postalCode>Codice Postale</postalCode>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'r' #
+ ###################################################################
+ -->
+ <refresh>Aggiorna</refresh>
+ <restore>Recupera</restore>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 's' #
+ ###################################################################
+ -->
+ <save>Salva</save>
+ <stateProv>=Stato/Prov</stateProv>
+ <street>Strada</street>
+ <style>Stile</style>
+ <subject>Soggetto</subject>
+ <summary>Intestazione</summary>
+ <skin>Skin</skin>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 't' #
+ ###################################################################
+ -->
+ <template>Template</template>
+ <tel>Tel</tel>
+ <title>Titolo</title>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'u' #
+ ###################################################################
+ -->
+ <uri>Uri</uri>
+ <userName>Nome Utente</userName>
+ <update>Aggiorna</update>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'v' #
+ ###################################################################
+ -->
+ <viewPermission>Visualizza il permesso</viewPermission>
+ <!--
+ ###################################################################
+ # EXPRESSION START WITH 'w' #
+ ###################################################################
+ -->
+ <width>Larghezza</width>
+ <website>Sito Web</website>
+ </word>
+
+</bundle>
-###################################################################
-# EXPRESSION START WITH 'e' #
-###################################################################
-word.editPermission=Modifica il permesso
-word.email=Email
-word.employer=Dipendente
-
-###################################################################
-# EXPRESSION START WITH 'f' #
-###################################################################
-word.familyName=Cognome
-word.finish=Termina
-word.firstName=Nome
-word.format=Formato
-
-###################################################################
-# EXPRESSION START WITH 'g' #
-###################################################################
-word.groupId=Id del Gruppo
-word.gender=Sesso
-word.givenName=Nome
-
-###################################################################
-# EXPRESSION START WITH 'h' #
-###################################################################
-word.height=Altezza
-
-###################################################################
-# EXPRESSION START WITH 'i' #
-###################################################################
-word.icon=Icona
-
-###################################################################
-# EXPRESSION START WITH 'i' #
-###################################################################
-word.jobTitle=Qualifica lavorativa
-
-###################################################################
-# EXPRESSION START WITH 'l' #
-###################################################################
-word.locale=Lingua
-word.label=Etichetta
-word.language=Linguaggio
-word.lastName=Cognome
-
-###################################################################
-# EXPRESSION START WITH 'm' #
-###################################################################
-word.mobile=Mobile
-
-###################################################################
-# EXPRESSION START WITH 'n' #
-###################################################################
-word.name=Nome
-word.nickName=Nick Name
-word.next=Prossimo
-
-###################################################################
-# EXPRESSION START WITH 'o' #
-###################################################################
-word.owner=Proprietario
-
-###################################################################
-# EXPRESSION START WITH 'p' #
-###################################################################
-word.postalCode=Codice Postale
-
-###################################################################
-# EXPRESSION START WITH 'r' #
-###################################################################
-word.refresh=Aggiorna
-word.restore=Recupera
-
-###################################################################
-# EXPRESSION START WITH 's' #
-###################################################################
-word.save=Salva
-word.stateProv=Stato/Prov
-word.street=Strada
-word.style=Stile
-word.subject=Soggetto
-word.summary=Intestazione
-word.skin=Skin
-
-###################################################################
-# EXPRESSION START WITH 't' #
-###################################################################
-word.template=Template
-word.tel=Tel
-word.title=Titolo
-
-###################################################################
-# EXPRESSION START WITH 'u' #
-###################################################################
-word.uri=Uri
-word.userName=Nome Utente
-word.update=Aggiorna
-
-###################################################################
-# EXPRESSION START WITH 'v' #
-###################################################################
-word.viewPermission=Visualizza il permesso
-
-###################################################################
-# EXPRESSION START WITH 'w' #
-###################################################################
-word.width=Larghezza
-word.website=Sito Web
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -22,14 +22,14 @@
#############################################################################
#class org.exoplatform.webui.form.Validator.EmptyFieldValidator
#{0}=input field name
-EmptyStringValidator.msg.empty-input=Il campo "{0}" \u00e8 richiesto
+EmptyStringValidator.msg.empty-input=Il campo "{0}" \u00E8 richiesto
#############################################################################
# Email Address Validator #
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.EmailAddressValidator
#{1}=input field name, {0} user input email address
-EmailAddressValidator.msg.invalid-email=Hai inserito "{0}" nel campo {1}, l'indirizzo email non \u00e8 valido
+EmailAddressValidator.msg.invalid-email=Hai inserito "{0}" nel campo {1}, l'indirizzo email non \u00E8 valido
#############################################################################
# Number Format Validator #
@@ -37,7 +37,7 @@
#class org.exoplatform.webui.form.validator.Validator.NumberFormatValidator
#{0}=input field name, {1} user input limit access
# old:NumberFormatValidator.msg.invalid-limitAccess=You have entered "{0}" in field {1}, it is an invalid \ limit access
-NumberFormatValidator.msg.invalid-limitAccess=Hai inserito "{0}" nel campo {1}, l'accesso a questo campo \u00e8 limitato
+NumberFormatValidator.msg.invalid-limitAccess=Hai inserito "{0}" nel campo {1}, l'accesso a questo campo \u00E8 limitato
#{0}=input field name
NumberFormatValidator.msg.Invalid-input=Il valore inserito nel campo {0}, dovresti inserire un numero
@@ -46,7 +46,7 @@
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.IdentifierValidator
#{0}=input field name
-IdentifierValidator.msg.empty-input=Il campo "{0}" non pu\u00f2 essere vuoto
+IdentifierValidator.msg.empty-input=Il campo "{0}" non pu\u00F2 essere vuoto
#{0}=input field name
IdentifierValidator.msg.invalid-char=Sono permessi soltanto caratteri alfabetici, numerici, trattino e underscore per il campo {0}
@@ -55,7 +55,7 @@
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.NameValidator
#{0}=input field name
-NameValidator.msg.empty-input=Il campo "{0}" non pu\u00f2 essere vuoto
+NameValidator.msg.empty-input=Il campo "{0}" non pu\u00F2 essere vuoto
#{0}=input field name
NameValidator.msg.invalid-char=Sono permessi soltanto caratteri alfabetici, numerici, punto, trattino e underscore per il campo {0}
@@ -108,7 +108,7 @@
# Message Service properties #
#############################################################################
#this exception is throw in GroupQueryHandler class
-OrganizationService.unique-group-exception=Il nome del gruppo {0} esiste gi\u00e0
+OrganizationService.unique-group-exception=Il nome del gruppo {0} esiste gi\u00E0
#Throw in org.exoplatform.commons.utils.PageList, {0}=request page parameter, {1}=available pages parameter
PageList.page-out-of-range=Stai provando ad aprire la pagina {0}, ma ci sono soltanto {1} pagine disponibili
#Throw in exo.services.communication.message.impl.MessageServiceImpl.
@@ -116,7 +116,7 @@
MessageService.account-not-found=Non posso trovare l'account {0} per l'utente {1}
#Throw in exo.services.communication.message.impl.StandaloneProtocolPlugin.
#{0}=to address
-MessageService.invalid-standalone-message-address=Stai usando l'account standalone con \ l'indirizzo {0} non \u00e8 valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount
+MessageService.invalid-standalone-message-address=Stai usando l'account standalone con \ l'indirizzo {0} non \u00E8 valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount
#Throw in exo.services.communication.message.impl.MailServiceImpl
#{0}=The orginal error message thrown by java mail library
MessageService.send-message-fail=Non posso mandare il messaggio. Verifica l'indirizzo email \n\ Errore: {0}
@@ -127,4 +127,4 @@
#Throw in org.exoplatform.services.communication.forum.impl.ForumServiceImpl
#Throw in org.exoplatform.services.indexing.Searcher
#{0}=The orginal error message throw by lucence
-Searcher.msg.search-expression-error=C'\u00e8 un errore nell'espressione inserita.<br />{0}
+Searcher.msg.search-expression-error=C'\u00E8 un errore nell'espressione inserita.<br />{0}
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.xml 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.xml 2010-01-15 23:31:24 UTC (rev 1325)
@@ -30,7 +30,7 @@
-->
<EmptyStringValidator>
<msg>
- <empty-input>Il campo "{0}" è richiesto</empty-input>
+ <empty-input>Il campo "{0}" \u00E8 richiesto</empty-input>
</msg>
</EmptyStringValidator>
<!--
@@ -42,7 +42,7 @@
-->
<EmailAddressValidator>
<msg>
- <invalid-email>Hai inserito "{0}" nel campo {1}, non è un valido</invalid-email>
+ <invalid-email>Hai inserito "{0}" nel campo {1}, non \u00E8 un valido</invalid-email>
</msg>
</EmailAddressValidator>
<!--
@@ -54,8 +54,8 @@
-->
<NumberFormatValidator>
<msg>
- <invalid-limitAccess>Hai inserito "{0}" nel campo {1}, non è un valido \ limite di accesso</invalid-limitAccess>
- <Invalid-input>Il valore inserito nel campo {0}, non è nel formato numerico</Invalid-input>
+ <invalid-limitAccess>Hai inserito "{0}" nel campo {1}, non \u00E8 un valido \ limite di accesso</invalid-limitAccess>
+ <Invalid-input>Il valore inserito nel campo {0}, non \u00E8 nel formato numerico</Invalid-input>
</msg>
</NumberFormatValidator>
<!--
@@ -70,7 +70,7 @@
-->
<IdentifierValidator>
<msg>
- <empty-input>Il campo "{0}" non può essere vuoto</empty-input>
+ <empty-input>Il campo "{0}" non pu\u00F2 essere vuoto</empty-input>
<invalid-char>Sono permessi soltanto caratteri alfabetici, numerici e underscore per il campo {0}</invalid-char>
</msg>
</IdentifierValidator>
@@ -86,7 +86,7 @@
-->
<NameValidator>
<msg>
- <empty-input>Il campo "{0}" non può essere vuotoy</empty-input>
+ <empty-input>Il campo "{0}" non pu\u00F2 essere vuotoy</empty-input>
<invalid-char>Sono permessi soltanto caratteri alfabetici, numerici, punto, trattino e underscore per il campo {0}</invalid-char>
</msg>
</NameValidator>
@@ -179,7 +179,7 @@
#this exception is throw in GroupQueryHandler class
-->
<OrganizationService>
- <unique-group-exception>Il nome del gruppo {0} esiste già</unique-group-exception>
+ <unique-group-exception>Il nome del gruppo {0} esiste gi\u00E0</unique-group-exception>
</OrganizationService>
<!--
#Throw in org.exoplatform.commons.utils.PageList, {0}=request page parameter, {1}=available pages parameter
@@ -193,7 +193,7 @@
-->
<MessageService>
<account-not-found>Non posso trovare l'account {0} per l'utente {1}</account-not-found>
- <invalid-standalone-message-address>Stai usando l'account standalone con \ l'indirizzo {0} is not valid. non è valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount</invalid-standalone-message-address>
+ <invalid-standalone-message-address>Stai usando l'account standalone con \ l'indirizzo {0} is not valid. non \u00E8 valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount</invalid-standalone-message-address>
<send-message-fail>Non posso mandare il messaggio. Verifica l'indirizzo email \n\ Errore: {0}</send-message-fail>
</MessageService>
<!--
@@ -214,7 +214,7 @@
-->
<Searcher>
<msg>
- <search-expression-error><![CDATA[C'è un errore nell'espressione inserita.<br />{0}]]></search-expression-error>
+ <search-expression-error><![CDATA[C'\u00E8 un errore nell'espressione inserita.<br />{0}]]></search-expression-error>
</msg>
</Searcher>
</bundle>
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties 2010-01-15 23:31:24 UTC (rev 1325)
@@ -34,8 +34,8 @@
#class org.exoplatform.webui.form.validator.Validator.EmptyFieldValidator
#{0}=input field name
-EmptyFieldValidator.msg.empty-input=Il campo "{0}" \u00e8 richiesto.
-EmptyFieldValidator.msg.empty=L'informazione nel campo "{0}" non pu\u00f2 essere vuota.
+EmptyFieldValidator.msg.empty-input=Il campo "{0}" \u00E8 richiesto.
+EmptyFieldValidator.msg.empty=L'informazione nel campo "{0}" non pu\u00F2 essere vuota.
ExpressionValidator.msg.value-invalid=Il campo "{0}" deve essere nel formato "{1}".
UITestForm.label.UIAddApplication=Aggiungi Applicazione
StringLengthValidator.msg.length-invalid=La lunghezza del testo nel campo "{0}" deve essere tra i caratteri "{1}" e "{2}".
@@ -46,14 +46,14 @@
#class org.exoplatform.webui.form.validator.Validator.EmailAddressValidator
#{0}=input field name, {1} user input email address
-EmailAddressValidator.msg.Invalid-input=Il tuo indirizzo email non \u00e8 valido. Inserisci un indirizzo differente.
+EmailAddressValidator.msg.Invalid-input=Il tuo indirizzo email non \u00E8 valido. Inserisci un indirizzo differente.
#############################################################################
# Mandatory Validator #
#############################################################################
#{0} = input field name
-MandatoryValidatorIterator.msg.empty=La lista "{0}" non pu\u00f2 essere vuota.
+MandatoryValidatorIterator.msg.empty=La lista "{0}" non pu\u00F2 essere vuota.
#############################################################################
# Number Format Validator #
@@ -74,7 +74,7 @@
#class org.exoplatform.webui.organization.UIListPermissionSelector.EmptyIteratorValidator
#{0}=input field name
-EmptyIteratorValidator.msg.empty=La lista "{0}" non pu\u00f2 essere vuota.
+EmptyIteratorValidator.msg.empty=La lista "{0}" non pu\u00F2 essere vuota.
#############################################################################
# Resource Validator #
@@ -117,8 +117,8 @@
UIPortalComposer.title.UIPortalComposer=Modifica con l'Inline Composer
UIPortalComposer.action.Abort=Abbandona
UIPortalComposer.action.Finish=Termina
-UIPortalComposer.action.ViewProperties=Propriet\u00e0 del Portale
-UIPortalComposer.action.SwitchMode=Passa alla modalit\u00e0 di visualizzazione
+UIPortalComposer.action.ViewProperties=Propriet\u00E0 del Portale
+UIPortalComposer.action.SwitchMode=Passa alla modalit\u00E0 di visualizzazione
UITabPane.title.UIApplicationList=Applicazioni
UITabPane.title.UIContainerList=Contenitori
@@ -218,24 +218,24 @@
#############################################################################
UIAccountForm.msg.password-is-not-match=Password e Conferma Passworddevono essere le stesse.
-UIAccountInputSet.msg.user-exist=Il nome utente esiste gi\u00e0, inserisci un nome differente.
-UIAccountInputSet.msg.user-not-exist=Il nome utente \u00e8 ancora disponibile.
-UIAccountInputSet.msg.user-is-deleted=L'utenza pu\u00f2 essere eliminata.
-UIAccountInputSet.msg.email-exist=La mail esiste gi\u00e0, inserisci un differente indirizzo.
-UIAccountInputSet.msg.empty-input=Il nome utente non pu\u00f2 essere vuoto.
+UIAccountInputSet.msg.user-exist=Il nome utente esiste gi\u00E0, inserisci un nome differente.
+UIAccountInputSet.msg.user-not-exist=Il nome utente \u00E8 ancora disponibile.
+UIAccountInputSet.msg.user-is-deleted=L'utenza pu\u00F2 essere eliminata.
+UIAccountInputSet.msg.email-exist=La mail esiste gi\u00E0, inserisci un differente indirizzo.
+UIAccountInputSet.msg.empty-input=Il nome utente non pu\u00F2 essere vuoto.
UIAccountInputSet.msg.successful.create.user=Hai registrato un nuovo account.
-UIAccountInputSet.msg.successful.update.user=Il profilo utente \u00e8 stato aggiornato.
-UIUserProfileInputSet.msg.sucsesful.update.userprofile=Il profilo utente \u00e8 stato aggiornato.
+UIAccountInputSet.msg.successful.update.user=Il profilo utente \u00E8 stato aggiornato.
+UIUserProfileInputSet.msg.sucsesful.update.userprofile=Il profilo utente \u00E8 stato aggiornato.
UIUserProfileInputSet.title=Informazioni Personali
UIUserProfileInputSet.label.Profile=Profilo
UIUserProfileInputSet.label.HomeInfo=Informazioni della Home
UIUserProfileInputSet.label.BusinessInfo=Informazioni di Business
UIGroupMembershipForm.msg.user-not-exist=L'utente "{0}" non esiste.
-UIGroupMembershipForm.msg.user-not-empty=Il nome utente non pu\u00f2 essere vuoto.
-UIGroupMembershipForm.msg.Invalid-char=Il campo "{0}" pu\u00f2 contenere soltanto caratteri alfabetici, numerici, virgolae trattino. Il primo e ultimo carattere devono essere alfabetici.
+UIGroupMembershipForm.msg.user-not-empty=Il nome utente non pu\u00F2 essere vuoto.
+UIGroupMembershipForm.msg.Invalid-char=Il campo "{0}" pu\u00F2 contenere soltanto caratteri alfabetici, numerici, virgolae trattino. Il primo e ultimo carattere devono essere alfabetici.
UIGroupMembershipForm.msg.duplicate-user=Alcuni utenti sono duplicati. Verifica!
UIGroupMembershipForm.msg.group-not-select=Seleziona un gruppo.
-UIGroupMembershipForm.msg.membership-exist=L'utente "{0}" ha gi\u00e0 la membership per il gruppo "{1}", seleziona un'altra membership.
+UIGroupMembershipForm.msg.membership-exist=L'utente "{0}" ha gi\u00E0 la membership per il gruppo "{1}", seleziona un'altra membership.
UILoginForm.msg.Invalid-account=Il Nome Utente e/or la Password sono sbagliate o vuote. Per favore riprova.
UILoginForm.label.welcome=Benvenuto
UILoginForm.label.login=Login
@@ -289,7 +289,7 @@
UIPortletForm.label.height=#{word.height}:
UIPortletForm.label.showInfoBar=Mostra la barra delle Info :
UIPortletForm.label.windowId=Id della Finestra :
-UIPortletForm.label.showPortletMode=Mostra la modalit\u00e0 della Portlet :
+UIPortletForm.label.showPortletMode=Mostra la modalit\u00E0 della Portlet :
UIPortletForm.label.showWindowState=Mostra lo Stato della Finestra :
UIPortletForm.label.id=Id della Portlet :
UIPortletForm.label.displayName=Nome Visualizzato:
@@ -319,13 +319,13 @@
UIDescription.title.portalManagement=Navigazione del Portale
UIDescription.title.pageWizard=Wizard per la Creazione della Pagina
UIDescription.title.pageEditWizard=Wizard per la Modifica della Pagina
-UIDescription.content.pageManagement=<strong>Gestione pagine:</strong><br/>Questo \u00e8 l'elenco di tutte le pagine.<br/>Puoi vedere l'anteprima (solo su normali pagine),</br/><br/> modificare o eliminare le pagine se hai i dovuti permessi.<br/><br/>Puoi cercare le pagine per <em>Tipo di proprietario</em> (portal/group/user), tramite <em>Id del proprietario</em> (nome del tipo di proprietario), o per <em>Nome della pagina.</em><br/><br/>Per creare una nuova pagina, clicca sul bottone "Aggiungi Nuova Pagina" e inserisci i campi richiesti.
-UIDescription.content.portalManagement=<strong>Gestione Portali: </strong><br/>Questo \u00e8 l'elenco di tutti i portali. Per creare un nuovo portale,clicca sul bottone "Crea Nuovo Portale" e inserisci i campi richiesti.<br/>Puoi modificare o eliminare un portale da quest'elenco se hai i giusti permessi.
+UIDescription.content.pageManagement=<strong>Gestione pagine:</strong><br/>Questo \u00E8 l'elenco di tutte le pagine.<br/>Puoi vedere l'anteprima (solo su normali pagine),</br/><br/> modificare o eliminare le pagine se hai i dovuti permessi.<br/><br/>Puoi cercare le pagine per <em>Tipo di proprietario</em> (portal/group/user), tramite <em>Id del proprietario</em> (nome del tipo di proprietario), o per <em>Nome della pagina.</em><br/><br/>Per creare una nuova pagina, clicca sul bottone "Aggiungi Nuova Pagina" e inserisci i campi richiesti.
+UIDescription.content.portalManagement=<strong>Gestione Portali: </strong><br/>Questo \u00E8 l'elenco di tutti i portali. Per creare un nuovo portale,clicca sul bottone "Crea Nuovo Portale" e inserisci i campi richiesti.<br/>Puoi modificare o eliminare un portale da quest'elenco se hai i giusti permessi.
UIDescription.content.pageWizard=Da eliminare
-UIDescription.content.pageWizard2=<strong>Step 1: Le modifiche sulla pagina includono il percorso della pagina, il nome del nodo e il nome visualizzato.</strong><br/> Procedi come segue: <br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona il nodo della pagina per cui desideri creare una pagina figlia <br/>- Inserisci un <em>Nome del Nodo </em><br/>- Inserisci un <em>Nome Visualizzato</em> (option)<br/>- Seleziona, se vuoi, la check box (option) <em>Visibile</em> <br/>- Seleziona, se vuoi, la check box (option) <em>Data & tempo di pubblicazione</em> <br/> Se la check box <em>Data & tempo di pubblicazione</em> \u00e8 selezionata:<br/> - Inserisci <em>Data Inizio di pubblicazione</em><br/> - Inserisci <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere con il prossimo step
+UIDescription.content.pageWizard2=<strong>Step 1: Le modifiche sulla pagina includono il percorso della pagina, il nome del nodo e il nome visualizzato.</strong><br/> Procedi come segue: <br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona il nodo della pagina per cui desideri creare una pagina figlia <br/>- Inserisci un <em>Nome del Nodo </em><br/>- Inserisci un <em>Nome Visualizzato</em> (option)<br/>- Seleziona, se vuoi, la check box (option) <em>Visibile</em> <br/>- Seleziona, se vuoi, la check box (option) <em>Data & tempo di pubblicazione</em> <br/> Se la check box <em>Data & tempo di pubblicazione</em> \u00E8 selezionata:<br/> - Inserisci <em>Data Inizio di pubblicazione</em><br/> - Inserisci <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere con il prossimo step
UIDescription.content.pageWizard3=<strong>Step 2: Configurare il layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona uno dei layout dell'elenco <br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare allo step precedente
UIDescription.content.pageEditWizard=La descrizione e la guida del Wizard di modifica della pagina <br/> sono qui.
-UIDescription.content.pageEditWizard1=<strong>Step 1: Cambia il nome visualizzabile, la visibilit\u00e0 e il periodo di pubblicazione di una pagina.</strong><br/> Procedi come segue:<br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona la pagina che vuoi modificare <br/>- Modifica il <em>Nome visualizzato</em> se richiesto<br/>- Check or uncheck the <em>Visible</em> check box<br/>- Seleziona, se vuoi, la check box <em>Data & tempo di pubblicazione</em> <br/> Se la <em>Data & tempo di pubblicazione</em> \u00e8 selezionata:<br/> - Modifica <em>Data Inizio di pubblicazione</em><br/> - Modifica <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere al prossimo step
+UIDescription.content.pageEditWizard1=<strong>Step 1: Cambia il nome visualizzabile, la visibilit\u00E0 e il periodo di pubblicazione di una pagina.</strong><br/> Procedi come segue:<br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona la pagina che vuoi modificare <br/>- Modifica il <em>Nome visualizzato</em> se richiesto<br/>- Check or uncheck the <em>Visible</em> check box<br/>- Seleziona, se vuoi, la check box <em>Data & tempo di pubblicazione</em> <br/> Se la <em>Data & tempo di pubblicazione</em> \u00E8 selezionata:<br/> - Modifica <em>Data Inizio di pubblicazione</em><br/> - Modifica <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere al prossimo step
UIDescription.content.pageEditWizard2=<strong>Step 2: Modifica del layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona un nuovo layout di pagina o mantieni il corrente<br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare al precedente step
UIDescription.content.pageEditWizard3=<strong>Step 2: Modifica del layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona un nuovo layout di pagina o mantieni il corrente<br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare al precedente step
#############################################################################
@@ -335,8 +335,8 @@
UIPortalForm.title=Modifica il Portale
UIPortalForm.action.Save=#{word.save}
UIPortalForm.action.Close=Annulla
-UIPortalForm.msg.sameName=Il portale esiste gi\u00e0.
-UIPortalForm.msg.notExistAnymore=Questo portale non esiste o pu\u00f2 essere eliminato.
+UIPortalForm.msg.sameName=Il portale esiste gi\u00E0.
+UIPortalForm.msg.notExistAnymore=Questo portale non esiste o pu\u00F2 essere eliminato.
UIPortalForm.label.name=Nome del Portale :
UIPortalForm.label.locale=#{word.locale} :
UIPortalForm.label.date=#{word.date} :
@@ -368,7 +368,7 @@
UIListPermissionSelector.header.action=Azione
UIListPermissionSelector.action.addPermission=Aggiungi Permesso
UIListPermissionSelector.action.title.Delete=Elimina
-UIListPermissionSelector.label.publicMode=Rendilo pubblico (chiunque pu\u00f2 accedere):
+UIListPermissionSelector.label.publicMode=Rendilo pubblico (chiunque pu\u00F2 accedere):
UIGroupMembershipSelector.msg.selectGroup=Devi selezionare prima un gruppo.
UIGroupMembershipSelector.title=Selettore del Membership del gruppo
UIGroupMembershipSelector.title.ListPermissionSelector=Selettore del Gruppo e del Membership
@@ -404,10 +404,10 @@
UIPageBrowser.msg.PageNotExist=La pagina non esiste.
UIPageBrowser.msg.UserNotPermission=Non hai i permessi per accedere al nodo della pagina.
UIPageBrowser.msg.InvalidQueryException=Interrogazione non valida.
-UIPageBrowser.msg.Invalid-viewPermission=Non ti \u00e8 permesso accedere alla pagina {0}.
-UIPageBrowser.msg.Invalid-editPermission=Non ti \u00e8 permesso modificare la pagina {0}.
-UIPageBrowser.msg.Invalid-deletePermission=Non ti \u00e8 permesso eliminare pagina {0}.
-UIPageBrowser.msg.Invalid-Preview=Questa \u00e8 una pagina del Desktop. Non puoi vedere l'anteprima di questi tipi.
+UIPageBrowser.msg.Invalid-viewPermission=Non ti \u00E8 permesso accedere alla pagina {0}.
+UIPageBrowser.msg.Invalid-editPermission=Non ti \u00E8 permesso modificare la pagina {0}.
+UIPageBrowser.msg.Invalid-deletePermission=Non ti \u00E8 permesso eliminare pagina {0}.
+UIPageBrowser.msg.Invalid-Preview=Questa \u00E8 una pagina del Desktop. Non puoi vedere l'anteprima di questi tipi.
UIPageBrowser.msg.NotViewPage=Non hai i permessi per vedere la pagina.
UIPageBrowser.msg.edit.NotEditPage=Non hai i permessi per modificare la pagina.
UIPageBrowser.msg.delete.NotDelete=Non hai i permessi per eliminare la pagina.
@@ -435,12 +435,12 @@
#############################################################################
UIPageNodeSelector.UIDropDown.title=Seleziona le Navigazioni
-UIPageNodeSelector.msg.notAvailable=La pagina del nodo \u00e8 ora disponibile.
+UIPageNodeSelector.msg.notAvailable=La pagina del nodo \u00E8 ora disponibile.
UIPageNodeSelector.msg.Invalid-editPermission=Non hai i permessi per modificare questa pagina
UIPageNodeSelector.msg.deleteNav=Non puoi eliminare la navigazione di questa pagina.
UIPageNodeSelector.msg.NoPageNavigation=Devi creare una navigazione prima di usare questa funzione.
UIPageNodeSelector.msg.curentPage=Non posso eliminare la pagine: E' usata da un'altro programma.
-UIPageNodeSelector.msg.paste.sameName=Il nodo esiste gi\u00e0.
+UIPageNodeSelector.msg.paste.sameName=Il nodo esiste gi\u00E0.
UIPageNodeSelector.msg.paste.sameSrcAndDes=Il sorgente e la destinazione devono essere differenti.
UIPageNodeSelector.deleteNode=Sei sicuro di voler eliminare la navigazione?
UIPageNodeSelector.deleteNavigation=Sei sicuro di voler eliminare il nodo?
@@ -460,8 +460,8 @@
UIPageEditor.action.Abort=Abbandona
UIPageEditor.action.Finish=Termina
UIPageEditor.title.UIPageEditor=Editor della Pagina
-UIPageEditor.action.ViewProperties=Propriet\u00e0 di visualizzazione della Pagina
-UIPageEditor.action.SwitchMode=Cambia la Modalit\u00e0 di Visualizzazione
+UIPageEditor.action.ViewProperties=Propriet\u00E0 di visualizzazione della Pagina
+UIPageEditor.action.SwitchMode=Cambia la Modalit\u00E0 di Visualizzazione
#############################################################################
# org.exoplatform.portal.component.customization.UIPageForm #
@@ -481,7 +481,7 @@
UIPageForm.tab.label.Template=Template della Pagina
UIPageForm.tab.label.PermissionSetting=Preferenze del Permesso
UIPageForm.tab.label.UIPageTemplateOptions=Layout della Pagina
-UIPageForm.msg.sameName=La pagina esiste gi\u00e0.
+UIPageForm.msg.sameName=La pagina esiste gi\u00E0.
UIOwnerIdSelector.title.OwnerIdSelector=Selettore dell'Id del Proprietario
UIPopupGroupSelector.title.UIGroupSelector=Selettore del Gruppo
UIPopupGroupSelector.title.GroupSelector=Seleziona il Gruppo
@@ -490,7 +490,7 @@
# org.exoplatform.portal.component.customization.UIPageNodeForm#
#############################################################################
-UIPageNodeForm2.msg.SameName=Il nome del nodo esiste gi\u00e0.
+UIPageNodeForm2.msg.SameName=Il nome del nodo esiste gi\u00E0.
UIPageNodeForm2.msg.selectPage=Devi selezionare una pagina.
UIPageNodeForm2.msg.startDateBeforeEndDate=La data di fine deve essere superiore alla data di inizio.
UIPageNodeForm2.action.Save=#{word.save}
@@ -529,7 +529,7 @@
#############################################################################
UIPageNavigationForm.title=Navigatore della Pagina & Navigazione
-UIPageNavigationForm.label.priority=Priorit\u00e0 :
+UIPageNavigationForm.label.priority=Priorit\u00E0 :
UIPageNavigationForm.label.creator=Creatore :
UIPageNavigationForm.label.modifier=Modificatore :
UIPageNavigationForm.label.ownerType=Tipo di Proprietario :
@@ -545,7 +545,7 @@
UIPageNavigationForm.action.ClosePopup=#{word.close}
UIPageNavigationForm.action.Close=Annulla
UIPageNavigationForm.msg.selectGroup=Devi selezionare un gruppo.
-UIPageNavigationForm.msg.existPageNavigation=La navigazione della pagina {0} esiste gi\u00e0.
+UIPageNavigationForm.msg.existPageNavigation=La navigazione della pagina {0} esiste gi\u00E0.
UIPageNavigation.msg.noMakablePageNavigation=Non hai i permessi per creare una pagina di navigazione per questo gruppo.
UIPageNavigation.tooltip.upLevel=Vai al livello superiore
UIPageNavigation.label.navigation=Navigazione di {0}
@@ -648,7 +648,7 @@
UIPageCreationWizard.label.done=#{word.save}
UIPageCreationWizard.label.previousStep=Step Precedente
UIPageCreationWizard.label.nextStep=Prossimo Step
-UIPageCreationWizard.msg.NameNotSame=Questo nome esiste gi\u00e0.
+UIPageCreationWizard.msg.NameNotSame=Questo nome esiste gi\u00E0.
UIPageCreationWizard.msg.notSelectedPageNavigation=Devi selezionare una navigazione.
UIPageCreationWizard.msg.StepByStep=All'inizio devi eseguire Step per Step.
UIPageNodeWizardPreview.action.Finish=Salva e Termina
@@ -776,16 +776,16 @@
UIPortlet.label.View=Visualizza
UIPortlet.lable.information=Fatto
UIPortlet.deletePortlet=Sicuro di voler eliminare questa portlet?
-UIPortlet.tooltip.PortletMode=Modalit\u00e0 della Portlet
+UIPortlet.tooltip.PortletMode=Modalit\u00E0 della Portlet
UIPortlet.tooltip.Minimize=Rimpicciolisci
UIPortlet.tooltip.MinimizeRestore=Recupera
UIPortlet.tooltip.Maximize=Ingrandizzi
-UIPortlet.tooltip.MaximizeRestore=Recupera gi\u00f9
+UIPortlet.tooltip.MaximizeRestore=Recupera gi\u00F9
UIPortlet.tooltip.editPortlet=Modifica la Portlet
UIPortlet.tooltip.deletePortlet=Elimina la Portlet
UIPortlet.tooltip.ResizeWindow=Ridimensiona la Finestra
UIPortlet.tooltip.DragControl=Raccogli l'area per copiare la portlet
-UIPortlet.message.RuntimeError=La portlet ha riscontrato un errore e non pu\u00f2 essere visualizzata
+UIPortlet.message.RuntimeError=La portlet ha riscontrato un errore e non pu\u00F2 essere visualizzata
#############################################################################
PortletMode.label.help=Aiuto
@@ -819,16 +819,16 @@
#############################################################################
UIPageEditBar.tooltip.PagePreview=Anteprima della Pagina
-UIPageEditBar.tooltip.EditPage=Propriet\u00e0 di Modifica della Pagina
+UIPageEditBar.tooltip.EditPage=Propriet\u00E0 di Modifica della Pagina
UIPageEditBar.tooltip.SharedNavigation=Configurazione della Navigazione della Community
UIPageEditBar.tooltip.EditContainer=Mostra i Controlli del Contenitore
UIPageEditBar.tooltip.EditPortlet=Mostra i Controlli della Portlet
UIPageEditBar.tooltip.Decorator=Decoratore
UIPageEditBar.tooltip.SavePage=Salva la Pagina
-UIPageEditBar.tooltip.TurnOffPreview=Clicca qui per togliere la modalit\u00e0 di anteprima
+UIPageEditBar.tooltip.TurnOffPreview=Clicca qui per togliere la modalit\u00E0 di anteprima
UIPageManagement.title.BROWSE=Gestisci le Pagine
UIPageManagement.title.EDIT=Navigatore della Pagina e della Navigazione
-UIPageManagement.msg.Invalid-editPermission=Non ti \u00e8 permesso modificare la pagina.
+UIPageManagement.msg.Invalid-editPermission=Non ti \u00E8 permesso modificare la pagina.
#############################################################################
#org.exoplatform.webui.core.UIPageIterator #
@@ -885,7 +885,7 @@
############################################################################
UILogged.note.loggedUser=Benvenuto
-UILogged.note.ItemContainer=Questo componente \u00e8 in costruzione.
+UILogged.note.ItemContainer=Questo componente \u00E8 in costruzione.
UILogged.action.logout=Uscita
UILogged.action.signout=Uscita
UILogged.action.Youhave=Tu hai:
@@ -907,10 +907,10 @@
UIPortalComponentLogin.label.password=Password
UIPortalComponentLogin.label.username=Nome Utente
-UIForgetPasswordWizard.title=Pech\u00e8 non sei abilitato a fare il login ?
+UIForgetPasswordWizard.title=Pech\u00E8 non sei abilitato a fare il login ?
UIForgetPasswordWizard.action.Next=Prossimo
UIForgetPasswordWizard.action.Back=Indietro
-UIForgetPasswordWizard.info=Ci scusiamo per qualunque inconvenienza hai riscontrato nel login del sito web.<br /Per risolvere il problema nel pi\u00f9 breve tempo possibile, please segui la risoluzione ai problemi qui in basso.<br /><br />1. Recupera la password: inserisci il <strong>tuo nome utente</strong> e clicca su manda.<br/>2. Recupera il tuo nome utente: inserisci il <strong>tuo indirizzo email</strong> e clicca su manda.<br/>
+UIForgetPasswordWizard.info=Ci scusiamo per qualunque inconvenienza hai riscontrato nel login del sito web.<br /Per risolvere il problema nel pi\u00F9 breve tempo possibile, please segui la risoluzione ai problemi qui in basso.<br /><br />1. Recupera la password: inserisci il <strong>tuo nome utente</strong> e clicca su manda.<br/>2. Recupera il tuo nome utente: inserisci il <strong>tuo indirizzo email</strong> e clicca su manda.<br/>
UIForgetPasswordWizard.label.forgotpassword=Password dimenticata
UIForgetPasswordWizard.label.forgotusername=Nome Utente dimenticato
@@ -923,15 +923,15 @@
UIForgetPassword.action.Back=Indietro
UIForgetPassword.label.username=Nome Utente :
UIForgetPassword.label.email=Email :
-UIForgetPassword.msg.user-delete=Il tuo nome utente \u00e8 stato cancellato dall'amministratore.
+UIForgetPassword.msg.user-delete=Il tuo nome utente \u00E8 stato cancellato dall'amministratore.
UIForgetPassword.msg.user-not-exist=Il nome utente non esiste.
UIForgetPassword.msg.email-not-exist=L'email non esiste.
UIForgetPassword.msg.send-mail-success=Verifica la tua email.
-UIForgetPassword.msg.expration=Il link \u00e8 scaduto, devi ripetere il processo di attivazione.
+UIForgetPassword.msg.expration=Il link \u00E8 scaduto, devi ripetere il processo di attivazione.
UIForgetPassword.mail.header=Grazie per aver contattato il supporto. Hai mandato una richiesta per lo user name e password.
UIForgetPassword.mail.footer=Grazie.
-UIForgetPassword.mail.user=Il nome utente per quest'account \u00e8 :
-UIForgetPassword.mail.password=La Password del tuo account \u00e8 :
+UIForgetPassword.mail.user=Il nome utente per quest'account \u00E8 :
+UIForgetPassword.mail.password=La Password del tuo account \u00E8 :
UIForgetPassword.mail.link=Puoi richiedere una nuova password per il nome utente, clicca su questo link :
UIResetPassword.title=Cambia password
UIResetPassword.action.Save=Salva
@@ -941,7 +941,7 @@
UIResetPassword.label.changepass=Cambia password:
UIResetPassword.label.newpassword=Nuova password:
UIResetPassword.label.confirmnewpassword=Conferma la nuova password:
-UIResetPassword.msg.change-password-successfully=La password \u00e8 stata cambiata.
+UIResetPassword.msg.change-password-successfully=La password \u00E8 stata cambiata.
UIResetPassword.msg.password-is-not-match=Nuova password e Conferma nuova password devono essere uguali.
UIResetPassword.msg.Invalid-account=Il Nome Utente o la Password sono sbagliati o vuoti. Riprova.
@@ -979,7 +979,7 @@
UIContainer.deleteContainer=Sicuro di voler eliminare questo contenitore?
UIContainer.tooltip.closeContainer=Elimina il Contenitore
UIContainer.tooltip.editContainer=Modifica il Contenitore
-UIContainer.tooltip.drag=Copia il Contenitore qu\u00ec
+UIContainer.tooltip.drag=Copia il Contenitore qu\u00EC
############################################################################
# org.exoplatform.portal.component.view.UIPage #
@@ -1025,7 +1025,7 @@
UIPageBody.label.description=Il corpo della pagina del portale
UIPageBody.msg.pageNotFoundLine1=Pagina non trovata.
UIPageBody.msg.pageNotFoundLine2=Non hai i permessi per visualizzare la pagina.
-UIPageBody.msg.pageNotFoundLine3=La pagina pu\u00f2 essere eliminata.
+UIPageBody.msg.pageNotFoundLine3=La pagina pu\u00F2 essere eliminata.
UIPageBody.msg.pageNotFoundLine4=Questo nodo non ha pagine.
############################################################################
@@ -1082,8 +1082,8 @@
NavigationNodePopupMenu.event.SaveNavigation=Salva la Navigazione
NavigationNodePopupMenu.event.DeleteNode=Elimina il Nodo
UIGroupManagement.msg.Edit=Devi selezionare un gruppo.
-UIGroupManagement.msg.Delete=Non puoi eliminare il gruppo perch\u00e8 \u00e8 usato da un'altro programma.
-UIGroupManagement.msg.DeleteMandatory=Non puoi eliminare il gruppo perch\u00e8 \u00e8 (esso o i suoi figli) obbligatorio.
+UIGroupManagement.msg.Delete=Non puoi eliminare il gruppo perch\u00E8 \u00E8 usato da un'altro programma.
+UIGroupManagement.msg.DeleteMandatory=Non puoi eliminare il gruppo perch\u00E8 \u00E8 (esso o i suoi figli) obbligatorio.
###############################################################################
# org.exoplatform.portal.webui.component.customization.UIEditCurentPage #
@@ -1160,9 +1160,9 @@
UIAccountChangePass.label.currentpass=Password Corrente :
UIAccountChangePass.label.newpass=Nuova Password :
UIAccountChangePass.label.confirmnewpass=Conferma Nuova Password :
-UIAccountChangePass.msg.change.pass.success=La password \u00e8 stata cambiata.
+UIAccountChangePass.msg.change.pass.success=La password \u00E8 stata cambiata.
UIAccountChangePass.msg.password-is-not-match=Nuova Password e Conferma Nuova Password non coincidono.
-UIAccountChangePass.msg.currentpassword-is-not-match=La Password Corrente non \u00e8 corretta.
+UIAccountChangePass.msg.currentpassword-is-not-match=La Password Corrente non \u00E8 corretta.
################################################################################
# UIDropDownControl # tungnd
@@ -1204,7 +1204,7 @@
UIGadgetContainerForm.label.description=Descrizione:
UIGadgetContainerForm.action.Save=#{word.save}
UIGadgetContainerForm.action.Close=Annulla
-UIGadgetContainerForm.msg.exist=Il contenitore esiste gi\u00e0. Inseriscine un altro.
+UIGadgetContainerForm.msg.exist=Il contenitore esiste gi\u00E0. Inseriscine un altro.
################################################################################
# org.exoplatform.portal.webui.container.UIWidgetContainer
@@ -1260,10 +1260,10 @@
UIDashboardEditForm.label.totalColumns=Numero di colonne:
UIDashboardEditForm.label.isPrivate=E' Privato:
UIDashboardEditForm.label.owner=Prprietario:
-UIDashboard.msg.required=Il campo di testo \u00e8 richiesto.
-UIDashboard.msg.addGadget=Trascina qu\u00ec il tuo gadget.
-UIDashboard.msg.notUrl=L'url non \u00e8 valido. Inserisci l'url corretto del file xml del gadget o di un feed RSS.
-UIDashboard.msg.ApplicationNotExisted=L'applicazione non esiste o non pu\u00f2 essere cancellata.
+UIDashboard.msg.required=Il campo di testo \u00E8 richiesto.
+UIDashboard.msg.addGadget=Trascina qu\u00EC il tuo gadget.
+UIDashboard.msg.notUrl=L'url non \u00E8 valido. Inserisci l'url corretto del file xml del gadget o di un feed RSS.
+UIDashboard.msg.ApplicationNotExisted=L'applicazione non esiste o non pu\u00F2 essere cancellata.
################################################################################
# org.exoplatform.webui.organization.account.UIUserSelector
@@ -1292,7 +1292,7 @@
UIAddNewApplication.label.AddApplication=Aggiungi Applicazione
UIAddNewApplication.label.Categories=Categorie
UIAddNewApplication.label.Select=Seleziona le Applicazioni
-UIAddNewApplication.label.NoneApp=Non c'\u00e8 nessun'applicazione in questo spazio. Vai alla portlet del Registro delle Applicazioni per importare le applicazioni.
+UIAddNewApplication.label.NoneApp=Non c'\u00E8 nessun'applicazione in questo spazio. Vai alla portlet del Registro delle Applicazioni per importare le applicazioni.
UIAddNewApplication.label.Type=Tipo:
UIAddNewApplication.label.Created=Creato da:
UIAddNewApplication.label.Description=Descrizione:
@@ -1351,7 +1351,7 @@
############################################################################
UISiteManagement.msg.Invalid-deletePermission=L'utente non ha i permessi per cancellare il portale
-UISiteManagement.msg.portal-not-exist=Il portale non esiste o non pu\u00f2 essere cancellato
+UISiteManagement.msg.portal-not-exist=Il portale non esiste o non pu\u00F2 essere cancellato
UISiteManagement.msg.Invalid-editPermission=L'utente non ha i permessi per modificare il portale
############################################################################
@@ -1361,7 +1361,7 @@
UIGroupNavigationManagement.Action.Add=Aggiungi Navigazione
UIGroupNavigationManagement.Delete.Confirm=Sicuro di voler eliminare la navigazione?
UIGroupNavigationManagement.msg.Invalid-deletePermission=L'utente non ha i permessi per cancellare la navigazione
-UIGroupNavigationManagement.msg.navigation-not-exist=La navigazione non esiste o non pu\u00f2 essere cancellata
+UIGroupNavigationManagement.msg.navigation-not-exist=La navigazione non esiste o non pu\u00F2 essere cancellata
UIGroupNavigationManagement.msg.Invalid-editPermission=L'utente non ha i permessi per modificare la navigazione
############################################################################
@@ -1369,7 +1369,7 @@
############################################################################
UINavigationManagement.action.addNode=Aggiungi Nodo
-UINavigationManagement.msg.NavigationNotExistAnymore=La navigazione non pu\u00f2 essere cancellata.
+UINavigationManagement.msg.NavigationNotExistAnymore=La navigazione non pu\u00F2 essere cancellata.
############################################################################
# org.exoplatform.navigation.webui.component.UIAddGroupNavigation #
@@ -1388,4 +1388,4 @@
UIGadget.tooltip.Maximize=Ingrandisci
UIGadget.tooltip.Unmaximize=Recupera in basso
UIGadget.tooltip.editGadget=Modifica Gadget
-UIGadget.tooltip.deleteGadget=Elimina Gadget
+UIGadget.tooltip.deleteGadget=Elimina Gadget
\ No newline at end of file
16 years, 3 months
gatein SVN: r1324 - in portal/trunk: component/resources/src/test/java/locale/test/resources and 9 other directories.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 18:18:55 -0500 (Fri, 15 Jan 2010)
New Revision: 1324
Modified:
portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties
portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties
portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties
portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties
portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties
portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties
Log:
GTNPORTAL-496: Translation in Italian
Modified: portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties
===================================================================
--- portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/component/resources/src/test/java/locale/test/myRB2_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,7 +17,7 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-# key1
-my.key1=Il mio nuovo valore in italiano
-# key3
-my.key3=Il mio nuovo valore in italiano
+# key1
+my.key1=Il mio nuovo valore in italiano
+# key3
+my.key3=Il mio nuovo valore in italiano
Modified: portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties
===================================================================
--- portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/component/resources/src/test/java/locale/test/resources/test_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-language=Italiano
\ No newline at end of file
+language=Italiano
Modified: portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties
===================================================================
--- portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/dashboard/TabbedDashboardPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,8 +17,8 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-UITabPaneDashboard.action.addNewDashboard=Aggiungi Dashboard
-UITabPaneDashboard.action.switchShowRange=Cambia ordine
-UITabPaneDashboard.msg.deleteTab=Vuoi davvero rimuovere questa dashboard?
+UITabPaneDashboard.action.addNewDashboard=Aggiungi Dashboard
+UITabPaneDashboard.action.switchShowRange=Cambia ordine
+UITabPaneDashboard.msg.deleteTab=Vuoi davvero rimuovere questa dashboard?
UITabPaneDashboard.msg.cannotDeleteLastTab=Non posso eliminare l'ultimo tab.
-UITabPaneDashboard.msg.wrongTabName=Sono permessi soltanto caratteri alfabetici, numerici, underscore, trattino e spazio.
\ No newline at end of file
+UITabPaneDashboard.msg.wrongTabName=Sono permessi soltanto caratteri alfabetici, numerici, underscore, trattino e spazio.
Modified: portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties
===================================================================
--- portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/dashboard/src/main/webapp/WEB-INF/classes/locale/portlet/gadget/GadgetPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -24,4 +24,4 @@
UIGadgetEditMode.action.Save=Salva
UIGadgetEditMode.label.option.remote=Gadget remoto
-UIGadgetEditMode.label.option.local=Gadget locale
\ No newline at end of file
+UIGadgetEditMode.label.option.local=Gadget locale
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AdminToolbarPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -27,4 +27,4 @@
UIAdminToolbarPortlet.action.portal.Editor=Editor del Sito
UIAdminToolbarPortlet.action.group.Editor=Editor del Gruppo
UIAdminToolbarPortlet.action.user.Editor=Editor della Dashboard
-UIAdminToolbarPortlet.action.EditSiteLayout=Modifica il Layout
\ No newline at end of file
+UIAdminToolbarPortlet.action.EditSiteLayout=Modifica il Layout
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/GroupNavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -18,4 +18,4 @@
#
UIPageNavigationForm.action.ClosePopup=#{word.close}
-UIPageNavigationForm.action.Save=#{word.save}
\ No newline at end of file
+UIPageNavigationForm.action.Save=#{word.save}
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/OrganizationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,241 +17,241 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-##org.exoplatform.organization.webui.component.UIOrganizationPortlet
-UIOrganizationPortlet.label.userManagement=Gestione Utenti
-UIOrganizationPortlet.label.groupManagement=Gestione Gruppi
-UIOrganizationPortlet.label.membershipManagement=Gestione Membership
-
-
-##org.exoplatform.organization.webui.component.UIMembershipTypeForm
-UIMembershipTypeForm.title=Add/Edit Membership
-UIMembershipTypeForm.label.name=Membership name
-UIMembershipTypeForm.label.description=Description
-UIMembershipTypeForm.action.Save=#{word.save}
-UIMembershipTypeForm.action.Back=#{word.back}
-UIMembershipTypeForm.action.Reset=Reset
+##org.exoplatform.organization.webui.component.UIOrganizationPortlet
+UIOrganizationPortlet.label.userManagement=Gestione Utenti
+UIOrganizationPortlet.label.groupManagement=Gestione Gruppi
+UIOrganizationPortlet.label.membershipManagement=Gestione Membership
+
+
+##org.exoplatform.organization.webui.component.UIMembershipTypeForm
+UIMembershipTypeForm.title=Add/Edit Membership
+UIMembershipTypeForm.label.name=Membership name
+UIMembershipTypeForm.label.description=Description
+UIMembershipTypeForm.action.Save=#{word.save}
+UIMembershipTypeForm.action.Back=#{word.back}
+UIMembershipTypeForm.action.Reset=Reset
UIMembershipTypeForm.msg.SameName=This membership already exists, please enter another one
UIMembershipTypeForm.msg.MembershipNotExist= Membership [{0}] is not exist or has been deleted.
-
-##org.exoplatform.organization.webui.component.UIGroupMembershipForm
-UIGroupEditMembershipForm.label.username=User Name
-UIGroupEditMembershipForm.label.membership=Membership
-UIGroupEditMembershipForm.action.Save=Save
-UIGroupEditMembershipForm.action.Cancel=Cancel
-UIGroupEditMembershipForm.msg.membership-delete=Can't save, membership removed!.
-UIGroupEditMembershipForm.msg.membership-exist="Membership type already exists, please enter another one.
-EditMembership.title.UIGroupEditMembershipForm=Edit Membership
-EditMembership.title.EditMembership=Edit Membership
-UIGroupMembershipForm.label.title=Group Membership
-UIGroupMembershipForm.label.username=Username
-UIGroupMembershipForm.label.membership=Membership
-UIGroupMembershipForm.action.Save=#{word.save}
-SearchUserForm.label.option.userName=#{word.userName}
-SearchUserForm.label.option.firstName=#{word.firstName}
-SearchUserForm.label.option.lastName=#{word.lastName}
-SearchUserForm.label.option.email=#{word.email}
-SearchUser.title.UIUserSelector=Select User
-SearchUser.title.SearchUser=Select User
-#{0} is the member that the remote memeber enter
-UIMemberShipForm.msg.membershipType-exist=The membership type '{0}' is taken
-
-##org.exoplatform.organization.webui.component.UIMembershipForm
-UIMembershipForm.label.username=User Name
-UIMembershipForm.label.membership=Membership
-UIMembershipForm.action.Save=#{word.save}
-UIMembershipForm.action.Back=#{word.back}
-UIMembershipForm.label.name=Membership Name
-UIMembershipForm.label.description=#{word.description}
-
-##org.exoplatform.organization.webui.component.UIListUser
-UIListUsers.header.userName=#{word.userName}
-UIListUsers.header.lastName=#{word.lastName}
-UIListUsers.header.firstName=#{word.firstName}
-UIListUsers.header.email=#{word.email}
-
-UIListUsers.action.title.DeleteUser=Delete User
-UIListUsers.action.title.SelectUser=Select User
-UIListUsers.action.title.ViewUserInfo=Edit User Info
-SearchUser.title.ListUserForSearch=Search User
-UIListUsers.header.action=#{word.action}
-UIListUsers.label.option.userName=#{word.userName}
-UIListUsers.label.option.firstName=#{word.firstName}
-UIListUsers.label.option.lastName=#{word.lastName}
-UIListUsers.label.option.email=#{word.email}
-UIListUsers.msg.DeleteSuperUser={0} is Super User, it can not be deleted
-UIListUsers.deleteUser=Are you sure you want to delete {0} user?
-
-UIListMembershipType.deleteMemberShip=Are you sure you want to delete this membership?
-
-##org.exoplatform.organization.webui.component.UIUserInfo
-UIUserInfo.title=User Profile Info
-UIUserInfo.tab.label.AccountInputSet=Account Info
-UIUserInfo.tab.label.UIUserProfileInputSet=User Profile
-UIUserInfo.tab.label.UIUserMembershipSelector=User Membership
-UIUserInfo.tab.label.UIAccountEditInputSet=Account Info
-
-UIUserInfo.label.changePassword=Change Password:
-UIUserInfo.label.newPassword=New Password:
-UIUserInfo.label.confirmPassword=Confirm Password:
-
-UIUserInfo.label.Profile=User Profile
-UIUserInfo.label.userName=#{word.userName}:
-UIUserInfo.label.password=Password :
-UIUserInfo.label.Confirmpassword=Confirm Password :
-UIUserInfo.label.firstName=#{word.firstName}:
-UIUserInfo.label.lastName=#{word.lastName}:
-UIUserInfo.label.email=Email Address:
-UIUserInfo.label.user.language: Language
-UIUserInfo.action.Back=#{word.cancel}
-UIUserInfo.action.Save=#{word.save}
-
-UIUserInfo.label.HomeInfo=Home Informations
-UIUserInfo.label.user.language=#{word.language}:
-UIUserInfo.label.user.name.given=#{word.givenName}:
-UIUserInfo.label.user.name.family=#{word.familyName}:
-UIUserInfo.label.user.name.nickName=#{word.nickName}:
-UIUserInfo.label.user.bdate=#{word.birthday}:
-UIUserInfo.label.user.gender=#{word.gender}:
-UIUserInfo.label.user.employer=#{word.employer}:
-UIUserInfo.label.user.department=#{word.department}:
-UIUserInfo.label.user.jobtitle=#{word.jobTitle}:
-UIUserInfo.label.user.home-info.postal.name=#:
-UIUserInfo.label.user.home-info.postal.street=#{word.street}:
-UIUserInfo.label.user.home-info.postal.city=#{word.city}:
-UIUserInfo.label.user.home-info.postal.stateprov=#{word.stateProv}:
-UIUserInfo.label.user.home-info.postal.postalcode=#{word.postalCode}:
-UIUserInfo.label.user.home-info.postal.country=#{word.country}:
-UIUserInfo.label.user.home-info.telecom.mobile.number=#{word.mobile}:
-UIUserInfo.label.user.home-info.telecom.telephone.number=#{word.tel}:
-UIUserInfo.label.user.home-info.online.email=#{word.email}:
-UIUserInfo.label.user.home-info.online.uri=Website:
-UIUserInfo.label.option.male=Male
-UIUserInfo.label.option.female=Female
-UIUserInfo.label.option.en=English
-UIUserInfo.label.option.ma=Ma
-UIUserInfo.label.option.vi=Vietnamese
-UIUserInfo.label.option.ar=Arabic
-UIUserInfo.label.option.fr=French
-UIUserInfo.label.option.ru=Russian
-
-UIUserInfo.label.BusinessInfo=Business Informations
-UIUserInfo.label.user.business-info.postal.name=#:
-UIUserInfo.label.user.business-info.postal.city=#{word.city}:
-UIUserInfo.label.user.business-info.postal.stateprov=State/Prov:
-UIUserInfo.label.user.business-info.postal.postalcode=Postal Code:
-UIUserInfo.label.user.business-info.postal.country=#{word.country}:
-UIUserInfo.label.user.business-info.telecom.mobile.number=#{word.mobile}:
-UIUserInfo.label.user.business-info.telecom.telephone.number=#{word.tel}:
-UIUserInfo.label.user.business-info.online.email=#{word.email}:
-UIUserInfo.label.user.business-info.online.uri=#{word.website}:
-
-##org.exoplatform.organization.webui.component.UIUserInGroup
-UIUserInGroup.confirm.deleteUser=Are you sure you want to delete user {0} from group {1}?
-UIUserInGroup.header.userName=#{word.userName}
-UIUserInGroup.header.lastName=#{word.lastName}
-UIUserInGroup.header.firstName=#{word.firstName}
-UIUserInGroup.header.email=#{word.email}
-UIUserInGroup.header.action=#{word.action}
-UIUserInGroup.header.membershipType=Membership Type
-UIUserInGroup.header.lastLoginTime=Last Login
-UIUserInGroup.label.username=#{word.userName}
-UIUserInGroup.label.membership=Membership name
-UIUserInGroup.action.title.DeleteUser=Delete member
-UIUserInGroup.action.title.Edit=Edit member
-
-##org.exoplatform.organization.webui.component.UIGroupInfo
-UIGroupInfo.tab.label.UIUserInGroup=User In Group
-UIGroupInfo.label.UIUserInGroup=
-UIGroupInfo.title=Group Info
-
-##org.exoplatform.organization.webui.component.UIMembershipList
-UIMembershipList.header.name=Membership name
-UIMembershipList.header.createdDate=Created date
-UIMembershipList.header.modifiedDate=Modified date
-UIMembershipList.header.action=#{word.action}
-UIMembershipList.header.description=#{word.description}
-UIMembershipList.action.title.EditMembership=Edit Membership
-UIMembershipList.action.title.DeleteMembership=Delete Membership
+
+##org.exoplatform.organization.webui.component.UIGroupMembershipForm
+UIGroupEditMembershipForm.label.username=User Name
+UIGroupEditMembershipForm.label.membership=Membership
+UIGroupEditMembershipForm.action.Save=Save
+UIGroupEditMembershipForm.action.Cancel=Cancel
+UIGroupEditMembershipForm.msg.membership-delete=Can't save, membership removed!.
+UIGroupEditMembershipForm.msg.membership-exist="Membership type already exists, please enter another one.
+EditMembership.title.UIGroupEditMembershipForm=Edit Membership
+EditMembership.title.EditMembership=Edit Membership
+UIGroupMembershipForm.label.title=Group Membership
+UIGroupMembershipForm.label.username=Username
+UIGroupMembershipForm.label.membership=Membership
+UIGroupMembershipForm.action.Save=#{word.save}
+SearchUserForm.label.option.userName=#{word.userName}
+SearchUserForm.label.option.firstName=#{word.firstName}
+SearchUserForm.label.option.lastName=#{word.lastName}
+SearchUserForm.label.option.email=#{word.email}
+SearchUser.title.UIUserSelector=Select User
+SearchUser.title.SearchUser=Select User
+#{0} is the member that the remote memeber enter
+UIMemberShipForm.msg.membershipType-exist=The membership type '{0}' is taken
+
+##org.exoplatform.organization.webui.component.UIMembershipForm
+UIMembershipForm.label.username=User Name
+UIMembershipForm.label.membership=Membership
+UIMembershipForm.action.Save=#{word.save}
+UIMembershipForm.action.Back=#{word.back}
+UIMembershipForm.label.name=Membership Name
+UIMembershipForm.label.description=#{word.description}
+
+##org.exoplatform.organization.webui.component.UIListUser
+UIListUsers.header.userName=#{word.userName}
+UIListUsers.header.lastName=#{word.lastName}
+UIListUsers.header.firstName=#{word.firstName}
+UIListUsers.header.email=#{word.email}
+
+UIListUsers.action.title.DeleteUser=Delete User
+UIListUsers.action.title.SelectUser=Select User
+UIListUsers.action.title.ViewUserInfo=Edit User Info
+SearchUser.title.ListUserForSearch=Search User
+UIListUsers.header.action=#{word.action}
+UIListUsers.label.option.userName=#{word.userName}
+UIListUsers.label.option.firstName=#{word.firstName}
+UIListUsers.label.option.lastName=#{word.lastName}
+UIListUsers.label.option.email=#{word.email}
+UIListUsers.msg.DeleteSuperUser={0} is Super User, it can not be deleted
+UIListUsers.deleteUser=Are you sure you want to delete {0} user?
+
+UIListMembershipType.deleteMemberShip=Are you sure you want to delete this membership?
+
+##org.exoplatform.organization.webui.component.UIUserInfo
+UIUserInfo.title=User Profile Info
+UIUserInfo.tab.label.AccountInputSet=Account Info
+UIUserInfo.tab.label.UIUserProfileInputSet=User Profile
+UIUserInfo.tab.label.UIUserMembershipSelector=User Membership
+UIUserInfo.tab.label.UIAccountEditInputSet=Account Info
+
+UIUserInfo.label.changePassword=Change Password:
+UIUserInfo.label.newPassword=New Password:
+UIUserInfo.label.confirmPassword=Confirm Password:
+
+UIUserInfo.label.Profile=User Profile
+UIUserInfo.label.userName=#{word.userName}:
+UIUserInfo.label.password=Password :
+UIUserInfo.label.Confirmpassword=Confirm Password :
+UIUserInfo.label.firstName=#{word.firstName}:
+UIUserInfo.label.lastName=#{word.lastName}:
+UIUserInfo.label.email=Email Address:
+UIUserInfo.label.user.language: Language
+UIUserInfo.action.Back=#{word.cancel}
+UIUserInfo.action.Save=#{word.save}
+
+UIUserInfo.label.HomeInfo=Home Informations
+UIUserInfo.label.user.language=#{word.language}:
+UIUserInfo.label.user.name.given=#{word.givenName}:
+UIUserInfo.label.user.name.family=#{word.familyName}:
+UIUserInfo.label.user.name.nickName=#{word.nickName}:
+UIUserInfo.label.user.bdate=#{word.birthday}:
+UIUserInfo.label.user.gender=#{word.gender}:
+UIUserInfo.label.user.employer=#{word.employer}:
+UIUserInfo.label.user.department=#{word.department}:
+UIUserInfo.label.user.jobtitle=#{word.jobTitle}:
+UIUserInfo.label.user.home-info.postal.name=#:
+UIUserInfo.label.user.home-info.postal.street=#{word.street}:
+UIUserInfo.label.user.home-info.postal.city=#{word.city}:
+UIUserInfo.label.user.home-info.postal.stateprov=#{word.stateProv}:
+UIUserInfo.label.user.home-info.postal.postalcode=#{word.postalCode}:
+UIUserInfo.label.user.home-info.postal.country=#{word.country}:
+UIUserInfo.label.user.home-info.telecom.mobile.number=#{word.mobile}:
+UIUserInfo.label.user.home-info.telecom.telephone.number=#{word.tel}:
+UIUserInfo.label.user.home-info.online.email=#{word.email}:
+UIUserInfo.label.user.home-info.online.uri=Website:
+UIUserInfo.label.option.male=Male
+UIUserInfo.label.option.female=Female
+UIUserInfo.label.option.en=English
+UIUserInfo.label.option.ma=Ma
+UIUserInfo.label.option.vi=Vietnamese
+UIUserInfo.label.option.ar=Arabic
+UIUserInfo.label.option.fr=French
+UIUserInfo.label.option.ru=Russian
+
+UIUserInfo.label.BusinessInfo=Business Informations
+UIUserInfo.label.user.business-info.postal.name=#:
+UIUserInfo.label.user.business-info.postal.city=#{word.city}:
+UIUserInfo.label.user.business-info.postal.stateprov=State/Prov:
+UIUserInfo.label.user.business-info.postal.postalcode=Postal Code:
+UIUserInfo.label.user.business-info.postal.country=#{word.country}:
+UIUserInfo.label.user.business-info.telecom.mobile.number=#{word.mobile}:
+UIUserInfo.label.user.business-info.telecom.telephone.number=#{word.tel}:
+UIUserInfo.label.user.business-info.online.email=#{word.email}:
+UIUserInfo.label.user.business-info.online.uri=#{word.website}:
+
+##org.exoplatform.organization.webui.component.UIUserInGroup
+UIUserInGroup.confirm.deleteUser=Are you sure you want to delete user {0} from group {1}?
+UIUserInGroup.header.userName=#{word.userName}
+UIUserInGroup.header.lastName=#{word.lastName}
+UIUserInGroup.header.firstName=#{word.firstName}
+UIUserInGroup.header.email=#{word.email}
+UIUserInGroup.header.action=#{word.action}
+UIUserInGroup.header.membershipType=Membership Type
+UIUserInGroup.header.lastLoginTime=Last Login
+UIUserInGroup.label.username=#{word.userName}
+UIUserInGroup.label.membership=Membership name
+UIUserInGroup.action.title.DeleteUser=Delete member
+UIUserInGroup.action.title.Edit=Edit member
+
+##org.exoplatform.organization.webui.component.UIGroupInfo
+UIGroupInfo.tab.label.UIUserInGroup=User In Group
+UIGroupInfo.label.UIUserInGroup=
+UIGroupInfo.title=Group Info
+
+##org.exoplatform.organization.webui.component.UIMembershipList
+UIMembershipList.header.name=Membership name
+UIMembershipList.header.createdDate=Created date
+UIMembershipList.header.modifiedDate=Modified date
+UIMembershipList.header.action=#{word.action}
+UIMembershipList.header.description=#{word.description}
+UIMembershipList.action.title.EditMembership=Edit Membership
+UIMembershipList.action.title.DeleteMembership=Delete Membership
UIMembershipList.msg.InUse=You can not delete this membership because it is in use
-UIMembershipList.msg.DeleteMandatory=You can not delete this membership because it is mandatory
-
-##org.exoplatform.organization.webui.component.UIGroupMembershipForm
-UIGroupMembershipForm.title=Add member
-UIGroupMembershipForm.label.username=User Name
-UIGroupMembershipForm.label.membership=Membership
-UIGroupMembershipForm.label.SearchUser=Select User
-UIGroupMembershipForm.label.Refresh=Refresh
-UIGroupMembershipForm.action.Save=#{word.save}
-UIUserMembershipSelector.deleteMembership=Are you sure you want to delete this membership?
-
-##org.exoplatform.organization.webui.component.UIGroupForm
-AddGroup.title=Add New Group
-EditGroup.title=Edit Current Group
-UIGroupForm.label.groupName=Group Name
-UIGroupForm.label.description=Description
-UIGroupForm.label.label=Label
-
-AddGroup.action.Save=#{word.save}
-AddGroup.action.Back=#{word.cancel}
-
-EditGroup.action.Save=#{word.save}
-EditGroup.action.Back=#{word.cancel}
-
+UIMembershipList.msg.DeleteMandatory=You can not delete this membership because it is mandatory
+
+##org.exoplatform.organization.webui.component.UIGroupMembershipForm
+UIGroupMembershipForm.title=Add member
+UIGroupMembershipForm.label.username=User Name
+UIGroupMembershipForm.label.membership=Membership
+UIGroupMembershipForm.label.SearchUser=Select User
+UIGroupMembershipForm.label.Refresh=Refresh
+UIGroupMembershipForm.action.Save=#{word.save}
+UIUserMembershipSelector.deleteMembership=Are you sure you want to delete this membership?
+
+##org.exoplatform.organization.webui.component.UIGroupForm
+AddGroup.title=Add New Group
+EditGroup.title=Edit Current Group
+UIGroupForm.label.groupName=Group Name
+UIGroupForm.label.description=Description
+UIGroupForm.label.label=Label
+
+AddGroup.action.Save=#{word.save}
+AddGroup.action.Back=#{word.cancel}
+
+EditGroup.action.Save=#{word.save}
+EditGroup.action.Back=#{word.cancel}
+
UIGroupForm.msg.group-exist=This group name ialready exists, please enter another one
-UIGroupForm.msg.group-not-exist=Group "{0}" doesn't exist or has been deleted.
-############################################################################
-# org.exoplatform.portal.component.customization.UIShareNavigationForm #
-############################################################################
-
-UITabPane.title.UISharedNavigationForm=Shared Navigation
-
-UISharedNavigationForm.action.Save=#{word.save}
-UISharedNavigationForm.action.Back=#{word.back}
-UISharedNavigationForm.action.Remove=Remove
-
-UISharedNavigationForm.label.navigation=Navigation
-UISharedNavigationForm.label.description=Description
-UISharedNavigation.msg.notSelected=You must select a group!
-UISharedNavigationForm.tab.label.SharedNavigation=Shared Navigation Setting
-UISharedNavigationForm.label.membership=Membership
-UISharedNavigationForm.tab.label.Permission=Permission Selector
-UISharedNavigationForm.label.priority=Priority
-UISharedNavigationForm.msg.user-nonexist=User "{0}" is not exist
-
-#############################################################################
-# org.exoplatform.portal.component.customization.UISharePortalForm#
-#############################################################################
-UITabPane.title.UISharedPortalForm=Shared Portal
-UISharedPortalForm.action.Save=#{word.save}
-UISharedPortalForm.action.Back=#{word.back}
-UISharedPortalForm.action.Remove=Remove
-
-UISharedPortalForm.label.portal=Portal
-UISharedPortalForm.label.description=Description
-UISharedPortalForm.label.membership=Membership
-UISharedPortalForm.label.priority=Priority
-
-UISharedPortalForm.tab.label.SharedPortal=Portal Setting
-UISharedPortalForm.tab.label.Permission=Permission Selector
-
-UITabPane.title.UIUserInGroup=Group Info
-UIGroupSharedInfo.title=Share Info
-UISharedPortalForm.msg.user-nonexist=User "{0}" is not exist
-
-#############################################################################
-# org.exoplatform.portal.organization.component.UIGroupManagement#
-#############################################################################
-UIGroupManagement.label.Groups=Groups
-UIGroupManagement.deleteGroup=Are you sure you want to delete this group?
-UIGroupManagement.label.Groups=Groups
-UIGroupManagement.label.AddGroup=Add New Group
-UIGroupManagement.label.EditGroup=Edit Selected Group
-UIGroupManagement.label.DeleteGroup=Delete Selected Group
-
-#############################################################################
-# org.exoplatform.portal.organization.component.UISharedNavigation#
-#############################################################################
-UITabPane.title.UISharedNavigation=Group Page Navigation
-UISharedNavigation.label.userNavigation=User Page Navigation Name
-UISharedNavigation.label.priority=Priority
+UIGroupForm.msg.group-not-exist=Group "{0}" doesn't exist or has been deleted.
+############################################################################
+# org.exoplatform.portal.component.customization.UIShareNavigationForm #
+############################################################################
+
+UITabPane.title.UISharedNavigationForm=Shared Navigation
+
+UISharedNavigationForm.action.Save=#{word.save}
+UISharedNavigationForm.action.Back=#{word.back}
+UISharedNavigationForm.action.Remove=Remove
+
+UISharedNavigationForm.label.navigation=Navigation
+UISharedNavigationForm.label.description=Description
+UISharedNavigation.msg.notSelected=You must select a group!
+UISharedNavigationForm.tab.label.SharedNavigation=Shared Navigation Setting
+UISharedNavigationForm.label.membership=Membership
+UISharedNavigationForm.tab.label.Permission=Permission Selector
+UISharedNavigationForm.label.priority=Priority
+UISharedNavigationForm.msg.user-nonexist=User "{0}" is not exist
+
+#############################################################################
+# org.exoplatform.portal.component.customization.UISharePortalForm#
+#############################################################################
+UITabPane.title.UISharedPortalForm=Shared Portal
+UISharedPortalForm.action.Save=#{word.save}
+UISharedPortalForm.action.Back=#{word.back}
+UISharedPortalForm.action.Remove=Remove
+
+UISharedPortalForm.label.portal=Portal
+UISharedPortalForm.label.description=Description
+UISharedPortalForm.label.membership=Membership
+UISharedPortalForm.label.priority=Priority
+
+UISharedPortalForm.tab.label.SharedPortal=Portal Setting
+UISharedPortalForm.tab.label.Permission=Permission Selector
+
+UITabPane.title.UIUserInGroup=Group Info
+UIGroupSharedInfo.title=Share Info
+UISharedPortalForm.msg.user-nonexist=User "{0}" is not exist
+
+#############################################################################
+# org.exoplatform.portal.organization.component.UIGroupManagement#
+#############################################################################
+UIGroupManagement.label.Groups=Groups
+UIGroupManagement.deleteGroup=Are you sure you want to delete this group?
+UIGroupManagement.label.Groups=Groups
+UIGroupManagement.label.AddGroup=Add New Group
+UIGroupManagement.label.EditGroup=Edit Selected Group
+UIGroupManagement.label.DeleteGroup=Delete Selected Group
+
+#############################################################################
+# org.exoplatform.portal.organization.component.UISharedNavigation#
+#############################################################################
+UITabPane.title.UISharedNavigation=Group Page Navigation
+UISharedNavigation.label.userNavigation=User Page Navigation Name
+UISharedNavigation.label.priority=Priority
UISharedNavigation.action.Save=Save
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/RegisterPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -1,22 +1,22 @@
-#
-# Copyright (C) 2009 eXo Platform SAS.
-#
-# This is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation; either version 2.1 of
-# the License, or (at your option) any later version.
-#
-# This software is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this software; if not, write to the Free
-# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-#
-
-UIRegisterForm.registerWithSuccess.message=Hai registrato un nuovo account con successo!
-UIRegisterForm.title=Registra un Nuovo Account
-UIRegisterForm.label.action.CheckUsernameAvailability=Cerca Utenti
+#
+# Copyright (C) 2009 eXo Platform SAS.
+#
+# This is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2.1 of
+# the License, or (at your option) any later version.
+#
+# This software is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this software; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+#
+
+UIRegisterForm.registerWithSuccess.message=Hai registrato un nuovo account con successo!
+UIRegisterForm.title=Registra un Nuovo Account
+UIRegisterForm.label.action.CheckUsernameAvailability=Cerca Utenti
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/StarToolbarPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -20,4 +20,4 @@
UIStarToolbarPortlet.item.ChangeLanguage=Cambia Linguaggio
UIStarToolbarPortlet.item.ChangeSkin=Cambia Skin
UIStarToolbarPortlet.item.AccountSetting=Preferenze Account
-UIStarToolbarPortlet.item.Logout=Uscita
\ No newline at end of file
+UIStarToolbarPortlet.item.Logout=Uscita
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/NavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-javax.portlet.title=Portlet della Navigazione
+javax.portlet.title=Portlet della Navigazione
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/portal/PortalNavigationPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,4 +17,4 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-javax.portlet.title=Portlet della Navigazione
+javax.portlet.title=Portlet della Navigazione
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/GroovyPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -20,7 +20,7 @@
#####################################################################################
# EXCEPTION MAPPINGS #
#####################################################################################
-UIGroovyPortlet.note.Text=Questa � una Groovy Portlet (Portlet di esempio) potr� essere sviluppata come web application in futuro.
+UIGroovyPortlet.note.Text=Questa \u00e8 una Groovy Portlet (Portlet di esempio) potr\u00e0 essere sviluppata come web application in futuro.
UIIFrameEditMode.title=Cambia URL
UIIFrameEditMode.label.iframeUrl=URL
UIIFrameEditMode.label.editmode=Modifica
@@ -34,7 +34,7 @@
#############################################################################
UIHomePagePortlet.Label.Title=Prova GateIn 3.0 con uno di questi account utente:
-UIHomePagePortlet.Label.Intro=La nuova versione nasce con una moderna interfaccia utente<br/>Layout Classici e WebOS Desktop<br/> Funzionalit� di Drag and Drop. Wizard di creazione della pagina<br/>E oltre...
+UIHomePagePortlet.Label.Intro=La nuova versione nasce con una moderna interfaccia utente<br/>Layout Classici e WebOS Desktop<br/> Funzionalit\u00e0 di Drag and Drop. Wizard di creazione della pagina<br/>E oltre...
UIHomePagePortlet.Label.Slogan=Il Meglio di eXo e JBoss Portal<div>GateIn 3.0 Beta 5</div>
UIHomePagePortlet.Label.Username=Nome utente:
UIHomePagePortlet.Label.Password=Password:
Modified: portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties
===================================================================
--- portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/portlet/web/src/main/webapp/WEB-INF/classes/locale/portlet/web/LogoPortlet_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -20,7 +20,7 @@
#####################################################################################
# EXCEPTION MAPPINGS #
#####################################################################################
-UILogoPortlet.note.Text=Questo � il Logo
+UILogoPortlet.note.Text=Questo \u00e8 il Logo
UILogoEditMode.title=Cambia URL
UILogoEditMode.label.logoUrl=URL
UILogoEditMode.label.editmode=Modifica
@@ -29,4 +29,4 @@
UILogoPortlet.action.Register=Registra
UILogoPortlet.action.signout=Uscita
UILogoPortlet.action.signin=Ingresso
-UILogoPortlet.label.Welcome=Benvenuto
\ No newline at end of file
+UILogoPortlet.label.Welcome=Benvenuto
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/organization/management/executive-board_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,6 +17,6 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-organization.title=Organizzazione
-organization.newstaff=Nuovo Staff
-organization.management=Gestione utenti e gruppi
\ No newline at end of file
+organization.title=Organizzazione
+organization.newstaff=Nuovo Staff
+organization.management=Gestione utenti e gruppi
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/administrators_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -23,4 +23,4 @@
administration.community-management=Gestione Community
administration.i18n=Internazionalizzazione
administration.console=Console Web
-administration.pageManagement=Gestione Pagina
\ No newline at end of file
+administration.pageManagement=Gestione Pagina
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/guests_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,6 +17,6 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-platform.guests.register=Registra
-platform.guests.sitemap=Mappa del Sito
-platform.guests.link=Collegamento
\ No newline at end of file
+platform.guests.register=Registra
+platform.guests.sitemap=Mappa del Sito
+platform.guests.link=Collegamento
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/group/platform/users_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,10 +17,10 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-platform.users.iframe=IFrame
-platform.users.mylink=Mio Link
-platform.users.mylink-blog=Blog
-platform.users.mylink-google=Google
-platform.users.mylink-facebook=Facebook
-platform.users.sitemap=Mappa del Sito
-platform.users.dashboard=Dashboard
\ No newline at end of file
+platform.users.iframe=IFrame
+platform.users.mylink=Mio Link
+platform.users.mylink-blog=Blog
+platform.users.mylink-google=Google
+platform.users.mylink-facebook=Facebook
+platform.users.sitemap=Mappa del Sito
+platform.users.dashboard=Dashboard
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/navigation/portal/classic_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,10 +17,10 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-portal.classic.home=Home
-portal.classic.sitemap=Mappa del Sito
-portal.classic.groupnavigation=Navigazione dei Gruppi
-portal.classic.portalnavigation=Navigazione del Portale
-portal.classic.register=Registrazione
-portal.classic.webexplorer=Web Explorer
-UIAddNewApplication.label.AddApplication = Aggiungi Applicazione
\ No newline at end of file
+portal.classic.home=Home
+portal.classic.sitemap=Mappa del Sito
+portal.classic.groupnavigation=Navigazione dei Gruppi
+portal.classic.portalnavigation=Navigazione del Portale
+portal.classic.register=Registrazione
+portal.classic.webexplorer=Web Explorer
+UIAddNewApplication.label.AddApplication = Aggiungi Applicazione
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/expression_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -17,143 +17,143 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-###################################################################
-# EXPRESSION START WITH 'A' #
-###################################################################
-word.accessPermission=Permesso di Accesso
-word.abort=Abbandona
-word.action=Azione
-###################################################################
-# EXPRESSION START WITH 'B' #
-###################################################################
-word.back=Indietro
-word.birthday=Compleanno
-
-###################################################################
-# EXPRESSION START WITH 'c' #
-###################################################################
-word.cancel=Annulla
-word.category=Categoria
-word.change=Cambia
-word.city=Citt�
-word.close=Chiudi
-word.comment=Commento
-word.content=Contenuto
-word.country=Nazione
-
-###################################################################
-# EXPRESSION START WITH 'd' #
-###################################################################
-word.date=Data
-word.decorator=Decorator
-word.department=Dipartimento
-word.description=Descrizione
-
-###################################################################
-# EXPRESSION START WITH 'e' #
-###################################################################
-word.editPermission=Modifica il permesso
-word.email=Email
-word.employer=Dipendente
-
-###################################################################
-# EXPRESSION START WITH 'f' #
-###################################################################
-word.familyName=Cognome
-word.finish=Termina
-word.firstName=Nome
-word.format=Formato
-
-###################################################################
-# EXPRESSION START WITH 'g' #
-###################################################################
-word.groupId=Id del Gruppo
-word.gender=Sesso
-word.givenName=Nome
-
-###################################################################
-# EXPRESSION START WITH 'h' #
-###################################################################
-word.height=Altezza
-
-###################################################################
-# EXPRESSION START WITH 'i' #
-###################################################################
-word.icon=Icona
-
-###################################################################
-# EXPRESSION START WITH 'i' #
-###################################################################
-word.jobTitle=Qualifica lavorativa
-
-###################################################################
-# EXPRESSION START WITH 'l' #
-###################################################################
-word.locale=Lingua
-word.label=Etichetta
-word.language=Linguaggio
-word.lastName=Cognome
-
-###################################################################
-# EXPRESSION START WITH 'm' #
-###################################################################
-word.mobile=Mobile
-
-###################################################################
-# EXPRESSION START WITH 'n' #
-###################################################################
-word.name=Nome
-word.nickName=Nick Name
-word.next=Prossimo
-
-###################################################################
-# EXPRESSION START WITH 'o' #
-###################################################################
-word.owner=Proprietario
-
-###################################################################
-# EXPRESSION START WITH 'p' #
-###################################################################
-word.postalCode=Codice Postale
-
-###################################################################
-# EXPRESSION START WITH 'r' #
-###################################################################
-word.refresh=Aggiorna
-word.restore=Recupera
-
-###################################################################
-# EXPRESSION START WITH 's' #
-###################################################################
-word.save=Salva
-word.stateProv=Stato/Prov
-word.street=Strada
-word.style=Stile
-word.subject=Soggetto
-word.summary=Intestazione
-word.skin=Skin
-
-###################################################################
-# EXPRESSION START WITH 't' #
-###################################################################
-word.template=Template
-word.tel=Tel
-word.title=Titolo
-
-###################################################################
-# EXPRESSION START WITH 'u' #
-###################################################################
-word.uri=Uri
-word.userName=Nome Utente
-word.update=Aggiorna
-
-###################################################################
-# EXPRESSION START WITH 'v' #
-###################################################################
-word.viewPermission=Visualizza il permesso
-
-###################################################################
-# EXPRESSION START WITH 'w' #
-###################################################################
-word.width=Larghezza
-word.website=Sito Web
+###################################################################
+# EXPRESSION START WITH 'A' #
+###################################################################
+word.accessPermission=Permesso di Accesso
+word.abort=Abbandona
+word.action=Azione
+###################################################################
+# EXPRESSION START WITH 'B' #
+###################################################################
+word.back=Indietro
+word.birthday=Compleanno
+
+###################################################################
+# EXPRESSION START WITH 'c' #
+###################################################################
+word.cancel=Annulla
+word.category=Categoria
+word.change=Cambia
+word.city=Citt\u00e0
+word.close=Chiudi
+word.comment=Commento
+word.content=Contenuto
+word.country=Nazione
+
+###################################################################
+# EXPRESSION START WITH 'd' #
+###################################################################
+word.date=Data
+word.decorator=Decorator
+word.department=Dipartimento
+word.description=Descrizione
+
+###################################################################
+# EXPRESSION START WITH 'e' #
+###################################################################
+word.editPermission=Modifica il permesso
+word.email=Email
+word.employer=Dipendente
+
+###################################################################
+# EXPRESSION START WITH 'f' #
+###################################################################
+word.familyName=Cognome
+word.finish=Termina
+word.firstName=Nome
+word.format=Formato
+
+###################################################################
+# EXPRESSION START WITH 'g' #
+###################################################################
+word.groupId=Id del Gruppo
+word.gender=Sesso
+word.givenName=Nome
+
+###################################################################
+# EXPRESSION START WITH 'h' #
+###################################################################
+word.height=Altezza
+
+###################################################################
+# EXPRESSION START WITH 'i' #
+###################################################################
+word.icon=Icona
+
+###################################################################
+# EXPRESSION START WITH 'i' #
+###################################################################
+word.jobTitle=Qualifica lavorativa
+
+###################################################################
+# EXPRESSION START WITH 'l' #
+###################################################################
+word.locale=Lingua
+word.label=Etichetta
+word.language=Linguaggio
+word.lastName=Cognome
+
+###################################################################
+# EXPRESSION START WITH 'm' #
+###################################################################
+word.mobile=Mobile
+
+###################################################################
+# EXPRESSION START WITH 'n' #
+###################################################################
+word.name=Nome
+word.nickName=Nick Name
+word.next=Prossimo
+
+###################################################################
+# EXPRESSION START WITH 'o' #
+###################################################################
+word.owner=Proprietario
+
+###################################################################
+# EXPRESSION START WITH 'p' #
+###################################################################
+word.postalCode=Codice Postale
+
+###################################################################
+# EXPRESSION START WITH 'r' #
+###################################################################
+word.refresh=Aggiorna
+word.restore=Recupera
+
+###################################################################
+# EXPRESSION START WITH 's' #
+###################################################################
+word.save=Salva
+word.stateProv=Stato/Prov
+word.street=Strada
+word.style=Stile
+word.subject=Soggetto
+word.summary=Intestazione
+word.skin=Skin
+
+###################################################################
+# EXPRESSION START WITH 't' #
+###################################################################
+word.template=Template
+word.tel=Tel
+word.title=Titolo
+
+###################################################################
+# EXPRESSION START WITH 'u' #
+###################################################################
+word.uri=Uri
+word.userName=Nome Utente
+word.update=Aggiorna
+
+###################################################################
+# EXPRESSION START WITH 'v' #
+###################################################################
+word.viewPermission=Visualizza il permesso
+
+###################################################################
+# EXPRESSION START WITH 'w' #
+###################################################################
+word.width=Larghezza
+word.website=Sito Web
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/services_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -22,14 +22,14 @@
#############################################################################
#class org.exoplatform.webui.form.Validator.EmptyFieldValidator
#{0}=input field name
-EmptyStringValidator.msg.empty-input=Il campo "{0}" � richiesto
+EmptyStringValidator.msg.empty-input=Il campo "{0}" \u00e8 richiesto
#############################################################################
# Email Address Validator #
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.EmailAddressValidator
#{1}=input field name, {0} user input email address
-EmailAddressValidator.msg.invalid-email=Hai inserito "{0}" nel campo {1}, l'indirizzo email non � valido
+EmailAddressValidator.msg.invalid-email=Hai inserito "{0}" nel campo {1}, l'indirizzo email non \u00e8 valido
#############################################################################
# Number Format Validator #
@@ -37,7 +37,7 @@
#class org.exoplatform.webui.form.validator.Validator.NumberFormatValidator
#{0}=input field name, {1} user input limit access
# old:NumberFormatValidator.msg.invalid-limitAccess=You have entered "{0}" in field {1}, it is an invalid \ limit access
-NumberFormatValidator.msg.invalid-limitAccess=Hai inserito "{0}" nel campo {1}, l'accesso a questo campo � limitato
+NumberFormatValidator.msg.invalid-limitAccess=Hai inserito "{0}" nel campo {1}, l'accesso a questo campo \u00e8 limitato
#{0}=input field name
NumberFormatValidator.msg.Invalid-input=Il valore inserito nel campo {0}, dovresti inserire un numero
@@ -46,7 +46,7 @@
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.IdentifierValidator
#{0}=input field name
-IdentifierValidator.msg.empty-input=Il campo "{0}" non pu� essere vuoto
+IdentifierValidator.msg.empty-input=Il campo "{0}" non pu\u00f2 essere vuoto
#{0}=input field name
IdentifierValidator.msg.invalid-char=Sono permessi soltanto caratteri alfabetici, numerici, trattino e underscore per il campo {0}
@@ -55,7 +55,7 @@
#############################################################################
#class org.exoplatform.webui.form.validator.Validator.NameValidator
#{0}=input field name
-NameValidator.msg.empty-input=Il campo "{0}" non pu� essere vuoto
+NameValidator.msg.empty-input=Il campo "{0}" non pu\u00f2 essere vuoto
#{0}=input field name
NameValidator.msg.invalid-char=Sono permessi soltanto caratteri alfabetici, numerici, punto, trattino e underscore per il campo {0}
@@ -108,7 +108,7 @@
# Message Service properties #
#############################################################################
#this exception is throw in GroupQueryHandler class
-OrganizationService.unique-group-exception=Il nome del gruppo {0} esiste gi�
+OrganizationService.unique-group-exception=Il nome del gruppo {0} esiste gi\u00e0
#Throw in org.exoplatform.commons.utils.PageList, {0}=request page parameter, {1}=available pages parameter
PageList.page-out-of-range=Stai provando ad aprire la pagina {0}, ma ci sono soltanto {1} pagine disponibili
#Throw in exo.services.communication.message.impl.MessageServiceImpl.
@@ -116,7 +116,7 @@
MessageService.account-not-found=Non posso trovare l'account {0} per l'utente {1}
#Throw in exo.services.communication.message.impl.StandaloneProtocolPlugin.
#{0}=to address
-MessageService.invalid-standalone-message-address=Stai usando l'account standalone con \ l'indirizzo {0} non � valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount
+MessageService.invalid-standalone-message-address=Stai usando l'account standalone con \ l'indirizzo {0} non \u00e8 valido. Il sistema si aspetta un indirizzo con il seguente formato: \ ricevente#nomeAccount
#Throw in exo.services.communication.message.impl.MailServiceImpl
#{0}=The orginal error message thrown by java mail library
MessageService.send-message-fail=Non posso mandare il messaggio. Verifica l'indirizzo email \n\ Errore: {0}
@@ -127,4 +127,4 @@
#Throw in org.exoplatform.services.communication.forum.impl.ForumServiceImpl
#Throw in org.exoplatform.services.indexing.Searcher
#{0}=The orginal error message throw by lucence
-Searcher.msg.search-expression-error=C'� un errore nell'espressione inserita.<br />{0}
+Searcher.msg.search-expression-error=C'\u00e8 un errore nell'espressione inserita.<br />{0}
Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/classes/locale/portal/webui_it.properties 2010-01-15 23:18:55 UTC (rev 1324)
@@ -34,8 +34,8 @@
#class org.exoplatform.webui.form.validator.Validator.EmptyFieldValidator
#{0}=input field name
-EmptyFieldValidator.msg.empty-input=Il campo "{0}" � richiesto.
-EmptyFieldValidator.msg.empty=L'informazione nel campo "{0}" non pu� essere vuota.
+EmptyFieldValidator.msg.empty-input=Il campo "{0}" \u00e8 richiesto.
+EmptyFieldValidator.msg.empty=L'informazione nel campo "{0}" non pu\u00f2 essere vuota.
ExpressionValidator.msg.value-invalid=Il campo "{0}" deve essere nel formato "{1}".
UITestForm.label.UIAddApplication=Aggiungi Applicazione
StringLengthValidator.msg.length-invalid=La lunghezza del testo nel campo "{0}" deve essere tra i caratteri "{1}" e "{2}".
@@ -46,14 +46,14 @@
#class org.exoplatform.webui.form.validator.Validator.EmailAddressValidator
#{0}=input field name, {1} user input email address
-EmailAddressValidator.msg.Invalid-input=Il tuo indirizzo email non � valido. Inserisci un indirizzo differente.
+EmailAddressValidator.msg.Invalid-input=Il tuo indirizzo email non \u00e8 valido. Inserisci un indirizzo differente.
#############################################################################
# Mandatory Validator #
#############################################################################
#{0} = input field name
-MandatoryValidatorIterator.msg.empty=La lista "{0}" non pu� essere vuota.
+MandatoryValidatorIterator.msg.empty=La lista "{0}" non pu\u00f2 essere vuota.
#############################################################################
# Number Format Validator #
@@ -74,7 +74,7 @@
#class org.exoplatform.webui.organization.UIListPermissionSelector.EmptyIteratorValidator
#{0}=input field name
-EmptyIteratorValidator.msg.empty=La lista "{0}" non pu� essere vuota.
+EmptyIteratorValidator.msg.empty=La lista "{0}" non pu\u00f2 essere vuota.
#############################################################################
# Resource Validator #
@@ -117,8 +117,8 @@
UIPortalComposer.title.UIPortalComposer=Modifica con l'Inline Composer
UIPortalComposer.action.Abort=Abbandona
UIPortalComposer.action.Finish=Termina
-UIPortalComposer.action.ViewProperties=Propriet� del Portale
-UIPortalComposer.action.SwitchMode=Passa alla modalit� di visualizzazione
+UIPortalComposer.action.ViewProperties=Propriet\u00e0 del Portale
+UIPortalComposer.action.SwitchMode=Passa alla modalit\u00e0 di visualizzazione
UITabPane.title.UIApplicationList=Applicazioni
UITabPane.title.UIContainerList=Contenitori
@@ -218,24 +218,24 @@
#############################################################################
UIAccountForm.msg.password-is-not-match=Password e Conferma Passworddevono essere le stesse.
-UIAccountInputSet.msg.user-exist=Il nome utente esiste gi�, inserisci un nome differente.
-UIAccountInputSet.msg.user-not-exist=Il nome utente � ancora disponibile.
-UIAccountInputSet.msg.user-is-deleted=L'utenza pu� essere eliminata.
-UIAccountInputSet.msg.email-exist=La mail esiste gi�, inserisci un differente indirizzo.
-UIAccountInputSet.msg.empty-input=Il nome utente non pu� essere vuoto.
+UIAccountInputSet.msg.user-exist=Il nome utente esiste gi\u00e0, inserisci un nome differente.
+UIAccountInputSet.msg.user-not-exist=Il nome utente \u00e8 ancora disponibile.
+UIAccountInputSet.msg.user-is-deleted=L'utenza pu\u00f2 essere eliminata.
+UIAccountInputSet.msg.email-exist=La mail esiste gi\u00e0, inserisci un differente indirizzo.
+UIAccountInputSet.msg.empty-input=Il nome utente non pu\u00f2 essere vuoto.
UIAccountInputSet.msg.successful.create.user=Hai registrato un nuovo account.
-UIAccountInputSet.msg.successful.update.user=Il profilo utente � stato aggiornato.
-UIUserProfileInputSet.msg.sucsesful.update.userprofile=Il profilo utente � stato aggiornato.
+UIAccountInputSet.msg.successful.update.user=Il profilo utente \u00e8 stato aggiornato.
+UIUserProfileInputSet.msg.sucsesful.update.userprofile=Il profilo utente \u00e8 stato aggiornato.
UIUserProfileInputSet.title=Informazioni Personali
UIUserProfileInputSet.label.Profile=Profilo
UIUserProfileInputSet.label.HomeInfo=Informazioni della Home
UIUserProfileInputSet.label.BusinessInfo=Informazioni di Business
UIGroupMembershipForm.msg.user-not-exist=L'utente "{0}" non esiste.
-UIGroupMembershipForm.msg.user-not-empty=Il nome utente non pu� essere vuoto.
-UIGroupMembershipForm.msg.Invalid-char=Il campo "{0}" pu� contenere soltanto caratteri alfabetici, numerici, virgolae trattino. Il primo e ultimo carattere devono essere alfabetici.
+UIGroupMembershipForm.msg.user-not-empty=Il nome utente non pu\u00f2 essere vuoto.
+UIGroupMembershipForm.msg.Invalid-char=Il campo "{0}" pu\u00f2 contenere soltanto caratteri alfabetici, numerici, virgolae trattino. Il primo e ultimo carattere devono essere alfabetici.
UIGroupMembershipForm.msg.duplicate-user=Alcuni utenti sono duplicati. Verifica!
UIGroupMembershipForm.msg.group-not-select=Seleziona un gruppo.
-UIGroupMembershipForm.msg.membership-exist=L'utente "{0}" ha gi� la membership per il gruppo "{1}", seleziona un'altra membership.
+UIGroupMembershipForm.msg.membership-exist=L'utente "{0}" ha gi\u00e0 la membership per il gruppo "{1}", seleziona un'altra membership.
UILoginForm.msg.Invalid-account=Il Nome Utente e/or la Password sono sbagliate o vuote. Per favore riprova.
UILoginForm.label.welcome=Benvenuto
UILoginForm.label.login=Login
@@ -289,7 +289,7 @@
UIPortletForm.label.height=#{word.height}:
UIPortletForm.label.showInfoBar=Mostra la barra delle Info :
UIPortletForm.label.windowId=Id della Finestra :
-UIPortletForm.label.showPortletMode=Mostra la modalit� della Portlet :
+UIPortletForm.label.showPortletMode=Mostra la modalit\u00e0 della Portlet :
UIPortletForm.label.showWindowState=Mostra lo Stato della Finestra :
UIPortletForm.label.id=Id della Portlet :
UIPortletForm.label.displayName=Nome Visualizzato:
@@ -319,13 +319,13 @@
UIDescription.title.portalManagement=Navigazione del Portale
UIDescription.title.pageWizard=Wizard per la Creazione della Pagina
UIDescription.title.pageEditWizard=Wizard per la Modifica della Pagina
-UIDescription.content.pageManagement=<strong>Gestione pagine:</strong><br/>Questo � l'elenco di tutte le pagine.<br/>Puoi vedere l'anteprima (solo su normali pagine),</br/><br/> modificare o eliminare le pagine se hai i dovuti permessi.<br/><br/>Puoi cercare le pagine per <em>Tipo di proprietario</em> (portal/group/user), tramite <em>Id del proprietario</em> (nome del tipo di proprietario), o per <em>Nome della pagina.</em><br/><br/>Per creare una nuova pagina, clicca sul bottone "Aggiungi Nuova Pagina" e inserisci i campi richiesti.
-UIDescription.content.portalManagement=<strong>Gestione Portali: </strong><br/>Questo � l'elenco di tutti i portali. Per creare un nuovo portale,clicca sul bottone "Crea Nuovo Portale" e inserisci i campi richiesti.<br/>Puoi modificare o eliminare un portale da quest'elenco se hai i giusti permessi.
+UIDescription.content.pageManagement=<strong>Gestione pagine:</strong><br/>Questo \u00e8 l'elenco di tutte le pagine.<br/>Puoi vedere l'anteprima (solo su normali pagine),</br/><br/> modificare o eliminare le pagine se hai i dovuti permessi.<br/><br/>Puoi cercare le pagine per <em>Tipo di proprietario</em> (portal/group/user), tramite <em>Id del proprietario</em> (nome del tipo di proprietario), o per <em>Nome della pagina.</em><br/><br/>Per creare una nuova pagina, clicca sul bottone "Aggiungi Nuova Pagina" e inserisci i campi richiesti.
+UIDescription.content.portalManagement=<strong>Gestione Portali: </strong><br/>Questo \u00e8 l'elenco di tutti i portali. Per creare un nuovo portale,clicca sul bottone "Crea Nuovo Portale" e inserisci i campi richiesti.<br/>Puoi modificare o eliminare un portale da quest'elenco se hai i giusti permessi.
UIDescription.content.pageWizard=Da eliminare
-UIDescription.content.pageWizard2=<strong>Step 1: Le modifiche sulla pagina includono il percorso della pagina, il nome del nodo e il nome visualizzato.</strong><br/> Procedi come segue: <br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona il nodo della pagina per cui desideri creare una pagina figlia <br/>- Inserisci un <em>Nome del Nodo </em><br/>- Inserisci un <em>Nome Visualizzato</em> (option)<br/>- Seleziona, se vuoi, la check box (option) <em>Visibile</em> <br/>- Seleziona, se vuoi, la check box (option) <em>Data & tempo di pubblicazione</em> <br/> Se la check box <em>Data & tempo di pubblicazione</em> � selezionata:<br/> - Inserisci <em>Data Inizio di pubblicazione</em><br/> - Inserisci <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere con il prossimo step
+UIDescription.content.pageWizard2=<strong>Step 1: Le modifiche sulla pagina includono il percorso della pagina, il nome del nodo e il nome visualizzato.</strong><br/> Procedi come segue: <br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona il nodo della pagina per cui desideri creare una pagina figlia <br/>- Inserisci un <em>Nome del Nodo </em><br/>- Inserisci un <em>Nome Visualizzato</em> (option)<br/>- Seleziona, se vuoi, la check box (option) <em>Visibile</em> <br/>- Seleziona, se vuoi, la check box (option) <em>Data & tempo di pubblicazione</em> <br/> Se la check box <em>Data & tempo di pubblicazione</em> \u00e8 selezionata:<br/> - Inserisci <em>Data Inizio di pubblicazione</em><br/> - Inserisci <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere con il prossimo step
UIDescription.content.pageWizard3=<strong>Step 2: Configurare il layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona uno dei layout dell'elenco <br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare allo step precedente
UIDescription.content.pageEditWizard=La descrizione e la guida del Wizard di modifica della pagina <br/> sono qui.
-UIDescription.content.pageEditWizard1=<strong>Step 1: Cambia il nome visualizzabile, la visibilit� e il periodo di pubblicazione di una pagina.</strong><br/> Procedi come segue:<br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona la pagina che vuoi modificare <br/>- Modifica il <em>Nome visualizzato</em> se richiesto<br/>- Check or uncheck the <em>Visible</em> check box<br/>- Seleziona, se vuoi, la check box <em>Data & tempo di pubblicazione</em> <br/> Se la <em>Data & tempo di pubblicazione</em> � selezionata:<br/> - Modifica <em>Data Inizio di pubblicazione</em><br/> - Modifica <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere al prossimo step
+UIDescription.content.pageEditWizard1=<strong>Step 1: Cambia il nome visualizzabile, la visibilit\u00e0 e il periodo di pubblicazione di una pagina.</strong><br/> Procedi come segue:<br/>- Seleziona una navigazione dall'elenco in basso <br/>- Seleziona la pagina che vuoi modificare <br/>- Modifica il <em>Nome visualizzato</em> se richiesto<br/>- Check or uncheck the <em>Visible</em> check box<br/>- Seleziona, se vuoi, la check box <em>Data & tempo di pubblicazione</em> <br/> Se la <em>Data & tempo di pubblicazione</em> \u00e8 selezionata:<br/> - Modifica <em>Data Inizio di pubblicazione</em><br/> - Modifica <em>Data Fine di pubblicazione</em><br/>- Clicca su "Prossimo" per procedere al prossimo step
UIDescription.content.pageEditWizard2=<strong>Step 2: Modifica del layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona un nuovo layout di pagina o mantieni il corrente<br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare al precedente step
UIDescription.content.pageEditWizard3=<strong>Step 2: Modifica del layout della pagina.</strong><br/> Procedi come segue:<br/>- Seleziona un nuovo layout di pagina o mantieni il corrente<br/>- Clicca su "Prossimo" per andare al prossimo step o "Indietro" per ritornare al precedente step
#############################################################################
@@ -335,8 +335,8 @@
UIPortalForm.title=Modifica il Portale
UIPortalForm.action.Save=#{word.save}
UIPortalForm.action.Close=Annulla
-UIPortalForm.msg.sameName=Il portale esiste gi�.
-UIPortalForm.msg.notExistAnymore=Questo portale non esiste o pu� essere eliminato.
+UIPortalForm.msg.sameName=Il portale esiste gi\u00e0.
+UIPortalForm.msg.notExistAnymore=Questo portale non esiste o pu\u00f2 essere eliminato.
UIPortalForm.label.name=Nome del Portale :
UIPortalForm.label.locale=#{word.locale} :
UIPortalForm.label.date=#{word.date} :
@@ -368,7 +368,7 @@
UIListPermissionSelector.header.action=Azione
UIListPermissionSelector.action.addPermission=Aggiungi Permesso
UIListPermissionSelector.action.title.Delete=Elimina
-UIListPermissionSelector.label.publicMode=Rendilo pubblico (chiunque pu� accedere):
+UIListPermissionSelector.label.publicMode=Rendilo pubblico (chiunque pu\u00f2 accedere):
UIGroupMembershipSelector.msg.selectGroup=Devi selezionare prima un gruppo.
UIGroupMembershipSelector.title=Selettore del Membership del gruppo
UIGroupMembershipSelector.title.ListPermissionSelector=Selettore del Gruppo e del Membership
@@ -404,10 +404,10 @@
UIPageBrowser.msg.PageNotExist=La pagina non esiste.
UIPageBrowser.msg.UserNotPermission=Non hai i permessi per accedere al nodo della pagina.
UIPageBrowser.msg.InvalidQueryException=Interrogazione non valida.
-UIPageBrowser.msg.Invalid-viewPermission=Non ti � permesso accedere alla pagina {0}.
-UIPageBrowser.msg.Invalid-editPermission=Non ti � permesso modificare la pagina {0}.
-UIPageBrowser.msg.Invalid-deletePermission=Non ti � permesso eliminare pagina {0}.
-UIPageBrowser.msg.Invalid-Preview=Questa � una pagina del Desktop. Non puoi vedere l'anteprima di questi tipi.
+UIPageBrowser.msg.Invalid-viewPermission=Non ti \u00e8 permesso accedere alla pagina {0}.
+UIPageBrowser.msg.Invalid-editPermission=Non ti \u00e8 permesso modificare la pagina {0}.
+UIPageBrowser.msg.Invalid-deletePermission=Non ti \u00e8 permesso eliminare pagina {0}.
+UIPageBrowser.msg.Invalid-Preview=Questa \u00e8 una pagina del Desktop. Non puoi vedere l'anteprima di questi tipi.
UIPageBrowser.msg.NotViewPage=Non hai i permessi per vedere la pagina.
UIPageBrowser.msg.edit.NotEditPage=Non hai i permessi per modificare la pagina.
UIPageBrowser.msg.delete.NotDelete=Non hai i permessi per eliminare la pagina.
@@ -435,12 +435,12 @@
#############################################################################
UIPageNodeSelector.UIDropDown.title=Seleziona le Navigazioni
-UIPageNodeSelector.msg.notAvailable=La pagina del nodo � ora disponibile.
+UIPageNodeSelector.msg.notAvailable=La pagina del nodo \u00e8 ora disponibile.
UIPageNodeSelector.msg.Invalid-editPermission=Non hai i permessi per modificare questa pagina
UIPageNodeSelector.msg.deleteNav=Non puoi eliminare la navigazione di questa pagina.
UIPageNodeSelector.msg.NoPageNavigation=Devi creare una navigazione prima di usare questa funzione.
UIPageNodeSelector.msg.curentPage=Non posso eliminare la pagine: E' usata da un'altro programma.
-UIPageNodeSelector.msg.paste.sameName=Il nodo esiste gi�.
+UIPageNodeSelector.msg.paste.sameName=Il nodo esiste gi\u00e0.
UIPageNodeSelector.msg.paste.sameSrcAndDes=Il sorgente e la destinazione devono essere differenti.
UIPageNodeSelector.deleteNode=Sei sicuro di voler eliminare la navigazione?
UIPageNodeSelector.deleteNavigation=Sei sicuro di voler eliminare il nodo?
@@ -460,8 +460,8 @@
UIPageEditor.action.Abort=Abbandona
UIPageEditor.action.Finish=Termina
UIPageEditor.title.UIPageEditor=Editor della Pagina
-UIPageEditor.action.ViewProperties=Propriet� di visualizzazione della Pagina
-UIPageEditor.action.SwitchMode=Cambia la Modalit� di Visualizzazione
+UIPageEditor.action.ViewProperties=Propriet\u00e0 di visualizzazione della Pagina
+UIPageEditor.action.SwitchMode=Cambia la Modalit\u00e0 di Visualizzazione
#############################################################################
# org.exoplatform.portal.component.customization.UIPageForm #
@@ -481,7 +481,7 @@
UIPageForm.tab.label.Template=Template della Pagina
UIPageForm.tab.label.PermissionSetting=Preferenze del Permesso
UIPageForm.tab.label.UIPageTemplateOptions=Layout della Pagina
-UIPageForm.msg.sameName=La pagina esiste gi�.
+UIPageForm.msg.sameName=La pagina esiste gi\u00e0.
UIOwnerIdSelector.title.OwnerIdSelector=Selettore dell'Id del Proprietario
UIPopupGroupSelector.title.UIGroupSelector=Selettore del Gruppo
UIPopupGroupSelector.title.GroupSelector=Seleziona il Gruppo
@@ -490,7 +490,7 @@
# org.exoplatform.portal.component.customization.UIPageNodeForm#
#############################################################################
-UIPageNodeForm2.msg.SameName=Il nome del nodo esiste gi�.
+UIPageNodeForm2.msg.SameName=Il nome del nodo esiste gi\u00e0.
UIPageNodeForm2.msg.selectPage=Devi selezionare una pagina.
UIPageNodeForm2.msg.startDateBeforeEndDate=La data di fine deve essere superiore alla data di inizio.
UIPageNodeForm2.action.Save=#{word.save}
@@ -529,7 +529,7 @@
#############################################################################
UIPageNavigationForm.title=Navigatore della Pagina & Navigazione
-UIPageNavigationForm.label.priority=Priorit� :
+UIPageNavigationForm.label.priority=Priorit\u00e0 :
UIPageNavigationForm.label.creator=Creatore :
UIPageNavigationForm.label.modifier=Modificatore :
UIPageNavigationForm.label.ownerType=Tipo di Proprietario :
@@ -545,7 +545,7 @@
UIPageNavigationForm.action.ClosePopup=#{word.close}
UIPageNavigationForm.action.Close=Annulla
UIPageNavigationForm.msg.selectGroup=Devi selezionare un gruppo.
-UIPageNavigationForm.msg.existPageNavigation=La navigazione della pagina {0} esiste gi�.
+UIPageNavigationForm.msg.existPageNavigation=La navigazione della pagina {0} esiste gi\u00e0.
UIPageNavigation.msg.noMakablePageNavigation=Non hai i permessi per creare una pagina di navigazione per questo gruppo.
UIPageNavigation.tooltip.upLevel=Vai al livello superiore
UIPageNavigation.label.navigation=Navigazione di {0}
@@ -648,7 +648,7 @@
UIPageCreationWizard.label.done=#{word.save}
UIPageCreationWizard.label.previousStep=Step Precedente
UIPageCreationWizard.label.nextStep=Prossimo Step
-UIPageCreationWizard.msg.NameNotSame=Questo nome esiste gi�.
+UIPageCreationWizard.msg.NameNotSame=Questo nome esiste gi\u00e0.
UIPageCreationWizard.msg.notSelectedPageNavigation=Devi selezionare una navigazione.
UIPageCreationWizard.msg.StepByStep=All'inizio devi eseguire Step per Step.
UIPageNodeWizardPreview.action.Finish=Salva e Termina
@@ -776,16 +776,16 @@
UIPortlet.label.View=Visualizza
UIPortlet.lable.information=Fatto
UIPortlet.deletePortlet=Sicuro di voler eliminare questa portlet?
-UIPortlet.tooltip.PortletMode=Modalit� della Portlet
+UIPortlet.tooltip.PortletMode=Modalit\u00e0 della Portlet
UIPortlet.tooltip.Minimize=Rimpicciolisci
UIPortlet.tooltip.MinimizeRestore=Recupera
UIPortlet.tooltip.Maximize=Ingrandizzi
-UIPortlet.tooltip.MaximizeRestore=Recupera gi�
+UIPortlet.tooltip.MaximizeRestore=Recupera gi\u00f9
UIPortlet.tooltip.editPortlet=Modifica la Portlet
UIPortlet.tooltip.deletePortlet=Elimina la Portlet
UIPortlet.tooltip.ResizeWindow=Ridimensiona la Finestra
UIPortlet.tooltip.DragControl=Raccogli l'area per copiare la portlet
-UIPortlet.message.RuntimeError=La portlet ha riscontrato un errore e non pu� essere visualizzata
+UIPortlet.message.RuntimeError=La portlet ha riscontrato un errore e non pu\u00f2 essere visualizzata
#############################################################################
PortletMode.label.help=Aiuto
@@ -819,16 +819,16 @@
#############################################################################
UIPageEditBar.tooltip.PagePreview=Anteprima della Pagina
-UIPageEditBar.tooltip.EditPage=Propriet� di Modifica della Pagina
+UIPageEditBar.tooltip.EditPage=Propriet\u00e0 di Modifica della Pagina
UIPageEditBar.tooltip.SharedNavigation=Configurazione della Navigazione della Community
UIPageEditBar.tooltip.EditContainer=Mostra i Controlli del Contenitore
UIPageEditBar.tooltip.EditPortlet=Mostra i Controlli della Portlet
UIPageEditBar.tooltip.Decorator=Decoratore
UIPageEditBar.tooltip.SavePage=Salva la Pagina
-UIPageEditBar.tooltip.TurnOffPreview=Clicca qui per togliere la modalit� di anteprima
+UIPageEditBar.tooltip.TurnOffPreview=Clicca qui per togliere la modalit\u00e0 di anteprima
UIPageManagement.title.BROWSE=Gestisci le Pagine
UIPageManagement.title.EDIT=Navigatore della Pagina e della Navigazione
-UIPageManagement.msg.Invalid-editPermission=Non ti � permesso modificare la pagina.
+UIPageManagement.msg.Invalid-editPermission=Non ti \u00e8 permesso modificare la pagina.
#############################################################################
#org.exoplatform.webui.core.UIPageIterator #
@@ -885,7 +885,7 @@
############################################################################
UILogged.note.loggedUser=Benvenuto
-UILogged.note.ItemContainer=Questo componente � in costruzione.
+UILogged.note.ItemContainer=Questo componente \u00e8 in costruzione.
UILogged.action.logout=Uscita
UILogged.action.signout=Uscita
UILogged.action.Youhave=Tu hai:
@@ -907,10 +907,10 @@
UIPortalComponentLogin.label.password=Password
UIPortalComponentLogin.label.username=Nome Utente
-UIForgetPasswordWizard.title=Pech� non sei abilitato a fare il login ?
+UIForgetPasswordWizard.title=Pech\u00e8 non sei abilitato a fare il login ?
UIForgetPasswordWizard.action.Next=Prossimo
UIForgetPasswordWizard.action.Back=Indietro
-UIForgetPasswordWizard.info=Ci scusiamo per qualunque inconvenienza hai riscontrato nel login del sito web.<br /Per risolvere il problema nel pi� breve tempo possibile, please segui la risoluzione ai problemi qui in basso.<br /><br />1. Recupera la password: inserisci il <strong>tuo nome utente</strong> e clicca su manda.<br/>2. Recupera il tuo nome utente: inserisci il <strong>tuo indirizzo email</strong> e clicca su manda.<br/>
+UIForgetPasswordWizard.info=Ci scusiamo per qualunque inconvenienza hai riscontrato nel login del sito web.<br /Per risolvere il problema nel pi\u00f9 breve tempo possibile, please segui la risoluzione ai problemi qui in basso.<br /><br />1. Recupera la password: inserisci il <strong>tuo nome utente</strong> e clicca su manda.<br/>2. Recupera il tuo nome utente: inserisci il <strong>tuo indirizzo email</strong> e clicca su manda.<br/>
UIForgetPasswordWizard.label.forgotpassword=Password dimenticata
UIForgetPasswordWizard.label.forgotusername=Nome Utente dimenticato
@@ -923,15 +923,15 @@
UIForgetPassword.action.Back=Indietro
UIForgetPassword.label.username=Nome Utente :
UIForgetPassword.label.email=Email :
-UIForgetPassword.msg.user-delete=Il tuo nome utente � stato cancellato dall'amministratore.
+UIForgetPassword.msg.user-delete=Il tuo nome utente \u00e8 stato cancellato dall'amministratore.
UIForgetPassword.msg.user-not-exist=Il nome utente non esiste.
UIForgetPassword.msg.email-not-exist=L'email non esiste.
UIForgetPassword.msg.send-mail-success=Verifica la tua email.
-UIForgetPassword.msg.expration=Il link � scaduto, devi ripetere il processo di attivazione.
+UIForgetPassword.msg.expration=Il link \u00e8 scaduto, devi ripetere il processo di attivazione.
UIForgetPassword.mail.header=Grazie per aver contattato il supporto. Hai mandato una richiesta per lo user name e password.
UIForgetPassword.mail.footer=Grazie.
-UIForgetPassword.mail.user=Il nome utente per quest'account � :
-UIForgetPassword.mail.password=La Password del tuo account � :
+UIForgetPassword.mail.user=Il nome utente per quest'account \u00e8 :
+UIForgetPassword.mail.password=La Password del tuo account \u00e8 :
UIForgetPassword.mail.link=Puoi richiedere una nuova password per il nome utente, clicca su questo link :
UIResetPassword.title=Cambia password
UIResetPassword.action.Save=Salva
@@ -941,7 +941,7 @@
UIResetPassword.label.changepass=Cambia password:
UIResetPassword.label.newpassword=Nuova password:
UIResetPassword.label.confirmnewpassword=Conferma la nuova password:
-UIResetPassword.msg.change-password-successfully=La password � stata cambiata.
+UIResetPassword.msg.change-password-successfully=La password \u00e8 stata cambiata.
UIResetPassword.msg.password-is-not-match=Nuova password e Conferma nuova password devono essere uguali.
UIResetPassword.msg.Invalid-account=Il Nome Utente o la Password sono sbagliati o vuoti. Riprova.
@@ -979,7 +979,7 @@
UIContainer.deleteContainer=Sicuro di voler eliminare questo contenitore?
UIContainer.tooltip.closeContainer=Elimina il Contenitore
UIContainer.tooltip.editContainer=Modifica il Contenitore
-UIContainer.tooltip.drag=Copia il Contenitore qu�
+UIContainer.tooltip.drag=Copia il Contenitore qu\u00ec
############################################################################
# org.exoplatform.portal.component.view.UIPage #
@@ -1025,7 +1025,7 @@
UIPageBody.label.description=Il corpo della pagina del portale
UIPageBody.msg.pageNotFoundLine1=Pagina non trovata.
UIPageBody.msg.pageNotFoundLine2=Non hai i permessi per visualizzare la pagina.
-UIPageBody.msg.pageNotFoundLine3=La pagina pu� essere eliminata.
+UIPageBody.msg.pageNotFoundLine3=La pagina pu\u00f2 essere eliminata.
UIPageBody.msg.pageNotFoundLine4=Questo nodo non ha pagine.
############################################################################
@@ -1082,8 +1082,8 @@
NavigationNodePopupMenu.event.SaveNavigation=Salva la Navigazione
NavigationNodePopupMenu.event.DeleteNode=Elimina il Nodo
UIGroupManagement.msg.Edit=Devi selezionare un gruppo.
-UIGroupManagement.msg.Delete=Non puoi eliminare il gruppo perch� � usato da un'altro programma.
-UIGroupManagement.msg.DeleteMandatory=Non puoi eliminare il gruppo perch� � (esso o i suoi figli) obbligatorio.
+UIGroupManagement.msg.Delete=Non puoi eliminare il gruppo perch\u00e8 \u00e8 usato da un'altro programma.
+UIGroupManagement.msg.DeleteMandatory=Non puoi eliminare il gruppo perch\u00e8 \u00e8 (esso o i suoi figli) obbligatorio.
###############################################################################
# org.exoplatform.portal.webui.component.customization.UIEditCurentPage #
@@ -1160,9 +1160,9 @@
UIAccountChangePass.label.currentpass=Password Corrente :
UIAccountChangePass.label.newpass=Nuova Password :
UIAccountChangePass.label.confirmnewpass=Conferma Nuova Password :
-UIAccountChangePass.msg.change.pass.success=La password � stata cambiata.
+UIAccountChangePass.msg.change.pass.success=La password \u00e8 stata cambiata.
UIAccountChangePass.msg.password-is-not-match=Nuova Password e Conferma Nuova Password non coincidono.
-UIAccountChangePass.msg.currentpassword-is-not-match=La Password Corrente non � corretta.
+UIAccountChangePass.msg.currentpassword-is-not-match=La Password Corrente non \u00e8 corretta.
################################################################################
# UIDropDownControl # tungnd
@@ -1204,7 +1204,7 @@
UIGadgetContainerForm.label.description=Descrizione:
UIGadgetContainerForm.action.Save=#{word.save}
UIGadgetContainerForm.action.Close=Annulla
-UIGadgetContainerForm.msg.exist=Il contenitore esiste gi�. Inseriscine un altro.
+UIGadgetContainerForm.msg.exist=Il contenitore esiste gi\u00e0. Inseriscine un altro.
################################################################################
# org.exoplatform.portal.webui.container.UIWidgetContainer
@@ -1260,10 +1260,10 @@
UIDashboardEditForm.label.totalColumns=Numero di colonne:
UIDashboardEditForm.label.isPrivate=E' Privato:
UIDashboardEditForm.label.owner=Prprietario:
-UIDashboard.msg.required=Il campo di testo � richiesto.
-UIDashboard.msg.addGadget=Trascina qu� il tuo gadget.
-UIDashboard.msg.notUrl=L'url non � valido. Inserisci l'url corretto del file xml del gadget o di un feed RSS.
-UIDashboard.msg.ApplicationNotExisted=L'applicazione non esiste o non pu� essere cancellata.
+UIDashboard.msg.required=Il campo di testo \u00e8 richiesto.
+UIDashboard.msg.addGadget=Trascina qu\u00ec il tuo gadget.
+UIDashboard.msg.notUrl=L'url non \u00e8 valido. Inserisci l'url corretto del file xml del gadget o di un feed RSS.
+UIDashboard.msg.ApplicationNotExisted=L'applicazione non esiste o non pu\u00f2 essere cancellata.
################################################################################
# org.exoplatform.webui.organization.account.UIUserSelector
@@ -1292,7 +1292,7 @@
UIAddNewApplication.label.AddApplication=Aggiungi Applicazione
UIAddNewApplication.label.Categories=Categorie
UIAddNewApplication.label.Select=Seleziona le Applicazioni
-UIAddNewApplication.label.NoneApp=Non c'� nessun'applicazione in questo spazio. Vai alla portlet del Registro delle Applicazioni per importare le applicazioni.
+UIAddNewApplication.label.NoneApp=Non c'\u00e8 nessun'applicazione in questo spazio. Vai alla portlet del Registro delle Applicazioni per importare le applicazioni.
UIAddNewApplication.label.Type=Tipo:
UIAddNewApplication.label.Created=Creato da:
UIAddNewApplication.label.Description=Descrizione:
@@ -1351,7 +1351,7 @@
############################################################################
UISiteManagement.msg.Invalid-deletePermission=L'utente non ha i permessi per cancellare il portale
-UISiteManagement.msg.portal-not-exist=Il portale non esiste o non pu� essere cancellato
+UISiteManagement.msg.portal-not-exist=Il portale non esiste o non pu\u00f2 essere cancellato
UISiteManagement.msg.Invalid-editPermission=L'utente non ha i permessi per modificare il portale
############################################################################
@@ -1361,7 +1361,7 @@
UIGroupNavigationManagement.Action.Add=Aggiungi Navigazione
UIGroupNavigationManagement.Delete.Confirm=Sicuro di voler eliminare la navigazione?
UIGroupNavigationManagement.msg.Invalid-deletePermission=L'utente non ha i permessi per cancellare la navigazione
-UIGroupNavigationManagement.msg.navigation-not-exist=La navigazione non esiste o non pu� essere cancellata
+UIGroupNavigationManagement.msg.navigation-not-exist=La navigazione non esiste o non pu\u00f2 essere cancellata
UIGroupNavigationManagement.msg.Invalid-editPermission=L'utente non ha i permessi per modificare la navigazione
############################################################################
@@ -1369,7 +1369,7 @@
############################################################################
UINavigationManagement.action.addNode=Aggiungi Nodo
-UINavigationManagement.msg.NavigationNotExistAnymore=La navigazione non pu� essere cancellata.
+UINavigationManagement.msg.NavigationNotExistAnymore=La navigazione non pu\u00f2 essere cancellata.
############################################################################
# org.exoplatform.navigation.webui.component.UIAddGroupNavigation #
@@ -1388,4 +1388,4 @@
UIGadget.tooltip.Maximize=Ingrandisci
UIGadget.tooltip.Unmaximize=Recupera in basso
UIGadget.tooltip.editGadget=Modifica Gadget
-UIGadget.tooltip.deleteGadget=Elimina Gadget
\ No newline at end of file
+UIGadget.tooltip.deleteGadget=Elimina Gadget
16 years, 3 months
gatein SVN: r1323 - portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin.
by do-not-reply@jboss.org
Author: thomas.heute(a)jboss.com
Date: 2010-01-15 18:10:24 -0500 (Fri, 15 Jan 2010)
New Revision: 1323
Modified:
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties
portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties
Log:
GTNPORTAL-496: Translation in Italian
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties 2010-01-15 22:05:56 UTC (rev 1322)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/AccountPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
@@ -17,71 +17,71 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
#
-##org.exoplatform.account.webui.component.UIAccountForm
-
-UIAccountForm.label.Profile=Profilo Utente
-UIAccountForm.title=Aggiungi/Modifica Account
-UIAccountForm.label.username=#{word.userName}:
-UIAccountForm.label.SearchUser=Cerca Utente
-UIAccountForm.label.password1x=Password:
-UIAccountForm.label.password2x=Conferma Password:
-UIAccountForm.label.password=Password:
-UIAccountForm.label.Confirmpassword=Conferma Password:
-UIAccountForm.action.Reset=Annulla
-UIAccountForm.label.firstName=#{word.firstName}:
-UIAccountForm.label.lastName=#{word.lastName}:
-UIAccountForm.label.email=Email Address:
-UIAccountForm.label.note=I campi segnati con l'asterisco<span style="color: red">*</span> sono obbligatori
-UIAccountForm.action.Back=#{word.back}
-UIAccountForm.action.Save=#{word.save}
-UIAccountForm.label.action.SearchUser=Cerca Utente
-#{0} is the username that the remote user enter
-UIAccountForm.msg.user-exist=Lo username '{0}' esiste gi�
-UIAccountForm.msg.incorrect-password=La password inserita non � corretta
-UIAccountForm.msg.sucsesful.create.user=Utente creato con successo
-
-UIAccountForm.tab.label.AccountTemplate=Template dell'Account
-UIAccountForm.tab.label.UIUserProfileInputSet=Profilo Utente
-UIAccountForm.tab.label.AccountInputSet=Preferenze dell'Account
-UIAccountForm.tab.label.UIUserMembershipSelector=Membership Utente
-
-UIAccountForm.label.Membership=Membership
-
-
-UIAccountForm.label.option.male=Maschio
-UIAccountForm.label.option.female=Femmina
-
-UIAccountForm.label.HomeInfo=Informazioni della Home
-UIAccountForm.label.user.name.given=#{word.givenName}:
-UIAccountForm.label.user.name.family=#{word.familyName}:
-UIAccountForm.label.user.name.nickName=#{word.nickName}:
-UIAccountForm.label.user.bdate=#{word.birthday}:
-UIAccountForm.label.user.gender=#{word.gender}:
-UIAccountForm.label.user.employer=#{word.employer}:
-UIAccountForm.label.user.department=#{word.department}:
-UIAccountForm.label.user.jobtitle=#{word.jobTitle}:
-UIAccountForm.label.user.language=Linguaggio
-UIAccountForm.label.user.home-info.postal.name=#:
-UIAccountForm.label.user.home-info.postal.street=#{word.street}:
-UIAccountForm.label.user.home-info.postal.city=#{word.city}:
-UIAccountForm.label.user.home-info.postal.stateprov=#{word.stateProv}:
-UIAccountForm.label.user.home-info.postal.postalcode=#{word.postalCode}:
-UIAccountForm.label.user.home-info.postal.country=#{word.country}:
-UIAccountForm.label.user.home-info.telecom.mobile.number=#{word.mobile}:
-UIAccountForm.label.user.home-info.telecom.telephone.number=#{word.tel}:
-UIAccountForm.label.user.home-info.online.email=#{word.email}:
-UIAccountForm.label.user.home-info.online.uri=#{word.website}:
-
-UIAccountForm.label.BusinessInfo=Informazioni di Business
-UIAccountForm.label.user.business-info.postal.name=#:
-UIAccountForm.label.user.business-info.postal.street=#{word.street}:
-UIAccountForm.label.user.business-info.postal.city=#{word.city}:
-UIAccountForm.label.user.business-info.postal.stateprov=#{word.stateProv}:
-UIAccountForm.label.user.business-info.postal.postalcode=#{word.postalCode}:
-UIAccountForm.label.user.business-info.postal.country=#{word.country}:
-UIAccountForm.label.user.business-info.telecom.mobile.number=#{word.mobile}:
-UIAccountForm.label.user.business-info.telecom.telephone.number=#{word.tel}:
-UIAccountForm.label.user.business-info.online.email=#{word.email}:
-UIAccountForm.label.user.business-info.online.uri=#{word.website}:
-
-UIPopupWindow.title.UIGroupMembershipSelector=Seleziona il Membership dell'Utente
\ No newline at end of file
+##org.exoplatform.account.webui.component.UIAccountForm
+
+UIAccountForm.label.Profile=Profilo Utente
+UIAccountForm.title=Aggiungi/Modifica Account
+UIAccountForm.label.username=#{word.userName}:
+UIAccountForm.label.SearchUser=Cerca Utente
+UIAccountForm.label.password1x=Password:
+UIAccountForm.label.password2x=Conferma Password:
+UIAccountForm.label.password=Password:
+UIAccountForm.label.Confirmpassword=Conferma Password:
+UIAccountForm.action.Reset=Annulla
+UIAccountForm.label.firstName=#{word.firstName}:
+UIAccountForm.label.lastName=#{word.lastName}:
+UIAccountForm.label.email=Email Address:
+UIAccountForm.label.note=I campi segnati con l'asterisco<span style="color: red">*</span> sono obbligatori
+UIAccountForm.action.Back=#{word.back}
+UIAccountForm.action.Save=#{word.save}
+UIAccountForm.label.action.SearchUser=Cerca Utente
+#{0} is the username that the remote user enter
+UIAccountForm.msg.user-exist=Lo username '{0}' esiste gi\u00e0
+UIAccountForm.msg.incorrect-password=La password inserita non \u00e8 corretta
+UIAccountForm.msg.sucsesful.create.user=Utente creato con successo
+
+UIAccountForm.tab.label.AccountTemplate=Template dell'Account
+UIAccountForm.tab.label.UIUserProfileInputSet=Profilo Utente
+UIAccountForm.tab.label.AccountInputSet=Preferenze dell'Account
+UIAccountForm.tab.label.UIUserMembershipSelector=Membership Utente
+
+UIAccountForm.label.Membership=Membership
+
+
+UIAccountForm.label.option.male=Maschio
+UIAccountForm.label.option.female=Femmina
+
+UIAccountForm.label.HomeInfo=Informazioni della Home
+UIAccountForm.label.user.name.given=#{word.givenName}:
+UIAccountForm.label.user.name.family=#{word.familyName}:
+UIAccountForm.label.user.name.nickName=#{word.nickName}:
+UIAccountForm.label.user.bdate=#{word.birthday}:
+UIAccountForm.label.user.gender=#{word.gender}:
+UIAccountForm.label.user.employer=#{word.employer}:
+UIAccountForm.label.user.department=#{word.department}:
+UIAccountForm.label.user.jobtitle=#{word.jobTitle}:
+UIAccountForm.label.user.language=Linguaggio
+UIAccountForm.label.user.home-info.postal.name=#:
+UIAccountForm.label.user.home-info.postal.street=#{word.street}:
+UIAccountForm.label.user.home-info.postal.city=#{word.city}:
+UIAccountForm.label.user.home-info.postal.stateprov=#{word.stateProv}:
+UIAccountForm.label.user.home-info.postal.postalcode=#{word.postalCode}:
+UIAccountForm.label.user.home-info.postal.country=#{word.country}:
+UIAccountForm.label.user.home-info.telecom.mobile.number=#{word.mobile}:
+UIAccountForm.label.user.home-info.telecom.telephone.number=#{word.tel}:
+UIAccountForm.label.user.home-info.online.email=#{word.email}:
+UIAccountForm.label.user.home-info.online.uri=#{word.website}:
+
+UIAccountForm.label.BusinessInfo=Informazioni di Business
+UIAccountForm.label.user.business-info.postal.name=#:
+UIAccountForm.label.user.business-info.postal.street=#{word.street}:
+UIAccountForm.label.user.business-info.postal.city=#{word.city}:
+UIAccountForm.label.user.business-info.postal.stateprov=#{word.stateProv}:
+UIAccountForm.label.user.business-info.postal.postalcode=#{word.postalCode}:
+UIAccountForm.label.user.business-info.postal.country=#{word.country}:
+UIAccountForm.label.user.business-info.telecom.mobile.number=#{word.mobile}:
+UIAccountForm.label.user.business-info.telecom.telephone.number=#{word.tel}:
+UIAccountForm.label.user.business-info.online.email=#{word.email}:
+UIAccountForm.label.user.business-info.online.uri=#{word.website}:
+
+UIPopupWindow.title.UIGroupMembershipSelector=Seleziona il Membership dell'Utente
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties 2010-01-15 22:05:56 UTC (rev 1322)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/ApplicationRegistryPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
@@ -21,9 +21,9 @@
word.cancel=Annulla
label.displayName=Nome visualizzabile:
label.description=Descrizione:
-category.msg.changeNotExist=Non posso salvare le modifiche alla categoria non pi� presente nel database.
-application.msg.changeNotExist=Non posso salvare le modifiche all'applicazione non pi� presente nel database.
-gadget.msg.changeNotExist=Non posso salvare le modifiche al Gadget non pi� presente nel database.
+category.msg.changeNotExist=Non posso salvare le modifiche alla categoria non pi\u00f9 presente nel database.
+application.msg.changeNotExist=Non posso salvare le modifiche all'applicazione non pi\u00f9 presente nel database.
+gadget.msg.changeNotExist=Non posso salvare le modifiche al Gadget non pi\u00f9 presente nel database.
## org.exoplatform.applicationregistry.webui.component.UIApplicationRegistryPortlet
UIToolbar.label.organize=Categorie
UIToolbar.label.portlet=Portlet
@@ -37,15 +37,15 @@
UIOrganizer.title.addApplication=Aggiungi l'Applicazione alla Categoria
UIOrganizer.title.deleteCategory=Elimina la Categoria
UIOrganizer.title.deleteApplication=Elimina l'Applicazione
-UIOrganizer.msg.importAll=Quest'operazione creer� automaticamente le categorie e vi importer� tutti i Gadget e le Portlet.
+UIOrganizer.msg.importAll=Quest'operazione creer\u00e0 automaticamente le categorie e vi importer\u00e0 tutti i Gadget e le Portlet.
UIOrganizer.msg.deleteCategory=Sicuro di voler eliminare questa categoria e tutte le applicazioni al suo interno?
UIOrganizer.msg.deleteApplication=Sicuro di voler eliminare quest'Applicazione?
UIOrganizer.msg.emptyCategory=Questa categoria non ha nessun'applicazione, clicca il bottone (+) per aggiungere un'applicazione.
UIOrganizer.msg.noCategory=Non ci sono categorie. Puoi cliccare su "Aggiungi Categoria" o "Importazione automatica" per aggiungere la Categoria.
-UIOrganizer.msg.deleteCategoryInUse=Non posso eliminare questa categoria, poich� � in uso.
-UIOrganizer.msg.deleteApplicationInUse=Non posso eliminare quest'applicazione, poich� � in uso.
-UIOrganizer.msg.categoryNoExist=Questa categoria non � pi� presente nel database.
-UIOrganizer.msg.applicationNoExist=Quest'applicazione non � pi� presente nel database.
+UIOrganizer.msg.deleteCategoryInUse=Non posso eliminare questa categoria, poich\u00e8 \u00e8 in uso.
+UIOrganizer.msg.deleteApplicationInUse=Non posso eliminare quest'applicazione, poich\u00e8 \u00e8 in uso.
+UIOrganizer.msg.categoryNoExist=Questa categoria non \u00e8 pi\u00f9 presente nel database.
+UIOrganizer.msg.applicationNoExist=Quest'applicazione non \u00e8 pi\u00f9 presente nel database.
## org.exoplatform.applicationregistry.webui.component.UIApplicationRegistryEditMode
UIApplicationRegistryEditMode.title=Importa Applicationi
@@ -74,7 +74,7 @@
UIAddApplicationForm.header.label=Nome visualizzabile
UIAddApplicationForm.header.description=Descrizione
UIAddApplicationForm.action.Add=Aggiungi
-UIAddApplicationForm.msg.PortletExist=L'applicazione � gi� presente nella categoria, selezionane un'altra!
+UIAddApplicationForm.msg.PortletExist=L'applicazione \u00e8 gi\u00e0 presente nella categoria, selezionane un'altra!
UIAddApplicationForm.msg.appNotExists=Seleziona l'applicazione.
UIAddApplicationForm.action.Cancel=#{word.cancel}
UIAddApplicationForm.label.displayName=#{label.displayName}
@@ -86,7 +86,7 @@
UICategoryForm.label.description=#{label.description}
UICategoryForm.action.Save=#{word.save}
UICategoryForm.action.Cancel=#{word.cancel}
-UICategoryForm.msg.SameName=La categoria esiste gi�, inseriscine un'altra!
+UICategoryForm.msg.SameName=La categoria esiste gi\u00e0, inseriscine un'altra!
UICategoryForm.label.UIListPermissionSelector=
UICategoryForm.tab.label.categoryPermission=Gestione dei Permessi
UICategoryForm.tab.label.categorySetting=Gestione della Categoria
@@ -108,7 +108,7 @@
UIGadgetManagement.label.createNew=Crea un nuovo gadget
UIGadgetManagement.title.deleteGadget=Elimina Gadget
UIGadgetManagement.msg.noGadget=Non ci sono Gadget disponibili.
-UIGadgetManagement.msg.deleteGadgetInUse=Non posso eliminare il gadget, poich� � in uso.
+UIGadgetManagement.msg.deleteGadgetInUse=Non posso eliminare il gadget, poich\u00e8 \u00e8 in uso.
UIGadgetManagement.msg.deleteGadget=Sicuro di voler eliminare questo gadget?
## org.exoplatform.applicationregistry.webui.component.UIGadgetInfo
@@ -125,19 +125,19 @@
UIGadgetInfo.title.refresh=Aggiorna l'informazione
UIGadgetInfo.title.editGadget=Modifica il Gadget
UIGadgetInfo.title.copy=Copia il Gadget nel repository locale
-UIGadgetInfo.msg.gadgetNotExist=Non posso eseguire l'operazione sul Gadget non pi� presente nel database.
+UIGadgetInfo.msg.gadgetNotExist=Non posso eseguire l'operazione sul Gadget non pi\u00f9 presente nel database.
UICategorySelector.header.choose=Scegli
UICategorySelector.header.categoryName=Nome della categoria
UICategorySelector.action.Save=Salva
UICategorySelector.action.Cancel=Annulla
-UICategorySelector.msg.NoCategory=Non c'� nessuna categoria
+UICategorySelector.msg.NoCategory=Non c'\u00e8 nessuna categoria
## org.exoplatform.applicationregistry.webui.component.UIAddGadget
UIAddGadget.action.Add=Aggiungi
UIAddGadget.action.Cancel=#{word.cancel}
UIAddGadget.label.url=URL
-UIAddGadget.label.urlExist=Quest'url � gi� presente, selezionane un'altro!
+UIAddGadget.label.urlExist=Quest'url \u00e8 gi\u00e0 presente, selezionane un'altro!
UIAddGadget.label.urlError=Dati dell'url: '{0}' non validi
## org.exoplatform.applicationregistry.webui.component.UIGadgetEditor
@@ -148,4 +148,4 @@
##package org.exoplatform.organization.webui.component.UIListPermissionSelector
UIListPermissionSelector.header.groupId=Gruppo
UIListPermissionSelector.header.membership=Membership
-UIListPermissionSelectorPopup.title.ListPermissionSelector=Seleziona il permesso
\ No newline at end of file
+UIListPermissionSelectorPopup.title.ListPermissionSelector=Seleziona il permesso
Modified: portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties 2010-01-15 22:05:56 UTC (rev 1322)
+++ portal/trunk/portlet/exoadmin/src/main/webapp/WEB-INF/classes/locale/portlet/exoadmin/PortalNavigationPortlet_it.properties 2010-01-15 23:10:24 UTC (rev 1323)
@@ -20,5 +20,5 @@
UISiteManagement.action.addNewPortal=Aggiungi un Nuovo Portale
UISiteManagement.label.editLayout=Modifica il Layout
UISiteManagement.label.editNav=Modifica la Navigazione
-UISiteManagement.label.editPortalProp=Modifica le propriet� del Portale
-UISiteManagement.label.deletePortal=Elimina
\ No newline at end of file
+UISiteManagement.label.editPortalProp=Modifica le propriet\u00e0 del Portale
+UISiteManagement.label.deletePortal=Elimina
16 years, 3 months