From 3b1a9ddf682876aaf58615320dae6c15809af428 Mon Sep 17 00:00:00 2001 From: Giancarlo Panichi Date: Tue, 13 Oct 2015 13:08:24 +0000 Subject: [PATCH] 915: TDM - Support the Spanish language Task-Url: https://support.d4science.org/issues/915 Updated Spanish Support git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@119669 82a268e6-3cf1-43bd-a215-b396298e98cf --- config/profile.xml | 8 ++++---- distro/README | 8 +++++--- distro/changelog.xml | 3 +++ pom.xml | 17 +++++++++-------- .../client/CommonMessages.java | 16 +++++++++++++--- .../client/CommonMessages.properties | 6 +++++- .../client/CommonMessages_es.properties | 5 ++++- .../client/CommonMessages_it.properties | 3 +++ templates/README | 4 +++- templates/changelog.xml | 3 +++ templates/profile.xml | 2 +- 11 files changed, 53 insertions(+), 22 deletions(-) diff --git a/config/profile.xml b/config/profile.xml index 2f42ca6..5b93d9b 100644 --- a/config/profile.xml +++ b/config/profile.xml @@ -6,20 +6,20 @@ tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager PortletsUser tabular-data-widget-common-event - 1.8.0-SNAPSHOT + 1.0.0 tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager tabular-data-widget-common-event - 1.8.0-SNAPSHOT + 1.9.0-SNAPSHOT org.gcube.portlets.user tabular-data-widget-common-event - 1.8.0-SNAPSHOT + 1.9.0-SNAPSHOT library - tabular-data-widget-common-event-1.8.0-SNAPSHOT.jar + tabular-data-widget-common-event-1.9.0-SNAPSHOT.jar diff --git a/distro/README b/distro/README index e71ec54..373abc8 100644 --- a/distro/README +++ b/distro/README @@ -1,7 +1,9 @@ The gCube System - tabular-data-widget-common-event ------------------------------------------------------------ -This work has been supported by the following European projects: iMarine (FP7-INFRASTRUCTURES-2011-2) +This work has been partially supported by the following European projects: DILIGENT (FP6-2003-IST-2), +D4Science (FP7-INFRA-2007-1.2.2), D4Science-II (FP7-INFRA-2008-1.2.2), iMarine (FP7-INFRASTRUCTURES-2011-2), +and EUBrazilOpenBio (FP7-ICT-2011-EU-Brazil), Parthenos (H2020-INFRADEV-1-2014-1), BlueBridge (H2020-EINFRA-2015-1). Authors ------- @@ -13,7 +15,7 @@ Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo" Version and Release Date ------------------------ -v. 1.8.0-SNAPSHOT (2015-07-03) +v. 1.9.0-SNAPSHOT (2015-10-15) Description @@ -37,7 +39,7 @@ Documentation tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager Documentation is available on-line from the Projects Documentation Wiki: - https://gcube.wiki.gcube-system.org/gcube/index.php/Tabular_Data_Manager + http://wiki.gcube-system.org/gcube/Tabular_Data_Manager Licensing diff --git a/distro/changelog.xml b/distro/changelog.xml index ae77ddb..60232f9 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,4 +1,7 @@ + + Updated support to Spanish + Added extension to name of resource by mime type [issue #258] Added support to Notifications [issue #197] diff --git a/pom.xml b/pom.xml index ca69e2e..69aed92 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ 4.0.0 org.gcube.portlets.user tabular-data-widget-common-event - 1.8.0-SNAPSHOT + 1.9.0-SNAPSHOT tabular-data-widget-common-event tabular-data-widget-common-event contains events that are common to all widgets in tabular data manager @@ -39,18 +39,18 @@ ${project.basedir}/distro ${project.build.directory}/${project.build.finalName} - 2015-07-03 - https://gcube.wiki.gcube-system.org/gcube/index.php/Tabular_Data_Manager + 2015-10-15 + http://wiki.gcube-system.org/gcube/Tabular_Data_Manager templates distro config - + 2.6.1 - 3.3.2 - + 3.3.2 + ${env.KEYS} - + UTF-8 UTF-8 @@ -254,7 +254,8 @@ - + org.eclipse.m2e lifecycle-mapping diff --git a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.java b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.java index d92d07f..d979c2a 100644 --- a/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.java +++ b/src/main/java/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.java @@ -4,17 +4,27 @@ import com.google.gwt.i18n.client.Messages; /** * - * @author giancarlo - * email: g.panichi@isti.cnr.it + * @author giancarlo email: g.panichi@isti.cnr.it * */ public interface CommonMessages extends Messages { + @DefaultMessage("Success") + String success(); + + @DefaultMessage("Error") + String error(); + + @DefaultMessage("Attention") + String attention(); + @DefaultMessage("Error Locked") String errorLocked(); - + @DefaultMessage("Error Final") String errorFinal(); + } diff --git a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.properties b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.properties index 08124ba..aca0509 100644 --- a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.properties +++ b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages.properties @@ -1,2 +1,6 @@ +success = Success +error = Error +attention = Attention errorLocked = Error Locked -errorFinal = Error Final \ No newline at end of file +errorFinal = Error Final + diff --git a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_es.properties b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_es.properties index 08124ba..85b4bdb 100644 --- a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_es.properties +++ b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_es.properties @@ -1,2 +1,5 @@ +success = Éxito +error = Error +attention = Atención errorLocked = Error Locked -errorFinal = Error Final \ No newline at end of file +errorFinal = Error Final diff --git a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_it.properties b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_it.properties index 9a19c6d..145ea9c 100644 --- a/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_it.properties +++ b/src/main/resources/org/gcube/portlets/user/td/widgetcommonevent/client/CommonMessages_it.properties @@ -1,2 +1,5 @@ +success = Successo +error = Errore +attention = Attenzione errorLocked = Errore Locked errorFinal = Errore Final diff --git a/templates/README b/templates/README index 7e3ad55..38bf491 100644 --- a/templates/README +++ b/templates/README @@ -1,7 +1,9 @@ The gCube System - ${name} ------------------------------------------------------------ -This work has been supported by the following European projects: iMarine (FP7-INFRASTRUCTURES-2011-2) +This work has been partially supported by the following European projects: DILIGENT (FP6-2003-IST-2), +D4Science (FP7-INFRA-2007-1.2.2), D4Science-II (FP7-INFRA-2008-1.2.2), iMarine (FP7-INFRASTRUCTURES-2011-2), +and EUBrazilOpenBio (FP7-ICT-2011-EU-Brazil), Parthenos (H2020-INFRADEV-1-2014-1), BlueBridge (H2020-EINFRA-2015-1). Authors ------- diff --git a/templates/changelog.xml b/templates/changelog.xml index 178b43c..ac02e20 100644 --- a/templates/changelog.xml +++ b/templates/changelog.xml @@ -1,4 +1,7 @@ + + Updated support to Spanish + Added extension to name of resource by mime type [issue #258] Added support to Notifications [issue #197] diff --git a/templates/profile.xml b/templates/profile.xml index 19ed5bc..ffa3274 100644 --- a/templates/profile.xml +++ b/templates/profile.xml @@ -6,7 +6,7 @@ ${project.description} PortletsUser ${project.name} - ${version} + 1.0.0 ${project.description}