JBoss Portal SVN: r12550 - in branches/JBoss_Portal_Branch_2_7: core/src/resources/portal-core-sar/conf and 9 other directories.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-19 08:32:08 -0500 (Mon, 19 Jan 2009)
New Revision: 12550
Added:
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
Removed:
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
Modified:
branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties
branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties
branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml
branches/JBoss_Portal_Branch_2_7/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties
branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties
branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/data/default-object.xml
branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
Log:
Japanese addon
Modified: branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java 2009-01-19 13:32:08 UTC (rev 12550)
@@ -199,7 +199,17 @@
if (resourceBundle != null)
{
- ResourceBundleManager bundleMgr = MetaDataResourceBundleFactory.createResourceBundleManager(buildContext.getPortalWebApp().getClassLoader(), supportedLocales, resourceBundle);
+ ClassLoader classloader = null;
+ if (buildContext.getPortalWebApp() != null)
+ {
+ classloader = buildContext.getPortalWebApp().getClassLoader();
+ }
+ else
+ {
+ classloader = Thread.currentThread().getContextClassLoader();
+ }
+
+ ResourceBundleManager bundleMgr = MetaDataResourceBundleFactory.createResourceBundleManager(classloader, supportedLocales, resourceBundle);
object.setDisplayName(bundleMgr.getLocalizedValue("org.jboss.portal.object.name." + object.getId().getPath().toString(PortalObjectPath.LEGACY_FORMAT), object.getName()));
}
Copied: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles (from rev 12549, tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles)
Deleted: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -1,24 +0,0 @@
-################################################################################
-# JBoss, a division of Red Hat #
-# Copyright 2006, Red Hat Middleware, LLC, and individual #
-# contributors as indicated by the @authors tag. See the #
-# copyright.txt in the distribution for a full listing of #
-# individual contributors. #
-# #
-# 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. #
-################################################################################
-
-org.jboss.portal.object.name.admin.default=Admin
Copied: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties (from rev 12549, tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties)
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties (rev 0)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -0,0 +1,24 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Admin
Deleted: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -1,25 +0,0 @@
-################################################################################
-# JBoss, a division of Red Hat #
-# Copyright 2006, Red Hat Middleware, LLC, and individual #
-# contributors as indicated by the @authors tag. See the #
-# copyright.txt in the distribution for a full listing of #
-# individual contributors. #
-# #
-# 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. #
-################################################################################
-
-org.jboss.portal.object.name.admin.default=Administration
-org.jboss.portal.object.name.admin.Members=Utilisateurs
Copied: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties (from rev 12549, tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties)
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties (rev 0)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -0,0 +1,25 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Administration
+org.jboss.portal.object.name.admin.Members=Utilisateurs
Deleted: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -1,25 +0,0 @@
-################################################################################
-# JBoss, a division of Red Hat #
-# Copyright 2006, Red Hat Middleware, LLC, and individual #
-# contributors as indicated by the @authors tag. See the #
-# copyright.txt in the distribution for a full listing of #
-# individual contributors. #
-# #
-# 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. #
-################################################################################
-
-org.jboss.portal.object.name.admin.default=Amministrazione
-org.jboss.portal.object.name.admin.Members=Membri
Copied: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties (from rev 12549, tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties)
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties (rev 0)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -0,0 +1,25 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Amministrazione
+org.jboss.portal.object.name.admin.Members=Membri
Deleted: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -1,25 +0,0 @@
-################################################################################
-# JBoss, a division of Red Hat #
-# Copyright 2006, Red Hat Middleware, LLC, and individual #
-# contributors as indicated by the @authors tag. See the #
-# copyright.txt in the distribution for a full listing of #
-# individual contributors. #
-# #
-# 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. #
-################################################################################
-
-org.jboss.portal.object.name.admin.default=\u30dd\u30fc\u30bf\u30eb\u7ba1\u7406
-org.jboss.portal.object.name.admin.Members=\u30e6\u30fc\u30b6\u7ba1\u7406
Copied: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties (from rev 12549, tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties)
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties (rev 0)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -0,0 +1,25 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=\u30dd\u30fc\u30bf\u30eb\u7ba1\u7406
+org.jboss.portal.object.name.admin.Members=\u30e6\u30fc\u30b6\u7ba1\u7406
Modified: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/data/default-object.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 13:32:08 UTC (rev 12550)
@@ -359,11 +359,12 @@
</security-constraint>
<page>
<page-name>default</page-name>
- <display-name xml:lang="en">Admin</display-name>
- <display-name xml:lang="it">Amministrazione</display-name>
- <display-name xml:lang="es">Administración</display-name>
- <display-name xml:lang="fr">Administration</display-name>
- <display-name xml:lang="ru">Администрирование</display-name>
+ <supported-locale>fr</supported-locale>
+ <supported-locale>en</supported-locale>
+ <supported-locale>it</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>conf.bundles.Resource</resource-bundle>
+
<window>
<window-name>AdminPortletWindow</window-name>
<instance-ref>AdminPortletInstance</instance-ref>
@@ -385,9 +386,11 @@
</page>
<page>
<page-name>Members</page-name>
- <display-name xml:lang="en">Members</display-name>
- <display-name xml:lang="it">Membri</display-name>
- <display-name xml:lang="fr">Utilisateurs</display-name>
+ <supported-locale>fr</supported-locale>
+ <supported-locale>en</supported-locale>
+ <supported-locale>it</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>conf.bundles.Resource</resource-bundle>
<window>
<window-name>IdentityAdminPortletWindow</window-name>
<instance-ref>IdentityAdminPortletInstance</instance-ref>
Modified: branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -34,4 +34,4 @@
PORTAL=Portal
ADMIN=Admin
MEMBERS=Members
-LOGGED=Logged in as
\ No newline at end of file
+LOGGED=Logged in as
Modified: branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -62,7 +62,7 @@
ASSOCIATED_PORTLET_NOT_AVAILABLE=\u9023\u643a\u3059\u308b\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u306f\u3042\u308a\u307e\u305b\u3093\u3002
PREFERENCES_NO_CAP=\u30d7\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9
SECURITY_SETTINGS=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
-MAKE_DEFAULT=Default\u306e\u4f5c\u6210
+MAKE_DEFAULT=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u4f5c\u6210
MANAGE_WINDOWS_WITHIN=\u7ba1\u7406\u30a6\u30a3\u30f3\u30c9\u30a6\u5185
PORTAL_OBJECTS=\u30dd\u30fc\u30bf\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
PORTALS=\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
@@ -84,7 +84,7 @@
SWITCH_TO_WIZARD_MODE=\u30a6\u30a3\u30b6\u30fc\u30c9\u30e2\u30fc\u30c9\u3078\u5909\u66f4
CREATE_PORTAL=\u30dd\u30fc\u30bf\u30eb\u306e\u4f5c\u6210
CREATE_PAGE=\u30da\u30fc\u30b8\u306e\u4f5c\u6210
-DEFAULT=Default
+DEFAULT=\u30c7\u30d5\u30a9\u30eb\u30c8
WINDOW=Window
VIEW_PORTLETS_PROVIDED_BY=\u8868\u793a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u306f\u547d\u540d\u3055\u308c\u305f\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc\u306b\u3088\u3063\u3066\u63d0\u4f9b\u3055\u308c\u307e\u3059\u3002
VIEW_PORTLETS=\u8868\u793a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
Modified: branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -21,6 +21,8 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org. #
################################################################################
+org.jboss.portal.object.name.admin.CMS=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406
+
## CMS ADMIN PORTLET
TITLE_HEAD=CMS \u7ba1\u7406
TITLE_BROWSE=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea \u30d6\u30e9\u30a6\u30b6
Modified: branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml 2009-01-19 13:32:08 UTC (rev 12550)
@@ -31,6 +31,9 @@
<parent-ref>admin</parent-ref>
<page>
<page-name>CMS</page-name>
+ <supported-locale>en</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>Resource</resource-bundle>
<window>
<window-name>CMSAdminPortletWindow</window-name>
<instance-ref>CMSAdminPortletInstance</instance-ref>
Modified: branches/JBoss_Portal_Branch_2_7/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -23,6 +23,6 @@
javax.portlet.preference.name.RssXml=RSS feed URL
javax.portlet.preference.name.expires=Expiration time
-org.jboss.portal.object.name.Weather=Weather
+org.jboss.portal.object.name.default.Weather=Weather
org.jboss.portal.instance.name.WeatherPortletInstance=Weather Portlet
Modified: branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:32:08 UTC (rev 12550)
@@ -24,6 +24,8 @@
## WSRP GUI localization
# JBoss Portal display information
+
+org.jboss.portal.object.name.admin.WSRP = \u30ea\u30e2\u30fc\u30c8\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
org.jboss.portal.object.name.WSRPConfigurationPortlet = WSRP \u8a2d\u5b9a
org.jboss.portal.instance.name.WSRPConfigurationPortletInstance = WSRP \u8a2d\u5b9a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
Modified: branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml
===================================================================
--- branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
+++ branches/JBoss_Portal_Branch_2_7/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml 2009-01-19 13:32:08 UTC (rev 12550)
@@ -31,6 +31,8 @@
<if-exists>overwrite</if-exists>
<page>
<page-name>WSRP</page-name>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>Resource</resource-bundle>
<properties>
<property>
<name>layout.id</name>
17 years, 3 months
JBoss Portal SVN: r12549 - in tags/JBoss_Portal_2_7_1: core/src/resources/portal-core-sar/conf/data and 6 other directories.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-19 08:19:47 -0500 (Mon, 19 Jan 2009)
New Revision: 12549
Modified:
tags/JBoss_Portal_2_7_1/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties
tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties
tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml
tags/JBoss_Portal_2_7_1/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties
tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties
tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml
Log:
Adding Japanese translations
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -22,3 +22,4 @@
################################################################################
org.jboss.portal.object.name.admin.default=Administration
+org.jboss.portal.object.name.admin.Members=Utilisateurs
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -22,3 +22,4 @@
################################################################################
org.jboss.portal.object.name.admin.default=Amministrazione
+org.jboss.portal.object.name.admin.Members=Membri
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -22,3 +22,4 @@
################################################################################
org.jboss.portal.object.name.admin.default=\u30dd\u30fc\u30bf\u30eb\u7ba1\u7406
+org.jboss.portal.object.name.admin.Members=\u30e6\u30fc\u30b6\u7ba1\u7406
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
@@ -386,9 +386,11 @@
</page>
<page>
<page-name>Members</page-name>
- <display-name xml:lang="en">Members</display-name>
- <display-name xml:lang="it">Membri</display-name>
- <display-name xml:lang="fr">Utilisateurs</display-name>
+ <supported-locale>fr</supported-locale>
+ <supported-locale>en</supported-locale>
+ <supported-locale>it</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>conf.bundles.Resource</resource-bundle>
<window>
<window-name>IdentityAdminPortletWindow</window-name>
<instance-ref>IdentityAdminPortletInstance</instance-ref>
Modified: tags/JBoss_Portal_2_7_1/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-admin/src/resources/portal-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -62,7 +62,7 @@
ASSOCIATED_PORTLET_NOT_AVAILABLE=\u9023\u643a\u3059\u308b\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u306f\u3042\u308a\u307e\u305b\u3093\u3002
PREFERENCES_NO_CAP=\u30d7\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9
SECURITY_SETTINGS=\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
-MAKE_DEFAULT=Default\u306e\u4f5c\u6210
+MAKE_DEFAULT=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u4f5c\u6210
MANAGE_WINDOWS_WITHIN=\u7ba1\u7406\u30a6\u30a3\u30f3\u30c9\u30a6\u5185
PORTAL_OBJECTS=\u30dd\u30fc\u30bf\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8
PORTALS=\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
@@ -84,7 +84,7 @@
SWITCH_TO_WIZARD_MODE=\u30a6\u30a3\u30b6\u30fc\u30c9\u30e2\u30fc\u30c9\u3078\u5909\u66f4
CREATE_PORTAL=\u30dd\u30fc\u30bf\u30eb\u306e\u4f5c\u6210
CREATE_PAGE=\u30da\u30fc\u30b8\u306e\u4f5c\u6210
-DEFAULT=Default
+DEFAULT=\u30c7\u30d5\u30a9\u30eb\u30c8
WINDOW=Window
VIEW_PORTLETS_PROVIDED_BY=\u8868\u793a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u306f\u547d\u540d\u3055\u308c\u305f\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8\u30d7\u30ed\u30d0\u30a4\u30c0\u30fc\u306b\u3088\u3063\u3066\u63d0\u4f9b\u3055\u308c\u307e\u3059\u3002
VIEW_PORTLETS=\u8868\u793a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
Modified: tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -21,6 +21,8 @@
# 02110-1301 USA, or see the FSF site: http://www.fsf.org. #
################################################################################
+org.jboss.portal.object.name.admin.CMS=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406
+
## CMS ADMIN PORTLET
TITLE_HEAD=CMS \u7ba1\u7406
TITLE_BROWSE=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea \u30d6\u30e9\u30a6\u30b6
Modified: tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml
===================================================================
--- tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-cms/src/resources/portal-cms-war/WEB-INF/default-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
@@ -31,6 +31,9 @@
<parent-ref>admin</parent-ref>
<page>
<page-name>CMS</page-name>
+ <supported-locale>en</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>Resource</resource-bundle>
<window>
<window-name>CMSAdminPortletWindow</window-name>
<instance-ref>CMSAdminPortletInstance</instance-ref>
Modified: tags/JBoss_Portal_2_7_1/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-samples/src/resources/portal-weather-samples-war/WEB-INF/classes/WeatherResource.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -23,6 +23,6 @@
javax.portlet.preference.name.RssXml=RSS feed URL
javax.portlet.preference.name.expires=Expiration time
-org.jboss.portal.object.name.Weather=Weather
+org.jboss.portal.object.name.default.Weather=Weather
org.jboss.portal.instance.name.WeatherPortletInstance=Weather Portlet
Modified: tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/classes/Resource_ja.properties 2009-01-19 13:19:47 UTC (rev 12549)
@@ -24,6 +24,8 @@
## WSRP GUI localization
# JBoss Portal display information
+
+org.jboss.portal.object.name.admin.WSRP = \u30ea\u30e2\u30fc\u30c8\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
org.jboss.portal.object.name.WSRPConfigurationPortlet = WSRP \u8a2d\u5b9a
org.jboss.portal.instance.name.WSRPConfigurationPortletInstance = WSRP \u8a2d\u5b9a\u30dd\u30fc\u30c8\u30ec\u30c3\u30c8
Modified: tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml
===================================================================
--- tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml 2009-01-19 12:59:27 UTC (rev 12548)
+++ tags/JBoss_Portal_2_7_1/core-wsrp/src/resources/portal-wsrp-admin-war/WEB-INF/wsrp-object.xml 2009-01-19 13:19:47 UTC (rev 12549)
@@ -31,6 +31,8 @@
<if-exists>overwrite</if-exists>
<page>
<page-name>WSRP</page-name>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>Resource</resource-bundle>
<properties>
<property>
<name>layout.id</name>
17 years, 3 months
JBoss Portal SVN: r12548 - in tags/JBoss_Portal_2_7_1/core/src: resources/portal-core-sar/conf and 3 other directories.
by portal-commits@lists.jboss.org
Author: thomas.heute(a)jboss.com
Date: 2009-01-19 07:59:27 -0500 (Mon, 19 Jan 2009)
New Revision: 12548
Added:
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
Modified:
tags/JBoss_Portal_2_7_1/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml
tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
Log:
Adding Japanese translation
Modified: tags/JBoss_Portal_2_7_1/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java 2009-01-19 11:49:57 UTC (rev 12547)
+++ tags/JBoss_Portal_2_7_1/core/src/main/org/jboss/portal/core/model/portal/metadata/PortalObjectMetaData.java 2009-01-19 12:59:27 UTC (rev 12548)
@@ -199,7 +199,17 @@
if (resourceBundle != null)
{
- ResourceBundleManager bundleMgr = MetaDataResourceBundleFactory.createResourceBundleManager(buildContext.getPortalWebApp().getClassLoader(), supportedLocales, resourceBundle);
+ ClassLoader classloader = null;
+ if (buildContext.getPortalWebApp() != null)
+ {
+ classloader = buildContext.getPortalWebApp().getClassLoader();
+ }
+ else
+ {
+ classloader = Thread.currentThread().getContextClassLoader();
+ }
+
+ ResourceBundleManager bundleMgr = MetaDataResourceBundleFactory.createResourceBundleManager(classloader, supportedLocales, resourceBundle);
object.setDisplayName(bundleMgr.getLocalizedValue("org.jboss.portal.object.name." + object.getId().getPath().toString(PortalObjectPath.LEGACY_FORMAT), object.getName()));
}
Added: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties (rev 0)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties 2009-01-19 12:59:27 UTC (rev 12548)
@@ -0,0 +1,24 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Admin
Property changes on: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource.properties
___________________________________________________________________
Name: svn:executable
+ *
Added: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties (rev 0)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties 2009-01-19 12:59:27 UTC (rev 12548)
@@ -0,0 +1,24 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Administration
Property changes on: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_fr.properties
___________________________________________________________________
Name: svn:executable
+ *
Added: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties (rev 0)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties 2009-01-19 12:59:27 UTC (rev 12548)
@@ -0,0 +1,24 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=Amministrazione
Property changes on: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_it.properties
___________________________________________________________________
Name: svn:executable
+ *
Added: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties (rev 0)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties 2009-01-19 12:59:27 UTC (rev 12548)
@@ -0,0 +1,24 @@
+################################################################################
+# JBoss, a division of Red Hat #
+# Copyright 2006, Red Hat Middleware, LLC, and individual #
+# contributors as indicated by the @authors tag. See the #
+# copyright.txt in the distribution for a full listing of #
+# individual contributors. #
+# #
+# 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. #
+################################################################################
+
+org.jboss.portal.object.name.admin.default=\u30dd\u30fc\u30bf\u30eb\u7ba1\u7406
Property changes on: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/bundles/Resource_ja.properties
___________________________________________________________________
Name: svn:executable
+ *
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 11:49:57 UTC (rev 12547)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-sar/conf/data/default-object.xml 2009-01-19 12:59:27 UTC (rev 12548)
@@ -359,11 +359,12 @@
</security-constraint>
<page>
<page-name>default</page-name>
- <display-name xml:lang="en">Admin</display-name>
- <display-name xml:lang="it">Amministrazione</display-name>
- <display-name xml:lang="es">Administración</display-name>
- <display-name xml:lang="fr">Administration</display-name>
- <display-name xml:lang="ru">Администрирование</display-name>
+ <supported-locale>fr</supported-locale>
+ <supported-locale>en</supported-locale>
+ <supported-locale>it</supported-locale>
+ <supported-locale>ja</supported-locale>
+ <resource-bundle>conf.bundles.Resource</resource-bundle>
+
<window>
<window-name>AdminPortletWindow</window-name>
<instance-ref>AdminPortletInstance</instance-ref>
Modified: tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties
===================================================================
--- tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2009-01-19 11:49:57 UTC (rev 12547)
+++ tags/JBoss_Portal_2_7_1/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties 2009-01-19 12:59:27 UTC (rev 12548)
@@ -34,4 +34,4 @@
PORTAL=Portal
ADMIN=Admin
MEMBERS=Members
-LOGGED=Logged in as
\ No newline at end of file
+LOGGED=Logged in as
17 years, 3 months
JBoss Portal SVN: r12547 - in modules/portlet/trunk: samples/src/main/java/org/jboss/portal/portlet/samples/remotecontroller and 1 other directory.
by portal-commits@lists.jboss.org
Author: chris.laprun(a)jboss.com
Date: 2009-01-19 06:49:57 -0500 (Mon, 19 Jan 2009)
New Revision: 12547
Modified:
modules/portlet/trunk/build/pom.xml
modules/portlet/trunk/samples/src/main/java/org/jboss/portal/portlet/samples/remotecontroller/RemoteControllerPortlet.java
Log:
- Potential fix on remote portlet opening new Portal pages... NOT TESTED.
- Use common 1.2.3.
- Should upgrade other modules as well to follow release.
Modified: modules/portlet/trunk/build/pom.xml
===================================================================
--- modules/portlet/trunk/build/pom.xml 2009-01-16 21:07:37 UTC (rev 12546)
+++ modules/portlet/trunk/build/pom.xml 2009-01-19 11:49:57 UTC (rev 12547)
@@ -33,7 +33,7 @@
<version.jboss-logging>2.0.4.GA</version.jboss-logging>
<version.jbossxb>2.0.0.CR8</version.jbossxb>
<version.jboss-remoting>2.2.1.GA</version.jboss-remoting>
- <version.jboss.portal.common>trunk-SNAPSHOT</version.jboss.portal.common>
+ <version.jboss.portal.common>1.2.3</version.jboss.portal.common>
<version.jboss.portal.web>1.2.2</version.jboss.portal.web>
<version.jboss.unit>1.2.1</version.jboss.unit>
<version.log4j>1.2.14</version.log4j>
Modified: modules/portlet/trunk/samples/src/main/java/org/jboss/portal/portlet/samples/remotecontroller/RemoteControllerPortlet.java
===================================================================
--- modules/portlet/trunk/samples/src/main/java/org/jboss/portal/portlet/samples/remotecontroller/RemoteControllerPortlet.java 2009-01-16 21:07:37 UTC (rev 12546)
+++ modules/portlet/trunk/samples/src/main/java/org/jboss/portal/portlet/samples/remotecontroller/RemoteControllerPortlet.java 2009-01-19 11:49:57 UTC (rev 12547)
@@ -43,7 +43,7 @@
"function " + namespace + "_openRemote_new(url){" +
- //"this.window.name='" + namespace + "_parent';\n" +
+ "this.window.name='" + namespace + "_parent';\n" +
"if (!"+ remoteWindowName +".closed){"+
"if (" + remoteWindowName +".location) {\n" +
remoteWindowName +".location.reload(true);\n" +
17 years, 3 months