You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by no...@apache.org on 2009/09/13 18:54:49 UTC

svn commit: r814346 - in /labs/hupa/trunk/client/src/main/java/org/apache/hupa: Hupa.gwt.xml client/HupaConstants_es.properties

Author: norman
Date: Sun Sep 13 16:54:48 2009
New Revision: 814346

URL: http://svn.apache.org/viewvc?rev=814346&view=rev
Log:
Add spanish localization, I have no idea about spanish so time to trus Manuel eh ;) .. Thx to Manuel Carrasco again.. (LABS-446)

Added:
    labs/hupa/trunk/client/src/main/java/org/apache/hupa/client/HupaConstants_es.properties
Modified:
    labs/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml

Modified: labs/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml
URL: http://svn.apache.org/viewvc/labs/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml?rev=814346&r1=814345&r2=814346&view=diff
==============================================================================
--- labs/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml (original)
+++ labs/hupa/trunk/client/src/main/java/org/apache/hupa/Hupa.gwt.xml Sun Sep 13 16:54:48 2009
@@ -1,40 +1,41 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.6.4//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.6.4/distro-source/core/src/gwt-module.dtd">
-<module rename-to='hupa'>
-  <!-- Inherit the core Web Toolkit stuff.                        -->
-  <inherits name='com.google.gwt.user.User'/>
-  
-  
-  <inherits name="com.google.gwt.i18n.I18N"/> 
-  
-  <inherits name='org.apache.hupa.Shared'/> 
-  <inherits name='org.apache.hupa.Widgets'/> 
-  
-  <!-- Inherit the default GWT style sheet.  You can change       -->
-  <!-- the theme of your GWT application by uncommenting          -->
-  <!-- any one of the following lines.                            -->
-  <inherits name='com.google.gwt.user.theme.standard.Standard'/>
-  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
-  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
-
-  <!-- Other module inherits                                      -->
-  <inherits name='org.cobogw.gwt.user.User' />   
-  <inherits name='com.google.gwt.widgetideas.WidgetIdeas'/>
-  <inherits name='com.google.gwt.gen2.commonwidget.CommonWidget' />
-  <inherits name='com.google.gwt.gen2.table.override.Override'/>
-  <inherits name='com.google.gwt.gen2.table.ScrollTable'/>
-  <inherits name='net.customware.gwt.dispatch.Dispatch' />
-  <inherits name='net.customware.gwt.presenter.Presenter' />
-  <inherits name="com.google.gwt.inject.Inject"/>
-  <inherits name="gwtupload.GWTUpload"/>
-  <inherits name="eu.maydu.gwt.validation.ValidationLibrary"/>
-  <!-- Inherit gwt-dnd support                   -->
-  <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>
-  
-  <source path="client"/>
-  
-  <extend-property name="locale" values="en" />
-  
-  <!-- Specify the app entry point class.                         -->
-  <entry-point class='org.apache.hupa.client.Hupa'/>
-</module>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.6.4//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.6.4/distro-source/core/src/gwt-module.dtd">
+<module rename-to='hupa'>
+  <!-- Inherit the core Web Toolkit stuff.                        -->
+  <inherits name='com.google.gwt.user.User'/>
+  
+  
+  <inherits name="com.google.gwt.i18n.I18N"/> 
+  
+  <inherits name='org.apache.hupa.Shared'/> 
+  <inherits name='org.apache.hupa.Widgets'/> 
+  
+  <!-- Inherit the default GWT style sheet.  You can change       -->
+  <!-- the theme of your GWT application by uncommenting          -->
+  <!-- any one of the following lines.                            -->
+  <inherits name='com.google.gwt.user.theme.standard.Standard'/>
+  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
+  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
+
+  <!-- Other module inherits                                      -->
+  <inherits name='org.cobogw.gwt.user.User' />   
+  <inherits name='com.google.gwt.widgetideas.WidgetIdeas'/>
+  <inherits name='com.google.gwt.gen2.commonwidget.CommonWidget' />
+  <inherits name='com.google.gwt.gen2.table.override.Override'/>
+  <inherits name='com.google.gwt.gen2.table.ScrollTable'/>
+  <inherits name='net.customware.gwt.dispatch.Dispatch' />
+  <inherits name='net.customware.gwt.presenter.Presenter' />
+  <inherits name="com.google.gwt.inject.Inject"/>
+  <inherits name="gwtupload.GWTUpload"/>
+  <inherits name="eu.maydu.gwt.validation.ValidationLibrary"/>
+  <!-- Inherit gwt-dnd support                   -->
+  <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>
+  
+  <source path="client"/>
+  
+  <extend-property name="locale" values="en" />
+  <extend-property name="locale" values="es" />
+  
+  <!-- Specify the app entry point class.                         -->
+  <entry-point class='org.apache.hupa.client.Hupa'/>
+</module>

