You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2011/01/17 10:12:27 UTC

svn commit: r1059820 - in /myfaces/tobago/trunk: tobago-core/src/main/java/org/apache/myfaces/tobago/context/ tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/ tobago-example/tobago-example-demo/src/main/java/org/apache/myf...

Author: lofwyr
Date: Mon Jan 17 09:12:26 2011
New Revision: 1059820

URL: http://svn.apache.org/viewvc?rev=1059820&view=rev
Log:
TOBAGO-966: Split messages and other resource strings (of Tobago) into different bundles

Added:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoBundle.java
      - copied, changed from r1059156, myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoMessageBundle.java
      - copied, changed from r1059156, myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/DemoBundle.java
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message.properties.xml
      - copied, changed from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_de.properties.xml
      - copied, changed from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_es.properties.xml
      - copied, changed from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml
Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/LoadBundleTag.java
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/faces-config.xml
    myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml
    myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml

Copied: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoBundle.java (from r1059156, myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoBundle.java?p2=myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoBundle.java&p1=myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java&r1=1059156&r2=1059820&rev=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoBundle.java Mon Jan 17 09:12:26 2011
@@ -25,26 +25,37 @@ import java.util.Collections;
 import java.util.Enumeration;
 import java.util.ResourceBundle;
 
-/*
- * User: weber
- * Date: Jun 14, 2005
- * Time: 2:24:44 PM
+/**
+ * This class works like the Java resource bundle mechanism for a named resource bundle
+ * and adds the functionality of the tobago themes and also supports XML properties files.
+ * This class might be used in the faces-config.xml as an alternative to the tc:loadBundle tag.
+ *
+ * @since 1.5.0
  */
-public class TobagoResourceBundle extends ResourceBundle {
+public class TobagoBundle extends ResourceBundle {
 
-  private static final Logger LOG = LoggerFactory.getLogger(TobagoResourceBundle.class);
+  private static final Logger LOG = LoggerFactory.getLogger(TobagoBundle.class);
+
+  private String bundleName;
+
+  public TobagoBundle(String bundleName) {
+    this.bundleName = bundleName;
+  }
 
   protected Object handleGetObject(String key) {
     if (LOG.isDebugEnabled()) {
-      LOG.debug("search for \"{}\"", key);
+      LOG.debug("Searching for '{}' in bundle '{}'", key, bundleName);
     }
     FacesContext facesContext = FacesContext.getCurrentInstance();
-    ResourceManager resourceManager
-        = ResourceManagerFactory.getResourceManager(facesContext);
-    return resourceManager.getProperty(facesContext.getViewRoot(), "tobago", key);
+    ResourceManager resourceManager = ResourceManagerFactory.getResourceManager(facesContext);
+    return resourceManager.getProperty(facesContext, bundleName, key);
   }
 
   public Enumeration<String> getKeys() {
     return Collections.enumeration(Collections.EMPTY_LIST);
   }
+
+  public String getBundleName() {
+    return bundleName;
+  }
 }

Copied: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoMessageBundle.java (from r1059156, myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoMessageBundle.java?p2=myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoMessageBundle.java&p1=myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java&r1=1059156&r2=1059820&rev=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoMessageBundle.java Mon Jan 17 09:12:26 2011
@@ -17,34 +17,16 @@ package org.apache.myfaces.tobago.contex
  * limitations under the License.
  */
 
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import javax.faces.context.FacesContext;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.ResourceBundle;
-
-/*
- * User: weber
- * Date: Jun 14, 2005
- * Time: 2:24:44 PM
+/**
+ * This ResourceBundle encapsulate the messages (e. g. validation) of Tobago components.
+ * This class works like the Java resource bundle mechanism for the resource bundle "tobago-message"
+ * and adds the functionality of the tobago themes and also supports XML properties files.
+ *
+ * @since 1.5.0
  */
-public class TobagoResourceBundle extends ResourceBundle {
-
-  private static final Logger LOG = LoggerFactory.getLogger(TobagoResourceBundle.class);
-
-  protected Object handleGetObject(String key) {
-    if (LOG.isDebugEnabled()) {
-      LOG.debug("search for \"{}\"", key);
-    }
-    FacesContext facesContext = FacesContext.getCurrentInstance();
-    ResourceManager resourceManager
-        = ResourceManagerFactory.getResourceManager(facesContext);
-    return resourceManager.getProperty(facesContext.getViewRoot(), "tobago", key);
-  }
+public class TobagoMessageBundle extends TobagoBundle {
 
-  public Enumeration<String> getKeys() {
-    return Collections.enumeration(Collections.EMPTY_LIST);
+  public TobagoMessageBundle() {
+    super("tobago-message");
   }
 }

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/context/TobagoResourceBundle.java Mon Jan 17 09:12:26 2011
@@ -17,34 +17,14 @@ package org.apache.myfaces.tobago.contex
  * limitations under the License.
  */
 
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import javax.faces.context.FacesContext;
-import java.util.Collections;
-import java.util.Enumeration;
-import java.util.ResourceBundle;
-
-/*
- * User: weber
- * Date: Jun 14, 2005
- * Time: 2:24:44 PM
+/**
+ * This ResourceBundle encapsulate string resources of Tobago components.
+ * This class works like the Java resource bundle mechanism for the resource bundle "tobago"
+ * and adds the functionality of the tobago themes and also supports XML properties files.
  */
-public class TobagoResourceBundle extends ResourceBundle {
-
-  private static final Logger LOG = LoggerFactory.getLogger(TobagoResourceBundle.class);
-
-  protected Object handleGetObject(String key) {
-    if (LOG.isDebugEnabled()) {
-      LOG.debug("search for \"{}\"", key);
-    }
-    FacesContext facesContext = FacesContext.getCurrentInstance();
-    ResourceManager resourceManager
-        = ResourceManagerFactory.getResourceManager(facesContext);
-    return resourceManager.getProperty(facesContext.getViewRoot(), "tobago", key);
-  }
+public class TobagoResourceBundle extends TobagoBundle {
 
-  public Enumeration<String> getKeys() {
-    return Collections.enumeration(Collections.EMPTY_LIST);
+  public TobagoResourceBundle() {
+    super("tobago");
   }
 }

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/LoadBundleTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/LoadBundleTag.java?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/LoadBundleTag.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/LoadBundleTag.java Mon Jan 17 09:12:26 2011
@@ -29,9 +29,15 @@ import javax.servlet.jsp.tagext.TagSuppo
 import java.util.Map;
 
 /**
- * Load a resource bundle localized for the Locale of the current view
- * from the tobago resource path, and expose it (as a Map) in the request
- * attributes of the current request.
+ * Load a resource bundle localized for the locale of the current view
+ * from the tobago resource path, and expose it (as a Map) in the session
+ * attributes (session scope is needed to support ajax requests).
+ * <p>
+ * The main difference to the JSF tag f:localBundle is the support of Tobago themes and
+ * the XML formal for properties files.
+ * <p>
+ * Since JSF 1.2 it is possible to use a {@link org.apache.myfaces.tobago.context.TobagoBundle}
+ * and configure it in the faces-config.xml.
  */
 @Tag(name = "loadBundle", bodyContent = BodyContent.EMPTY)
 @TagGeneration(className = "org.apache.myfaces.tobago.internal.taglib.LoadBundleTag")
@@ -56,12 +62,9 @@ public abstract class LoadBundleTag exte
     FacesContext context = FacesContext.getCurrentInstance();
 
     Map toStore = new BundleMapWrapper(getBasenameValue());
-    // TODO find a better way
+    // (session scope is needed to support ajax requests)
     context.getExternalContext().getSessionMap().put(getVarValue(), toStore);
-//        .getRequestMap().put(var, toStore);
 
     return EVAL_BODY_INCLUDE;
   }
-
 }
-

Added: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/DemoBundle.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/DemoBundle.java?rev=1059820&view=auto
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/DemoBundle.java (added)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/DemoBundle.java Mon Jan 17 09:12:26 2011
@@ -0,0 +1,29 @@
+package org.apache.myfaces.tobago.example.demo;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import org.apache.myfaces.tobago.context.TobagoBundle;
+
+/**
+ * Resources of the demo application.
+ */
+public class DemoBundle extends TobagoBundle {
+  public DemoBundle() {
+    super("overview");
+  }
+}

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/faces-config.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/faces-config.xml?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/faces-config.xml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/faces-config.xml Mon Jan 17 09:12:26 2011
@@ -17,11 +17,11 @@
  * limitations under the License.
 -->
 
-<!DOCTYPE faces-config PUBLIC
-  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
-  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
-
-<faces-config>
+<faces-config
+    xmlns="http://java.sun.com/xml/ns/javaee"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
+    version="1.2">
 
   <application>
     <view-handler>
@@ -38,11 +38,15 @@
       <supported-locale>de_DE</supported-locale>
       <supported-locale>de_AT</supported-locale>
       <supported-locale>de_CH</supported-locale>
-<!--      <supported-locale>es</supported-locale>-->
+      <supported-locale>es</supported-locale>
       <supported-locale>ja_JP</supported-locale>
       <supported-locale>ru_RU</supported-locale>
-<!--      <supported-locale>zh_TW</supported-locale>-->
+      <supported-locale>zh_TW</supported-locale>
     </locale-config>
+    <resource-bundle>
+      <base-name>org.apache.myfaces.tobago.example.demo.DemoBundle</base-name>
+      <var>overviewBundle</var>
+    </resource-bundle>
   </application>
 
   <converter>

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-demo/src/main/webapp/WEB-INF/tags/layout/overview.xhtml Mon Jan 17 09:12:26 2011
@@ -22,7 +22,6 @@
                 xmlns:tx="http://myfaces.apache.org/tobago/extension"
                 xmlns:ui="http://java.sun.com/jsf/facelets">
   <f:view locale="#{clientConfigController.locale}">
-    <tc:loadBundle basename="overview" var="overviewBundle"/>
     <tc:page applicationIcon="icon/favicon.ico" label="#{overviewBundle.pageTitle} - #{title}" id="page" width="1000px"
              height="750px">
 

Copied: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message.properties.xml (from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message.properties.xml?p2=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message.properties.xml&p1=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml&r1=1059156&r2=1059820&rev=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message.properties.xml Mon Jan 17 09:12:26 2011
@@ -19,63 +19,6 @@
 
 <properties>
 
-  <!-- Client Configuration -->
-  <entry key="configTitle">Client configuration of the Tobago framework</entry>
-  <entry key="configTheme">Theme</entry>
-  <entry key="configThemeWithAccessKey">_Theme</entry>
-  <entry key="configThemeText">Which theme should be used?</entry>
-  <entry key="configDebugMode">Use _debug mode</entry>
-  <entry key="configLocale">Locale</entry>
-  <entry key="configLocaleText">Which locale should be used?</entry>
-  <entry key="configContentType">Content type</entry>
-  <entry key="configContentTypeText">Which Content-Type should be used?</entry>
-  <entry key="configSubmit">Submit</entry>
-  <entry key="configButtonText">Configuration</entry>
-  <entry key="configCachecoverage">Cache coverage</entry>
-
-  <!-- Sheet -->
-  <entry key="sheetFirst">First Page</entry>
-  <entry key="sheetPrev">Previous Page</entry>
-  <entry key="sheetNext">Next Page</entry>
-  <entry key="sheetLast">Last Page</entry>
-  <entry key="sheetTipSorting">Click to sort this column</entry>
-  <entry key="sheetAscending">Ascending</entry>
-  <entry key="sheetDescending">Descending</entry>
-  <entry key="sheetPagingInfoRows">Rows &lt;span id="{3}"&gt;{0}&lt;/span&gt; to {1} of {2}</entry>
-  <entry key="sheetPagingInfoSingleRow">Row &lt;span id="{3}"&gt;{0}&lt;/span&gt; of {2}</entry>
-  <entry key="sheetPagingInfoEmptyRow">No rows available</entry>
-  <entry key="sheetPagingInfoRowPagingTip">Click here, to change the first displayed row</entry>
-  <entry key="sheetPagingInfoPages">Page &lt;span id="{3}"&gt;{0}&lt;/span&gt; of {1}</entry>
-  <entry key="sheetPagingInfoSinglePage">Page &lt;span id="{3}"&gt;{0}&lt;/span&gt; of {1}</entry>
-  <entry key="sheetPagingInfoEmptyPage"></entry>
-  <entry key="sheetPagingInfoPagePagingTip">Click here, to change the displayed page</entry>
-  <entry key="sheetMenuToggleselect">Invert selections</entry>
-  <entry key="sheetMenuUnselect">Unselect all</entry>
-  <entry key="sheetMenuSelect">Select all</entry>
-
-  <!-- Tree -->
-  <entry key="treeNew">New</entry>
-  <entry key="treeDelete">Delete</entry>
-  <entry key="treeEdit">Edit</entry>
-  <entry key="treeCut">Cut</entry>
-  <entry key="treeCopy">Copy</entry>
-  <entry key="treePaste">Paste</entry>
-  <entry key="treeMoveUp">Move Up</entry>
-  <entry key="treeMoveDown">Move Down</entry>
-  <entry key="treeNodeNew">New Node</entry>
-
-  <!-- datePicker -->
-  <entry key="datePickerTitle">Date Picker</entry>
-  <entry key="datePickerOk">OK</entry>
-  <entry key="datePickerCancel">Cancel</entry>
-
-  <!-- in - input suggest -->
-  <entry key="tobago.in.inputSuggest.moreElements">There are more matching entries…</entry>
-
-  <!-- messages -->
-  <entry key="tobago.message.confirmation.title">Messages</entry>
-  <entry key="tobago.message.confirmation.okay">OK</entry>
-
   <!-- requiredvalidator -->
   <entry key="tobago.requiredvalidator.message.empty.summary">Required field.</entry>
   <entry key="tobago.requiredvalidator.message.empty.detail">Field is required.</entry>
@@ -92,30 +35,12 @@
   <entry key="tobago.tree.MESSAGE_NOT_LEAF">Only leaf selection allowed.</entry>
   <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Selection required</entry>
 
-  <!-- richtexteditor -->
-  <entry key="tobago.richtexteditor.edit.label">Edit</entry>
-  <entry key="tobago.richtexteditor.edit.title">Switch to editor mode.</entry>
-  <entry key="tobago.richtexteditor.preview.label">Preview</entry>
-  <entry key="tobago.richtexteditor.preview.title">Switch to preview mode.</entry>
   <entry key="browser.noframe.message.prefix">[ Your user agent does not support frames or is currently configured not to display frames. However, you may visit</entry>
   <entry key="browser.noframe.message.postfix">the related document. ]</entry>
 
-
-  <!--  jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximum of "{0}" characters exceeded!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">Value is longer than allowable maximum of "{0}" characters!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimum of "{0}" characters !</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">Value is shorter than allowable minimum of "{0}" characters!</entry>
-
-  <entry key="tobago.ajax.response.error">Server Error: unable to serve request. Probably a session timeout!</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Content type error</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">The given file is not content type of "{0}".</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT">File size error</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT_detail">The uploaded file exceeded the maximum size of {0} bytes.</entry>
-  <entry key="tobago.font3.widths">04050508080d0a030505060904050404080808080808080808080404090909080f090a0b0b0a090b0a03070a080b0a0c0a0c0b0a090a090f0909080404040508050808080808040808030307030d0808080805080408070b070708050305090b</entry>
-  <entry key="tobago.font2.widths">04050508080c09030505050804050404080808080808080808080404080808080e09090a0a09090b09030609080b090b090b0a090909090d0809080404040508050808070808040808030307030b08080808050704080709060706050305080b</entry>
-  <!-- Font metric for ArialMT plain 14 -->
-  <!-- The String contains all widths for char 32 to 127. Each pair of 2 chars is a hex value-->
-  <entry key="tobago.font.widths">04040508080c09030505050804050404080808080808080808080404080808080e09090a0a09090b0a040709080c0a0b090b0a09090a090d0909090404040708050808070808040808030307030c0808080805070408070a070707050405080b</entry>
 
 </properties>

Copied: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_de.properties.xml (from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_de.properties.xml?p2=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_de.properties.xml&p1=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml&r1=1059156&r2=1059820&rev=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_de.properties.xml Mon Jan 17 09:12:26 2011
@@ -22,61 +22,6 @@
 
 <properties>
 
-  <!-- Client Configuration -->
-  <entry key="configTitle">Konfiguration des Clients des Tobago-Frameworks</entry>
-  <entry key="configTheme">Design</entry>
-  <entry key="configThemeText">Welches Design soll verwendet werden?</entry>
-  <entry key="configDebugMode">Soll der _Debugmodus aktiviert werden?</entry>
-  <entry key="configLocale">Sprache</entry>
-  <entry key="configLocaleText">Welche Sprache/Region soll verwendet werden?</entry>
-  <entry key="configContentType">Inhaltstyp</entry>
-  <entry key="configContentTypeText">Welcher Inhaltstyp (Content-Type) soll verwendet werden?</entry>
-  <entry key="configSubmit">Ändern</entry>
-  <entry key="configButtonText">Einstellungen</entry>
-  <entry key="configCachecoverage">Cache Abdeckung</entry>
-
-  <!-- Sheet -->
-  <entry key="sheetFirst">erste Seite</entry>
-  <entry key="sheetPrev">vorherige Seite</entry>
-  <entry key="sheetNext">nächste Seite</entry>
-  <entry key="sheetLast">letzte Seite</entry>
-  <entry key="sheetTipSorting">nach dieser Spalte sortieren</entry>
-  <entry key="sheetAscending">aufsteigend sortiert</entry>
-  <entry key="sheetDescending">absteigend sortiert</entry>
-  <entry key="sheetPagingInfoRows">Zeilen &lt;span id="{3}"&gt;{0}&lt;/span&gt; bis {1} von {2}</entry>
-  <entry key="sheetPagingInfoSingleRow">Zeilen &lt;span id="{3}">{0}&lt;/span> von {2}</entry>
-  <entry key="sheetPagingInfoEmptyRow">Keine Zeilen verf&amp;uuml;gbar</entry>
-  <entry key="sheetPagingInfoRowPagingTip">Hier klicken, zum Eingeben der ersten anzuzeigenden Zeile.</entry>
-  <entry key="sheetPagingInfoPages">Seite &lt;span id="{3}">{0}&lt;/span&gt; von {1}</entry>
-  <entry key="sheetPagingInfoSinglePage">Seite &lt;span id="{3}"&gt;{0}&lt;/span&gt; von {1}</entry>
-  <entry key="sheetPagingInfoEmptyPage"></entry>
-  <entry key="sheetPagingInfoPagePagingTip">Hier klicken, zum Eingeben der anzuzeigenden Seite.</entry>
-  <entry key="sheetMenuToggleselect">Markierung umkehren</entry>
-  <entry key="sheetMenuUnselect">Markierungen löschen</entry>
-  <entry key="sheetMenuSelect">Alles markieren</entry>
-
-  <!-- Tree -->
-  <entry key="treeNew">Neu</entry>
-  <entry key="treeDelete">Löschen</entry>
-  <entry key="treeEdit">Bearbeiten</entry>
-  <entry key="treeCut">Ausschneiden</entry>
-  <entry key="treeCopy">Kopieren</entry>
-  <entry key="treePaste">Einfügen</entry>
-  <entry key="treeMoveUp">Nach oben verschieben</entry>
-  <entry key="treeMoveDown">Nach unten verschieben</entry>
-  <entry key="treeNodeNew">Neuer Knoten</entry>
-
-  <!-- datePicker -->
-  <entry key="datePickerTitle">Datumsauswahl</entry>
-  <entry key="datePickerOk">OK</entry>
-  <entry key="datePickerCancel">Abbrechen</entry>
-
-  <!-- in - input suggest -->
-  <entry key="tobago.in.inputSuggest.moreElements">Es gibt weitere passende Einträge…</entry>
-
-  <!-- messages -->
-  <entry key="tobago.message.confirmation.title">Meldungen</entry>
-
   <!-- requiredvalidator -->
   <entry key="tobago.requiredvalidator.message.empty.summary">Pflichtfeld</entry>
   <entry key="tobago.requiredvalidator.message.empty.detail">Feld benötigt eine Eingabe!</entry>
@@ -93,24 +38,6 @@
   <entry key="tobago.tree.MESSAGE_NOT_LEAF">Es dürfen nur Endknoten ausgewählt werden.</entry>
   <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Eine Auswahl wird benötigt!</entry>
 
-
-  <!-- richtexteditor -->
-  <entry key="tobago.richtexteditor.edit.label">Bearbeiten</entry>
-  <entry key="tobago.richtexteditor.edit.title">Zum Editor umschalten.</entry>
-  <entry key="tobago.richtexteditor.preview.label">Vorschau</entry>
-  <entry key="tobago.richtexteditor.preview.title">Zur Vorschau umschalten.</entry>
-
-  <!-- copyright -->
-  <entry key="atanion">atanion GmbH</entry>
-  <entry key="atanionPoweredBy">Copyright 2002-2005 The Apache Software Foundation</entry>
-
-
-  <!-- jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximal "{0}" Zeichen erlaubt!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">Der eingegebene Wert ist länger als das zulässige Maximum von {0} Zeichen!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimal "{0}" Zeichen erlaubt!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">Der eingegebene Wert ist kürzer als das zulässige Minimum von {0} Zeichen!</entry>
-
   <entry key="tobago.ajax.response.error">Server Error: Fehler beim Bearbeiten der Anfrage. Eventuell ein Session Timeout!</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Dateityp Fehler</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">Die hochgeladene Datei ist nicht vom Typ "{0}".</entry>

Copied: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_es.properties.xml (from r1059156, myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml)
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_es.properties.xml?p2=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_es.properties.xml&p1=myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml&r1=1059156&r2=1059820&rev=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago-message_es.properties.xml Mon Jan 17 09:12:26 2011
@@ -19,62 +19,6 @@
 
 <properties>
 
-  <!-- Client Configuration -->
-  <entry key="configTitle">Configuración cliente del framework Tobago</entry>
-  <entry key="configTheme">Tema</entry>
-  <entry key="configThemeWithAccessKey">_Tema</entry>
-  <entry key="configThemeText">¿Que tema debe de ser utilizado?</entry>
-  <entry key="configDebugMode">Usa modo de _debugueo</entry>
-  <entry key="configLocale">Idioma</entry>
-  <entry key="configLocaleText">¿Que idioma debe de ser utilizado?</entry>
-  <entry key="configContentType">Tipo de contenido</entry>
-  <entry key="configContentTypeText">¿Que tipo de contenido debe de ser utilizado?</entry>
-  <entry key="configSubmit">Enviar</entry>
-  <entry key="configButtonText">Configuracion</entry>
-  <entry key="configCachecoverage">Cobertura de cache</entry>
-
-  <!-- Sheet -->
-  <entry key="sheetFirst">Primera Página</entry>
-  <entry key="sheetPrev">Página Anterior</entry>
-  <entry key="sheetNext">Página Siguiente</entry>
-  <entry key="sheetLast">Última Página</entry>
-  <entry key="sheetTipSorting">Ordenar por esta columna</entry>
-  <entry key="sheetAscending">Ascendente</entry>
-  <entry key="sheetDescending">Descendente</entry>
-  <entry key="sheetPagingInfoRows">Registros &lt;span id="{3}"&gt;{0}&lt;/span&gt; {1} de {2}</entry>
-  <entry key="sheetPagingInfoSingleRow">Registro &lt;span id="{3}"&gt;{0}&lt;/span&gt; de {2}</entry>
-  <entry key="sheetPagingInfoEmptyRow">No hay registros disponibles</entry>
-  <entry key="sheetPagingInfoRowPagingTip">Click aqui, para cambiar el primer registro desplegado.</entry>
-  <entry key="sheetPagingInfoPages">Página &lt;span id="{3}"&gt;{0}&lt;/span&gt; de {1}</entry>
-  <entry key="sheetPagingInfoSinglePage">Página &lt;span id="{3}"&gt;{0}&lt;/span&gt; de {1}</entry>
-  <entry key="sheetPagingInfoEmptyPage"></entry>
-  <entry key="sheetPagingInfoPagePagingTip">Click aquí, para cambiar el nombre desplegado.</entry>
-  <entry key="sheetMenuToggleselect">Invertir seleccion</entry>
-  <entry key="sheetMenuUnselect">Deseleccionar todo</entry>
-  <entry key="sheetMenuSelect">Seleccionar todo</entry>
-
-  <!-- Tree -->
-  <entry key="treeNew">Nuevo</entry>
-  <entry key="treeDelete">Borrar</entry>
-  <entry key="treeEdit">Editar</entry>
-  <entry key="treeCut">Cortar</entry>
-  <entry key="treeCopy">Copiar</entry>
-  <entry key="treePaste">Pegar</entry>
-  <entry key="treeMoveUp">Mover hacia arriba</entry>
-  <entry key="treeMoveDown">Mover hacia abajo</entry>
-  <entry key="treeNodeNew">Nuevo nodo</entry>
-
-  <!-- datePicker -->
-  <entry key="datePickerTitle">Escoger fecha</entry>
-  <entry key="datePickerOk">Enviar</entry>
-  <entry key="datePickerCancel">Cancelar</entry>
-
-  <!-- in - input suggest -->
-  <entry key="tobago.in.inputSuggest.moreElements">Hay más entradas aparejadas…</entry>
-
-  <!-- messages -->
-  <entry key="tobago.message.confirmation.title">Aviso</entry>
-
   <!-- requiredvalidator -->
   <entry key="tobago.requiredvalidator.message.empty.summary">Campo requerido.</entry>
   <entry key="tobago.requiredvalidator.message.empty.detail">Campo es requerido.</entry>
@@ -91,21 +35,9 @@
   <entry key="tobago.tree.MESSAGE_NOT_LEAF">Solo se permite seleccionar hojas.</entry>
   <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Se requiere seleccionar.</entry>
 
-  <!-- richtexteditor -->
-  <entry key="tobago.richtexteditor.edit.label">Editar</entry>
-  <entry key="tobago.richtexteditor.edit.title">Pasar al modo de edición.</entry>
-  <entry key="tobago.richtexteditor.preview.label">Vista previa</entry>
-  <entry key="tobago.richtexteditor.preview.title">Cambiar a modo de vista previa.</entry>
   <entry key="browser.noframe.message.prefix">[ Tu navegador no soporta frames o está configurado para no desplegar frames. Como sea, puedes visitar</entry>
   <entry key="browser.noframe.message.postfix">el documento relacionado. ]</entry>
 
-
-  <!--  jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximo de "{0}" caracteres fue excedido!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">El valor es mayor que el permitido de "{0}" caracteres!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimo de "{0}" caracteres!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">El valor es menor que el permitido de "{0}" caracteres!</entry>
-
   <entry key="tobago.ajax.response.error">Error en el servidor: No hay respuesta del servidor. Probablemente debido a un tiempo agotado de sesion!</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Error de tipo de contenido</entry>
   <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">El archivo no es del tipo de contenido "{0}".</entry>

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago.properties.xml Mon Jan 17 09:12:26 2011
@@ -76,42 +76,12 @@
   <entry key="tobago.message.confirmation.title">Messages</entry>
   <entry key="tobago.message.confirmation.okay">OK</entry>
 
-  <!-- requiredvalidator -->
-  <entry key="tobago.requiredvalidator.message.empty.summary">Required field.</entry>
-  <entry key="tobago.requiredvalidator.message.empty.detail">Field is required.</entry>
-
-  <!-- longrangevalidator -->
-  <entry key="tobago.longrangevalidator.message.range.summary">Not in range.</entry>
-  <entry key="tobago.longrangevalidator.message.range.detail">Value must be between {0} and {1}.</entry>
-  <entry key="tobago.longrangevalidator.message.type.summary">Wrong type.</entry>
-  <entry key="tobago.longrangevalidator.message.type.detail">Value is not of the correct type.</entry>
-  <entry key="tobago.message.number_conversion_error.summary">Unable to convert number.</entry>
-  <entry key="tobago.message.number_conversion_error.detail">Unable to convert ''{0}'' to number type {1}.</entry>
-  <entry key="tobago.message.conversion_error.summary">Unable to convert.</entry>
-  <entry key="tobago.message.conversion_error.detail">Unable to convert ''{0}'' to type {1}.</entry>
-  <entry key="tobago.tree.MESSAGE_NOT_LEAF">Only leaf selection allowed.</entry>
-  <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Selection required</entry>
-
   <!-- richtexteditor -->
   <entry key="tobago.richtexteditor.edit.label">Edit</entry>
   <entry key="tobago.richtexteditor.edit.title">Switch to editor mode.</entry>
   <entry key="tobago.richtexteditor.preview.label">Preview</entry>
   <entry key="tobago.richtexteditor.preview.title">Switch to preview mode.</entry>
-  <entry key="browser.noframe.message.prefix">[ Your user agent does not support frames or is currently configured not to display frames. However, you may visit</entry>
-  <entry key="browser.noframe.message.postfix">the related document. ]</entry>
-
-
-  <!--  jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximum of "{0}" characters exceeded!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">Value is longer than allowable maximum of "{0}" characters!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimum of "{0}" characters !</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">Value is shorter than allowable minimum of "{0}" characters!</entry>
 
-  <entry key="tobago.ajax.response.error">Server Error: unable to serve request. Probably a session timeout!</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Content type error</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">The given file is not content type of "{0}".</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT">File size error</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT_detail">The uploaded file exceeded the maximum size of {0} bytes.</entry>
   <entry key="tobago.font3.widths">04050508080d0a030505060904050404080808080808080808080404090909080f090a0b0b0a090b0a03070a080b0a0c0a0c0b0a090a090f0909080404040508050808080808040808030307030d0808080805080408070b070708050305090b</entry>
   <entry key="tobago.font2.widths">04050508080c09030505050804050404080808080808080808080404080808080e09090a0a09090b09030609080b090b090b0a090909090d0809080404040508050808070808040808030307030b08080808050704080709060706050305080b</entry>
   <!-- Font metric for ArialMT plain 14 -->

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_de.properties.xml Mon Jan 17 09:12:26 2011
@@ -77,44 +77,10 @@
   <!-- messages -->
   <entry key="tobago.message.confirmation.title">Meldungen</entry>
 
-  <!-- requiredvalidator -->
-  <entry key="tobago.requiredvalidator.message.empty.summary">Pflichtfeld</entry>
-  <entry key="tobago.requiredvalidator.message.empty.detail">Feld benötigt eine Eingabe!</entry>
-
-  <!-- longrangevalidator -->
-  <entry key="tobago.longrangevalidator.message.range.summary">Bereichsüberschreitung.</entry>
-  <entry key="tobago.longrangevalidator.message.range.detail">Wert muss zwischen {0} und {1} liegen.</entry>
-  <entry key="tobago.longrangevalidator.message.type.summary">Falscher Typ.</entry>
-  <entry key="tobago.longrangevalidator.message.type.detail">Wert hat den falschen Typ.</entry>
-  <entry key="tobago.message.number_conversion_error.summary">Zahl kann nicht konvertiert werden.</entry>
-  <entry key="tobago.message.number_conversion_error.detail">''{0}'' kann nicht zum Typ {1} umgewandelt werden.</entry>
-  <entry key="tobago.message.conversion_error.summary">Konvertierung nicht möglich.</entry>
-  <entry key="tobago.message.conversion_error.detail">''{0}'' kann nicht zum Typ {1} umgewandelt werden.</entry>
-  <entry key="tobago.tree.MESSAGE_NOT_LEAF">Es dürfen nur Endknoten ausgewählt werden.</entry>
-  <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Eine Auswahl wird benötigt!</entry>
-
-
   <!-- richtexteditor -->
   <entry key="tobago.richtexteditor.edit.label">Bearbeiten</entry>
   <entry key="tobago.richtexteditor.edit.title">Zum Editor umschalten.</entry>
   <entry key="tobago.richtexteditor.preview.label">Vorschau</entry>
   <entry key="tobago.richtexteditor.preview.title">Zur Vorschau umschalten.</entry>
 
-  <!-- copyright -->
-  <entry key="atanion">atanion GmbH</entry>
-  <entry key="atanionPoweredBy">Copyright 2002-2005 The Apache Software Foundation</entry>
-
-
-  <!-- jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximal "{0}" Zeichen erlaubt!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">Der eingegebene Wert ist länger als das zulässige Maximum von {0} Zeichen!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimal "{0}" Zeichen erlaubt!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">Der eingegebene Wert ist kürzer als das zulässige Minimum von {0} Zeichen!</entry>
-
-  <entry key="tobago.ajax.response.error">Server Error: Fehler beim Bearbeiten der Anfrage. Eventuell ein Session Timeout!</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Dateityp Fehler</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">Die hochgeladene Datei ist nicht vom Typ "{0}".</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT">Dateigröße Fehler</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT_detail">Die Größe der hochgeladenen Datei darf nicht größer als {1} Bytes sein.</entry>
-
 </properties>

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml?rev=1059820&r1=1059819&r2=1059820&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/property/tobago_es.properties.xml Mon Jan 17 09:12:26 2011
@@ -75,41 +75,6 @@
   <!-- messages -->
   <entry key="tobago.message.confirmation.title">Aviso</entry>
 
-  <!-- requiredvalidator -->
-  <entry key="tobago.requiredvalidator.message.empty.summary">Campo requerido.</entry>
-  <entry key="tobago.requiredvalidator.message.empty.detail">Campo es requerido.</entry>
-
-  <!-- longrangevalidator -->
-  <entry key="tobago.longrangevalidator.message.range.summary">Fuera de rango.</entry>
-  <entry key="tobago.longrangevalidator.message.range.detail">El valor debe de ser entre {0} y {1}.</entry>
-  <entry key="tobago.longrangevalidator.message.type.summary">Tipo erroneo.</entry>
-  <entry key="tobago.longrangevalidator.message.type.detail">El valor no es del tipo correcto.</entry>
-  <entry key="tobago.message.number_conversion_error.summary">Número no se puede convertir.</entry>
-  <entry key="tobago.message.number_conversion_error.detail">No se puede convertir ''{0}'' a tipo de número {1}.</entry>
-  <entry key="tobago.message.conversion_error.summary">No se puede convertir.</entry>
-  <entry key="tobago.message.conversion_error.detail">No se puede convertir ''{0}'' al tipo {1}.</entry>
-  <entry key="tobago.tree.MESSAGE_NOT_LEAF">Solo se permite seleccionar hojas.</entry>
-  <entry key="tobago.SelectOne.MESSAGE_VALUE_REQUIRED">Se requiere seleccionar.</entry>
-
-  <!-- richtexteditor -->
-  <entry key="tobago.richtexteditor.edit.label">Editar</entry>
-  <entry key="tobago.richtexteditor.edit.title">Pasar al modo de edición.</entry>
-  <entry key="tobago.richtexteditor.preview.label">Vista previa</entry>
-  <entry key="tobago.richtexteditor.preview.title">Cambiar a modo de vista previa.</entry>
-  <entry key="browser.noframe.message.prefix">[ Tu navegador no soporta frames o está configurado para no desplegar frames. Como sea, puedes visitar</entry>
-  <entry key="browser.noframe.message.postfix">el documento relacionado. ]</entry>
-
-
-  <!--  jsf messages -->
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM">Maximo de "{0}" caracteres fue excedido!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MAXIMUM_detail">El valor es mayor que el permitido de "{0}" caracteres!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM">Minimo de "{0}" caracteres!</entry>
-  <entry key="javax.faces.validator.LengthValidator.MINIMUM_detail">El valor es menor que el permitido de "{0}" caracteres!</entry>
-
   <entry key="tobago.ajax.response.error">Error en el servidor: No hay respuesta del servidor. Probablemente debido a un tiempo agotado de sesion!</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE">Error de tipo de contenido</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.CONTENT_TYPE_detail">El archivo no es del tipo de contenido "{0}".</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT">Error en el tamaño del archivo</entry>
-  <entry key="org.apache.myfaces.tobago.FileItemValidator.SIZE_LIMIT_detail">El archivo subido excede el máximo tamaño de {0} bytes.</entry>
 
 </properties>