[jboss-svn-commits] JBoss Portal SVN: r5552 - in trunk/core/src/resources/portal-core-war/WEB-INF: classes jsp/cms/admin
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Nov 1 11:34:01 EST 2006
Author: roy.russo at jboss.com
Date: 2006-11-01 11:33:59 -0500 (Wed, 01 Nov 2006)
New Revision: 5552
Modified:
trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_en.properties
trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_es.properties
trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_fr.properties
trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/folderlist.jsp
trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/main.jsp
trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/viewfile.jsp
Log:
JBPORTAL-1088 - localization in cmsadmin ui
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2006-11-01 16:33:59 UTC (rev 5552)
@@ -359,6 +359,10 @@
CMS_LIVEVERSION=Live Version
CMS_SIZE=Size
+CMS_CONTENT_DIR=Content Directory
+CMS_CONTENT_DIR_USE=Use the directory tree to navigate the portal folder structure.
+CMS_MAIN_USE=Use the CMS Administration portlet to manage the content of your portal.
+
VALIDATIONEMAIL_1=A user with this email address has registered on our site.
VALIDATIONEMAIL_2=Please keep this email for your records. Your account information is as follows
VALIDATIONEMAIL_3=Your account is currently inactive. You cannot use it until you visit the following link
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_en.properties
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_en.properties 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_en.properties 2006-11-01 16:33:59 UTC (rev 5552)
@@ -357,6 +357,10 @@
CMS_LIVEVERSION=Live Version
CMS_SIZE=Size
+CMS_CONTENT_DIR=Content Directory
+CMS_CONTENT_DIR_USE=Use the directory tree to navigate the portal folder structure.
+CMS_MAIN_USE=Use the CMS Administration portlet to manage the content of your portal.
+
VALIDATIONEMAIL_1=A user with this email address has registered on our site.
VALIDATIONEMAIL_2=Please keep this email for your records. Your account information is as follows
VALIDATIONEMAIL_3=Your account is currently inactive. You cannot use it until you visit the following link
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_es.properties
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_es.properties 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_es.properties 2006-11-01 16:33:59 UTC (rev 5552)
@@ -356,6 +356,10 @@
CMS_LIVEVERSION=Live Version
CMS_SIZE=Size
+CMS_CONTENT_DIR=Content Directory
+CMS_CONTENT_DIR_USE=Use the directory tree to navigate the portal folder structure.
+CMS_MAIN_USE=Use the CMS Administration portlet to manage the content of your portal.
+
VALIDATIONEMAIL_1=Un usuario con esta dirección de email se ha registado en nuestro sitio.
VALIDATIONEMAIL_2=Por favor, mantenga este correo para su registro. La información de su cuenta es la siguiente
VALIDATIONEMAIL_3=Su cuenta está actualmente inactiva. No puede usarla hasta que visite el siguiente enlace
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_fr.properties
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_fr.properties 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/classes/Resource_fr.properties 2006-11-01 16:33:59 UTC (rev 5552)
@@ -326,6 +326,10 @@
CMS_LIVEVERSION=Live Version
CMS_SIZE=Size
+CMS_CONTENT_DIR=Content Directory
+CMS_CONTENT_DIR_USE=Use the directory tree to navigate the portal folder structure.
+CMS_MAIN_USE=Use the CMS Administration portlet to manage the content of your portal.
+
VALIDATIONEMAIL_1=Un utilisateur s'est enregistre avec cette adresse email.
VALIDATIONEMAIL_2=Merci de garder cet email. Vos informations sont les suivantes
VALIDATIONEMAIL_3=Votre compte est desactive pour le moment. Vous en pouvez pas l'utiliser tant que vous n'aurez pas clique sur le lien suivant
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/folderlist.jsp
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/folderlist.jsp 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/folderlist.jsp 2006-11-01 16:33:59 UTC (rev 5552)
@@ -5,6 +5,7 @@
<%@ page import="java.util.StringTokenizer" %>
<%@ page isELIgnored="false" %>
<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %>
+<%@ taglib uri="/WEB-INF/portal-lib.tld" prefix="n" %>
<%
// needed for copy/move type: fi(file) or fo(folder).
@@ -19,8 +20,8 @@
}
</script>
-<h6>Content Directory</h6>
-Use the directory tree to navigate the portal folder structure.
+<h6>${n:i18n("CMS_CONTENT_DIR")}</h6>
+${n:i18n("CMS_CONTENT_DIR_USE")}
<hr/>
<a href="<portlet:renderURL>
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/main.jsp
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/main.jsp 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/main.jsp 2006-11-01 16:33:59 UTC (rev 5552)
@@ -23,7 +23,7 @@
<br>
-Use the CMS Administration portlet to manage the content of your portal.
+${n:i18n("CMS_MAIN_USE")}
<hr/>
Modified: trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/viewfile.jsp
===================================================================
--- trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/viewfile.jsp 2006-11-01 16:21:53 UTC (rev 5551)
+++ trunk/core/src/resources/portal-core-war/WEB-INF/jsp/cms/admin/viewfile.jsp 2006-11-01 16:33:59 UTC (rev 5552)
@@ -36,7 +36,7 @@
%>
<br>
-Use the CMS Administration portlet to manage the content of your portal.
+${n:i18n("CMS_MAIN_USE")}
<hr/>
More information about the jboss-svn-commits
mailing list