Added: labs/hupa/trunk/client/src/main/java/org/apache/hupa/client/HupaConstants_es.properties
URL: http://svn.apache.org/viewvc/labs/hupa/trunk/client/src/main/java/org/apache/hupa/client/HupaConstants_es.properties?rev=814346&view=auto
==============================================================================
--- labs/hupa/trunk/client/src/main/java/org/apache/hupa/client/HupaConstants_es.properties (added)
+++ labs/hupa/trunk/client/src/main/java/org/apache/hupa/client/HupaConstants_es.properties Sun Sep 13 16:54:48 2009
@@ -0,0 +1,65 @@
+#
+# These English constants are already defined in the gwtupload library.
+# Override them if you want different values.
+#
+#uploadStatusQueued=En espera
+#uploadStatusInProgress=Enviando ...
+#uploadStatusSuccess=Finalizado
+#uploadStatusError=Error
+#uploadStatusCanceling=Cancelando ...
+#uploadStatusCanceled=Cancelado
+#uploadStatusSubmitting=Enviando formulario ...
+#uploadLabelCancel=
+#    
+#uploaderActiveUpload=Se está enviando un archivo al servidor.\n Intenteló mas tarde.
+#uploaderAlreadyDone=Este archivo ya fué enviado.
+#uploaderInvalidExtension=Sólo está permitido enviar estos tipos de archivo:\n
+#uploaderTimeout=Se ha sobrepasado el tiempo de espera al enviar el archivo.\n Es posible que su navegador no envíe correctamente archivos,\n o quizás ocurrió un error en el servidor\nPor favor intenteló mas tarde
+#uploaderServerError=El servidor ha enviado una respuesta incorrecta.\n Compruebe que la aplicación en el servidor está bien configurada.
+#uploaderServerUnavailable=Ha sido imposible conectar con el servidor de la aplicación.
+#uploaderSend=Enviar
+#
+
+usernameLabel=Nombre de Usuario:
+passwordLabel=Contraseña:
+saveLoginLabel=Salvar datos de entrada
+loginButton=Entrar
+resetButton=Limpiar
+logoutButton=Salir
+deleteMailButton=Borrar
+newMailButton=Redactar
+replyMailButton=Responder
+replyAllMailButton=Responder a todos
+headerTo=Para
+headerCc=Cc
+headerBcc=Bcc
+headerFrom=De
+headerSubject=Asunto
+headerReceivedDate=Recibido
+productName=Hupa
+mailTableFrom=De
+mailTableSubject=Asunto
+mailTableDate=Fecha
+loginInvalid=La información de usuario o contraseña no es correcta, por favor compruebe su usario y contraseña.
+searchButton=Buscar mensajes
+emptyMailTable=No hay correos para mostrar
+attachments=Elementos adjuntos
+sendButton=Enviar
+forwardMailButton=Reenviar
+loading=Cargando ...
+okButton=Aceptar
+cancelButton=Cancelar
+select=Seleccionar
+none=Ninguno
+all=Todos
+newFolder=Nuevo
+renameFolder=Renombrar
+deleteFolder=Borrar
+pageNext=Siguiente
+pageLast=Última
+pagePrev=Anterior
+pageFirst=Primera
+loginAs=Usuario
+backButton=Atrás
+rawButton=Mostrar mensaje original
+sessionTimedOut=Su sesión ha caducado, por favor intenteló de nuevo.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org