You are viewing a plain text version of this content. The canonical link for it is here.
Posted to adffaces-commits@incubator.apache.org by ma...@apache.org on 2006/07/30 02:01:17 UTC

svn commit: r426857 [2/10] - in /incubator/adffaces/branches/matzew-component-renaming/trinidad: trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad/core/ trinidad-build/src/main/resources/META-INF/maven-faces-plugin/conve...

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pages/ColorPickerJSP.java
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pages/ColorPickerJSP.java?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pages/ColorPickerJSP.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pages/ColorPickerJSP.java Sat Jul 29 19:01:11 2006
@@ -25,7 +25,7 @@
 import org.apache.myfaces.trinidad.component.core.CoreDocument;
 import org.apache.myfaces.trinidad.component.core.CoreForm;
 import org.apache.myfaces.trinidad.component.core.input.CoreChooseColor;
-import org.apache.myfaces.trinidad.component.core.input.CoreSelectInputColor;
+import org.apache.myfaces.trinidad.component.core.input.CoreInputColor;
 import org.apache.myfaces.trinidad.component.core.layout.CorePanelButtonBar;
 import org.apache.myfaces.trinidad.component.core.nav.CoreGoButton;
 import org.apache.myfaces.trinidad.component.core.output.CoreSpacer;
@@ -60,7 +60,7 @@
     CoreDocument doc = new CoreDocument();
     context.getViewRoot().getChildren().add(doc);
 
-    doc.setTitle(arc.getTranslatedString("af_selectInputColor.PICKER_TITLE"));
+    doc.setTitle(arc.getTranslatedString("af_inputColor.PICKER_TITLE"));
     
     CoreForm form = new CoreForm();
     form.setId("d");
@@ -75,7 +75,7 @@
     rl1.getChildren().add(cf1);
     cf1.setHalign("center");
     
-    CoreSelectInputColor sic = new CoreSelectInputColor();
+    CoreInputColor sic = new CoreInputColor();
     cf1.getChildren().add(sic);
     sic.setId("c");
     sic.setOnkeypress("if(_getKC(event)==13){selectColor();return false}");
@@ -85,7 +85,7 @@
     sic.setConverter(converter);
     sic.setValue(value);
     sic.setChooseId("choose");
-    sic.setLabel(arc.getTranslatedString("af_selectInputColor.PICKER_PROMPT"));
+    sic.setLabel(arc.getTranslatedString("af_inputColor.PICKER_PROMPT"));
 
     HtmlRowLayout rl2 = new HtmlRowLayout();
     tl.getChildren().add(rl2);
@@ -120,12 +120,12 @@
 
 
     CoreGoButton cancel = 
-       JspUtils.createGoButton(arc, "af_selectInputColor.CANCEL");
+       JspUtils.createGoButton(arc, "af_inputColor.CANCEL");
     bar.getChildren().add(cancel);
     cancel.setOnclick("doCancel()");
 
     CoreGoButton select = 
-       JspUtils.createGoButton(arc, "af_selectInputColor.APPLY");
+       JspUtils.createGoButton(arc, "af_inputColor.APPLY");
     bar.getChildren().add(select);
     select.setOnclick("return selectColor()");
 

Copied: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputColorRenderer.java (from r426855, incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputColorRenderer.java)
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputColorRenderer.java?p2=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputColorRenderer.java&p1=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputColorRenderer.java&r1=426855&r2=426857&rev=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputColorRenderer.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputColorRenderer.java Sat Jul 29 19:01:11 2006
@@ -19,25 +19,25 @@
 import javax.faces.context.FacesContext;
 import org.apache.myfaces.trinidad.bean.FacesBean;
 import org.apache.myfaces.trinidad.bean.PropertyKey;
-import org.apache.myfaces.trinidad.component.core.input.CoreSelectInputColor;
+import org.apache.myfaces.trinidad.component.core.input.CoreInputColor;
 import org.apache.myfaces.trinidadinternal.renderkit.RenderingContext;
 
-public class SelectInputColorRenderer extends InputLabelAndMessageRenderer
+public class InputColorRenderer extends InputLabelAndMessageRenderer
 {
 
-  public SelectInputColorRenderer()
+  public InputColorRenderer()
   {
-    super(CoreSelectInputColor.TYPE);
+    super(CoreInputColor.TYPE);
   }  
 
   protected String getRootStyleClass(FacesBean bean)  
   {
-    return "af|selectInputColor";
+    return "af|inputColor";
   }  
     
   protected FormInputRenderer getFormInputRenderer()
   {
-    return _simpleSelectInputColor;
+    return _simpleInputColor;
   }
   
   protected String getLabelFor(
@@ -53,7 +53,7 @@
   
   private boolean _isCompact(FacesBean bean)
   {
-    FacesBean.Type type = CoreSelectInputColor.TYPE;
+    FacesBean.Type type = CoreInputColor.TYPE;
     PropertyKey compactKey = type.findKey("compact");
     Object o = bean.getProperty(compactKey);
     if (o == null)
@@ -62,6 +62,6 @@
     return Boolean.TRUE.equals(o);
   }
   
-  private SimpleSelectInputColorRenderer _simpleSelectInputColor =
-     new SimpleSelectInputColorRenderer();
+  private SimpleInputColorRenderer _simpleInputColor =
+     new SimpleInputColorRenderer();
 }

Copied: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputDateRenderer.java (from r426855, incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputDateRenderer.java)
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputDateRenderer.java?p2=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputDateRenderer.java&p1=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputDateRenderer.java&r1=426855&r2=426857&rev=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SelectInputDateRenderer.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/InputDateRenderer.java Sat Jul 29 19:01:11 2006
@@ -16,26 +16,26 @@
 package org.apache.myfaces.trinidadinternal.renderkit.core.xhtml;
 
 import org.apache.myfaces.trinidad.bean.FacesBean;
-import org.apache.myfaces.trinidad.component.core.input.CoreSelectInputDate;
+import org.apache.myfaces.trinidad.component.core.input.CoreInputDate;
 
-public class SelectInputDateRenderer extends InputLabelAndMessageRenderer
+public class InputDateRenderer extends InputLabelAndMessageRenderer
 {
 
-  public SelectInputDateRenderer()
+  public InputDateRenderer()
   {
-    super(CoreSelectInputDate.TYPE);
+    super(CoreInputDate.TYPE);
   }  
   
   protected FormInputRenderer getFormInputRenderer()
   {
-    return _simpleSelectInputDate;
+    return _simpleInputDate;
   }
 
   protected String getRootStyleClass(FacesBean bean)  
   {
-    return "af|selectInputDate";
+    return "af|inputDate";
   }  
 
-  private SimpleSelectInputDateRenderer _simpleSelectInputDate =
-     new SimpleSelectInputDateRenderer();
+  private SimpleInputDateRenderer _simpleInputDate =
+     new SimpleInputDateRenderer();
 }

Copied: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputColorRenderer.java (from r426855, incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputColorRenderer.java)
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputColorRenderer.java?p2=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputColorRenderer.java&p1=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputColorRenderer.java&r1=426855&r2=426857&rev=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputColorRenderer.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputColorRenderer.java Sat Jul 29 19:01:11 2006
@@ -32,7 +32,7 @@
 
 import org.apache.myfaces.trinidad.bean.FacesBean;
 import org.apache.myfaces.trinidad.bean.PropertyKey;
-import org.apache.myfaces.trinidad.component.core.input.CoreSelectInputColor;
+import org.apache.myfaces.trinidad.component.core.input.CoreInputColor;
 import org.apache.myfaces.trinidad.context.RequestContext;
 import org.apache.myfaces.trinidad.event.ReturnEvent;
 
@@ -54,12 +54,12 @@
  * @todo Resolve ALT keys
  * @todo is AF_SELECT_INPUT_COLOR_SWATCH_OVERLAY_ICON_STYLE_CLASS used anywhere?
  */
-public class SimpleSelectInputColorRenderer
+public class SimpleInputColorRenderer
   extends SimpleSelectInputTextRenderer
 {
-  public SimpleSelectInputColorRenderer()
+  public SimpleInputColorRenderer()
   {
-    super(CoreSelectInputColor.TYPE);
+    super(CoreInputColor.TYPE);
   }
 
   protected void findTypeConstants(FacesBean.Type type)
@@ -395,12 +395,12 @@
 
   protected String getRootStyleClass(FacesBean bean)
   {
-    return "af|selectInputColor";
+    return "af|inputColor";
   }
 
   protected String getContentStyleClass(FacesBean bean)
   {
-    return "af|selectInputColor::content";
+    return "af|inputColor::content";
   }
 
   private String _getChooseId(RenderingContext arc)
@@ -491,7 +491,7 @@
       }
 
       String key = editable ?
-                    "af_selectInputColor.LAUNCH_PICKER_TIP" :
+                    "af_inputColor.LAUNCH_PICKER_TIP" :
                     "af_chooseColor.TRANSPARENT";
       altText = arc.getTranslatedString(key);
     }
@@ -501,7 +501,7 @@
       writer.writeAttribute("src", transparentURI, null);
 
       if (editable)
-        altText = arc.getTranslatedString("af_selectInputColor.LAUNCH_PICKER_TIP");
+        altText = arc.getTranslatedString("af_inputColor.LAUNCH_PICKER_TIP");
       else
         altText = "";
     }
@@ -619,7 +619,7 @@
   private static final Object _CHOOSE_COLOR_IDS_KEY = new Object();
 
   private static final String _LAUNCH_PICKER_TIP_KEY =
-    "af_selectInputColor.SELECT_PICKER_ALT";
+    "af_inputColor.SELECT_PICKER_ALT";
 
   // Script for onblur auto-formatting
   private static final String _AUTO_SWATCH_SCRIPT = "_cfsw(this);";
@@ -637,6 +637,6 @@
   private static final Object _CACHED_CHOOSE_ID = new Object();
 
   private static final TrinidadLogger _LOG =
-    TrinidadLogger.createTrinidadLogger(SimpleSelectInputColorRenderer.class);
+    TrinidadLogger.createTrinidadLogger(SimpleInputColorRenderer.class);
 
 }

Copied: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java (from r426855, incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputDateRenderer.java)
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java?p2=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java&p1=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputDateRenderer.java&r1=426855&r2=426857&rev=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectInputDateRenderer.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java Sat Jul 29 19:01:11 2006
@@ -35,7 +35,7 @@
 
 import org.apache.myfaces.trinidad.bean.FacesBean;
 import org.apache.myfaces.trinidad.bean.PropertyKey;
-import org.apache.myfaces.trinidad.component.core.input.CoreSelectInputDate;
+import org.apache.myfaces.trinidad.component.core.input.CoreInputDate;
 import org.apache.myfaces.trinidad.context.RequestContext;
 import org.apache.myfaces.trinidad.event.ReturnEvent;
 import org.apache.myfaces.trinidad.validator.DateTimeRangeValidator;
@@ -52,12 +52,12 @@
 
 /**
  */
-public class SimpleSelectInputDateRenderer
+public class SimpleInputDateRenderer
   extends SimpleSelectInputTextRenderer
 {
-  public SimpleSelectInputDateRenderer()
+  public SimpleInputDateRenderer()
   {
-    super(CoreSelectInputDate.TYPE);
+    super(CoreInputDate.TYPE);
   }
 
   protected void findTypeConstants(FacesBean.Type type)
@@ -420,12 +420,12 @@
 
   protected String getRootStyleClass(FacesBean bean)
   {
-    return "af|selectInputDate";
+    return "af|inputDate";
   }
 
   protected String getContentStyleClass(FacesBean bean)
   {
-    return "af|selectInputDate::content";
+    return "af|inputDate::content";
   }
 
   private String _getChooseId(RenderingContext arc)
@@ -626,12 +626,12 @@
   private static final String _BLUR_PREFIX = "_dfb(this";
   private static final String _FOCUS_PREFIX = "_dff(this";
 
-  // AdfRenderingContext property key for the Map which tracks the
+  // RenderingContext property key for the Map which tracks the
   // active date field for each inlineDatePicker
   private static final Object _ACTIVE_DATE_FIELDS_KEY = new Object();
 
   private static final String _LAUNCH_PICKER_TIP_KEY =
-    "af_selectInputDate.LAUNCH_PICKER_TIP";
+    "af_inputDate.LAUNCH_PICKER_TIP";
 
   // Key for remembering the cached chooseId
   private static final Object _CACHED_CHOOSE_ID = new Object();
@@ -645,6 +645,6 @@
   }
 
   private static final TrinidadLogger _LOG =
-    TrinidadLogger.createTrinidadLogger(SimpleSelectInputDateRenderer.class);
+    TrinidadLogger.createTrinidadLogger(SimpleInputDateRenderer.class);
 
 }

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/style/cache/FileSystemStyleCache.java Sat Jul 29 19:01:11 2006
@@ -1491,12 +1491,12 @@
     _STYLE_KEY_MAP.put("af|panelList::unordered-list",
                  "af|panelList UL");
 
-    _STYLE_KEY_MAP.put("af|selectInputDate::nav-link",
-                 "af|selectInputDate::nav A");
-    _STYLE_KEY_MAP.put("af|selectInputDate::content-link",
-                 "af|selectInputDate::content A");
-    _STYLE_KEY_MAP.put("af|selectInputDate::disabled-link",
-                 "af|selectInputDate::disabled A");
+    _STYLE_KEY_MAP.put("af|inputDate::nav-link",
+                 "af|inputDate::nav A");
+    _STYLE_KEY_MAP.put("af|inputDate::content-link",
+                 "af|inputDate::content A");
+    _STYLE_KEY_MAP.put("af|inputDate::disabled-link",
+                 "af|inputDate::disabled A");
     _STYLE_KEY_MAP.put("af|chooseDate::nav-link",
                  "af|chooseDate::nav A");
     _STYLE_KEY_MAP.put("af|chooseDate::content-link",

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/desktop/BaseDesktopConstants.java
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/desktop/BaseDesktopConstants.java?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/desktop/BaseDesktopConstants.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/desktop/BaseDesktopConstants.java Sat Jul 29 19:01:11 2006
@@ -229,7 +229,7 @@
 
   // ColorField style classes
   public static final String AF_SELECT_INPUT_COLOR_SWATCH_OVERLAY_ICON_STYLE_CLASS =
-    "af|selectInputColor::swatch-overlay";
+    "af|inputColor::swatch-overlay";
 
   // Header style classes
   // if icon attribute is set, this is the style for it.

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/xhtml/XhtmlLafConstants.java
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/xhtml/XhtmlLafConstants.java?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/xhtml/XhtmlLafConstants.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/ui/laf/base/xhtml/XhtmlLafConstants.java Sat Jul 29 19:01:11 2006
@@ -724,19 +724,19 @@
 
   // Calendar styles
   public static final String AF_SELECT_INPUT_DATE_NAV_STYLE_CLASS =
-    "af|selectInputDate::nav";
+    "af|inputDate::nav";
   public static final String AF_SELECT_INPUT_DATE_TITLE_STYLE_CLASS =
-    "af|selectInputDate::title";
+    "af|inputDate::title";
   public static final String AF_SELECT_INPUT_DATE_HEADER_STYLE_CLASS =
-    "af|selectInputDate::header";
+    "af|inputDate::header";
   public static final String AF_SELECT_INPUT_DATE_DISABLED_STYLE_CLASS =
-    "af|selectInputDate::disabled";
+    "af|inputDate::disabled";
   public static final String AF_SELECT_INPUT_DATE_ENABLED_STYLE_CLASS =
-    "af|selectInputDate::enabled";
+    "af|inputDate::enabled";
   public static final String AF_SELECT_INPUT_DATE_SELECTED_STYLE_CLASS =
-    "af|selectInputDate::selected";
+    "af|inputDate::selected";
   public static final String AF_SELECT_INPUT_DATE_CONTENT_STYLE_CLASS =
-    "af|selectInputDate::content";
+    "af|inputDate::content";
 
 
   // Inline calendar styles
@@ -926,7 +926,7 @@
     "af|panelPage::separator-icon";
   // this renders a button that launches the modal date picker.
   public static final String AF_SELECT_INPUT_DATE_LAUNCH_ICON_NAME =
-    "af|selectInputDate::launch-icon";
+    "af|inputDate::launch-icon";
 
   // ProcessIndicator icons
   public static final String AF_PROGRESS_INDICATOR_INDETERMINATE_ICON_NAME =
@@ -981,13 +981,13 @@
   // Defined in BaseDesktopSkin and OracleDesktopSkinExtension
   // not sure under what circumstances the code runs that renders this.
   public static final String AF_SELECT_INPUT_COLOR_LAUNCH_ICON_NAME =
-    "af|selectInputColor::launch-icon";
+    "af|inputColor::launch-icon";
 
   // (selectInput)
   // Doesn't render in pda. Not supported in pda, that's why.
   // Defined in BaseDesktopSkin and OracleDesktopSkinExtension
   public static final String AF_SELECT_INPUT_COLOR_SWATCH_OVERLAY_ICON_NAME =
-    "af|selectInputColor::swatch-overlay-icon";
+    "af|inputColor::swatch-overlay-icon";
 
 
   // checkbox icons
@@ -1131,13 +1131,13 @@
    "af|chooseDate::next-disabled-icon";
 
   public static final String AF_SELECT_INPUT_DATE_PREV_ICON_NAME =
-   "af|selectInputDate::prev-icon";
+   "af|inputDate::prev-icon";
   public static final String AF_SELECT_INPUT_DATE_NEXT_ICON_NAME =
-   "af|selectInputDate::next-icon";
+   "af|inputDate::next-icon";
   public static final String AF_SELECT_INPUT_DATE_PREV_DISABLED_ICON_NAME =
-   "af|selectInputDate::prev-disabled-icon";
+   "af|inputDate::prev-disabled-icon";
   public static final String AF_SELECT_INPUT_DATE_NEXT_DISABLED_ICON_NAME =
-   "af|selectInputDate::next-disabled-icon";
+   "af|inputDate::next-disabled-icon";
 
   /**
    * Constant string appended to various IDs to make another related

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/base-desktop.xss
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/base-desktop.xss?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/base-desktop.xss (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/base-desktop.xss Sat Jul 29 19:01:11 2006
@@ -596,10 +596,10 @@
   <style selector="af|selectBooleanRadio::label">
     <includeStyle name="AFLabel"/>
   </style>
-  <style selector="af|selectInputColor::label">
+  <style selector="af|inputColor::label">
     <includeStyle name="AFLabel"/>
   </style>   
-  <style selector="af|selectInputDate::label">
+  <style selector="af|inputDate::label">
     <includeStyle name="AFLabel"/>
   </style>
   <style selector="af|selectInputText::label">
@@ -639,10 +639,10 @@
   <style selector="af|selectBooleanRadio:disabled::label">
     <includeStyle name="AFLabelDisabled"/>
   </style>
-  <style selector="af|selectInputColor:disabled::label">
+  <style selector="af|inputColor:disabled::label">
     <includeStyle name="AFLabelDisabled"/>
   </style>  
-  <style selector="af|selectInputDate:disabled::label">
+  <style selector="af|inputDate:disabled::label">
     <includeStyle name="AFLabelDisabled"/>
   </style>
   <style selector="af|selectInputText:disabled::label">
@@ -679,10 +679,10 @@
   <style selector="af|selectBooleanRadio::content">
     <includeStyle name="AFFormControlContent"/>
   </style>
-  <style selector="af|selectInputColor::content">
+  <style selector="af|inputColor::content">
     <includeStyle name="AFFormControlContent"/>
   </style>  
-  <style selector="af|selectInputDate::content">
+  <style selector="af|inputDate::content">
     <includeStyle name="AFFormControlContent"/>
   </style>
   <style selector="af|selectInputText::content">
@@ -810,7 +810,7 @@
   <style selector="af|selectBooleanRadio::required-icon-style">
     <includeStyle name="AFRequiredIconStyle"/>
   </style>
-  <style selector="af|selectInputDate::required-icon-style">
+  <style selector="af|inputDate::required-icon-style">
     <includeStyle name="AFRequiredIconStyle"/>
   </style> 
   <style selector="af|selectManyCheckbox::required-icon-style">
@@ -849,7 +849,7 @@
   <style selector="af|selectBooleanRadio::group-icon-style">
     <includeStyle name="AFRequiredGroupIconStyle"/>
   </style>
-  <style selector="af|selectInputDate::group-icon-style">
+  <style selector="af|inputDate::group-icon-style">
     <includeStyle name="AFRequiredGroupIconStyle"/>
   </style> 
   <style selector="af|selectManyCheckbox::group-icon-style">
@@ -994,7 +994,7 @@
   <!-- 
     ColorField styles 
   -->
-  <style selector="af|selectInputColor::swatch-overlay">
+  <style selector="af|inputColor::swatch-overlay">
     <property name="position">relative</property>
     <property name="left">-7px</property>
     <property name="top">5px</property>
@@ -2715,23 +2715,23 @@
   Date Picker Styles.
 -->
 
-  <style selector="af|selectInputDate::nav-link">
+  <style selector="af|inputDate::nav-link">
     <includeStyle name="AFDatePickerNavLink"/>
   </style>
     
-  <style selector="af|selectInputDate::title">
+  <style selector="af|inputDate::title">
     <includeStyle name="AFDatePickerTitle"/>
   </style>
 
-  <style selector="af|selectInputDate::header">
+  <style selector="af|inputDate::header">
     <includeStyle name="AFDatePickerHeader"/>
   </style>
 
-  <style selector="af|selectInputDate::selected">
+  <style selector="af|inputDate::selected">
     <includeStyle name="AFDatePickerSelected"/>
   </style>
 
-  <style selector="af|selectInputDate::content-link">
+  <style selector="af|inputDate::content-link">
     <includeStyle name="AFDatePickerContentLink"/>
   </style>
 
@@ -3671,13 +3671,13 @@
     <property name="text-align">right</property>
   </style>
   
-  <style selector="af|selectInputColor::swatch-overlay">
+  <style selector="af|inputColor::swatch-overlay">
     <property name="position">relative</property>
     <property name="right">-7px</property>
     <property name="top">5px</property>
   </style>
   
-  <style selector="af|selectInputColor::swatch-overlay">
+  <style selector="af|inputColor::swatch-overlay">
     <property name="position">relative</property>
     <property name="right">-7px</property>
     <property name="top">5px</property>
@@ -3999,7 +3999,7 @@
      <property name="border-style">inset</property>
   </style>
 
-  <style selector="af|selectInputDate::content">
+  <style selector="af|inputDate::content">
     <property name="line-height">1.8</property>
   </style>
   

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/oracle-desktop.xss
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/oracle-desktop.xss?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/oracle-desktop.xss (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/adf/styles/oracle-desktop.xss Sat Jul 29 19:01:11 2006
@@ -175,25 +175,25 @@
     DatePicker Styles
   -->
 
-  <style selector="af|selectInputDate::header">
+  <style selector="af|inputDate::header">
     <includeStyle name="AFDarkAccentBackground"/>
   </style>
 
-  <style selector="af|selectInputDate::content">    
+  <style selector="af|inputDate::content">    
     <includeStyle name="AFLightAccentBackground"/>
-    <includeProperty selector="af|selectInputDate::header"
+    <includeProperty selector="af|inputDate::header"
                      propertyName="background-color"
                      localPropertyName="border-color"/>    
     <property name="line-height">1.5</property>
   </style>
 
-  <style selector="af|selectInputDate::selected">
+  <style selector="af|inputDate::selected">
     <includeStyle name="AFVeryDarkAccentBackground"/>
     <includeStyle name="AFSelectedTextForeground"/>
     <property name="padding">2px</property>
   </style>
 
-  <style selector="af|selectInputDate::content-link">
+  <style selector="af|inputDate::content-link">
     <includeStyle name="AFDarkForeground"/>
     <property name="text-decoration">none</property>
   </style>
@@ -1009,13 +1009,13 @@
 <!-- The base derivation for Netscape browsers -->
 <styleSheet browsers="netscape">
 
-  <style selector="af|selectInputDate::disabled">
+  <style selector="af|inputDate::disabled">
     <includeStyle name="AFDefaultFont"/>
     <includeStyle name="AFCenterTextAlign"/>
     <includeStyle name="MediumExtraAccentForeground"/>
   </style>
 
-  <style selector="af|selectInputDate::disabled-link">
+  <style selector="af|inputDate::disabled-link">
     <includeStyle name="AFDefaultFont"/>
     <includeStyle name="AFCenterTextAlign"/>
     <includeStyle name="AFDarkForeground"/>

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/org/apache/myfaces/trinidadinternal/ui/laf/xml/schemas/laf/lafConfig.xsd
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/org/apache/myfaces/trinidadinternal/ui/laf/xml/schemas/laf/lafConfig.xsd?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/org/apache/myfaces/trinidadinternal/ui/laf/xml/schemas/laf/lafConfig.xsd (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/org/apache/myfaces/trinidadinternal/ui/laf/xml/schemas/laf/lafConfig.xsd Sat Jul 29 19:01:11 2006
@@ -548,11 +548,11 @@
             <cabotool:example>
               <html:p>
                 In the following example, the null Icon is used to indicate that
-                the af|selectInputColor::swatch-overlay-icon Icon should not be
+                the af|inputColor::swatch-overlay-icon Icon should not be
                 rendered.
               </html:p>
               <cabotool:sampleCode>
-                &lt;icon name="af|selectInputColor::swatch-overlay-icon"&gt;
+                &lt;icon name="af|inputColor::swatch-overlay-icon"&gt;
                 &lt;null/&gt; &lt;/icon&gt;
               </cabotool:sampleCode>
             </cabotool:example>

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle.xrts Sat Jul 29 19:01:11 2006
@@ -233,23 +233,23 @@
   <resource key="af_chooseDate.CANCEL">Cance&amp;l</resource>
 
   <!--Tooltip on the date picker button that launches the calendar dialog-->
-  <resource key="af_selectInputDate.LAUNCH_PICKER_TIP">Select to access date picker</resource>
+  <resource key="af_inputDate.LAUNCH_PICKER_TIP">Select to access date picker</resource>
 
   <!--Title of ColorPicker Dialog-->
-  <resource key="af_selectInputColor.PICKER_TITLE">Pick a Color</resource>
+  <resource key="af_inputColor.PICKER_TITLE">Pick a Color</resource>
 
   <!--Text for transparent colors-->
   <resource key="af_chooseColor.TRANSPARENT">Transparent</resource>
 
   <!-- Prompt for color field in color picker dialog -->  
-  <resource key="af_selectInputColor.PICKER_PROMPT">Color</resource>
+  <resource key="af_inputColor.PICKER_PROMPT">Color</resource>
 
   <!--Tooltip on the color picker button that launches the color palette dialog-->
-  <resource key="af_selectInputColor.LAUNCH_PICKER_TIP">Select to access color picker</resource>
+  <resource key="af_inputColor.LAUNCH_PICKER_TIP">Select to access color picker</resource>
 
   <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-  <resource key="af_selectInputColor.APPLY">Apply</resource>
-  <resource key="af_selectInputColor.CANCEL">Cancel</resource>
+  <resource key="af_inputColor.APPLY">Apply</resource>
+  <resource key="af_inputColor.CANCEL">Cancel</resource>
   
   <!-- resource for a go button in chooseDate. -->
   <!-- This button is rendered when javascript is not supported, and as a result -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ar.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ar.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ar.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ar.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">إل&amp;غاء</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">اختر هذا الخيار للوصول إلى منتقي التاريخ</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">اختر هذا الخيار للوصول إلى منتقي التاريخ</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">انتقاء لون</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">انتقاء لون</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">شفاف</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">اللون</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">اللون</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">اختر هذا الخيار للوصول إلى منتقي الألوان</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">اختر هذا الخيار للوصول إلى منتقي الألوان</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">تطبيق</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">إلغاء</resource>
+<resource key="af_inputColor.APPLY" dnt="false">تطبيق</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">إلغاء</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_cs.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_cs.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_cs.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_cs.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Z&amp;rušit</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Tlačítko pro přístup k nástroji pro výběr kalendářního data</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Tlačítko pro přístup k nástroji pro výběr kalendářního data</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Vybrat barvu</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Vybrat barvu</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparentní</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Barva</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Barva</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Tuto volbu vyberte pro přístup k nástroji pro výběr barev</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Tuto volbu vyberte pro přístup k nástroji pro výběr barev</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Použít</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Zrušit</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Použít</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Zrušit</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_da.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_da.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_da.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_da.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Annu&amp;llér</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Vælg for at få adgang til datovælger</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Vælg for at få adgang til datovælger</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Vælg en farve</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Vælg en farve</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Gennemsigtig</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Farve</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Farve</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Vælg for at få adgang til farvevælger</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Vælg for at få adgang til farvevælger</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Anvend</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Annullér</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Anvend</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Annullér</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_de.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_de.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_de.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_de.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">A&amp;bbrechen</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Auswählen, um auf Datumsauswahl zuzugreifen</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Auswählen, um auf Datumsauswahl zuzugreifen</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Farbe auswählen</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Farbe auswählen</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparent</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Farbe</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Farbe</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Wählen Sie diese Option, um auf die Farbauswahl zuzugreifen</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Wählen Sie diese Option, um auf die Farbauswahl zuzugreifen</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Anwenden</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Abbrechen</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Anwenden</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Abbrechen</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_el.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_el.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_el.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_el.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Άκ&amp;υρο</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Επιλογή για πρόσβαση στην επιλογή ημερομηνιών</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Επιλογή για πρόσβαση στην επιλογή ημερομηνιών</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Επιλογή χρώματος</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Επιλογή χρώματος</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Διαφανές</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Χρώμα</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Χρώμα</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Επιλογή για πρόσβαση στην επιλογή χρωμάτων</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Επιλογή για πρόσβαση στην επιλογή χρωμάτων</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Εφαρμογή</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Άκυρο</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Εφαρμογή</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Άκυρο</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Cancelar</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de fecha</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de fecha</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Seleccionar Color</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Seleccionar Color</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparente</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Color</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Color</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de color</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de color</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Aplicar</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Cancelar</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Aplicar</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Cancelar</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es_ES.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es_ES.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es_ES.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_es_ES.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Cancelar</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de fecha</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de fecha</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Seleccionar Color</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Seleccionar Color</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparente</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Color</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Color</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de color</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Seleccionar para acceder al selector de color</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Aplicar</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Cancelar</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Aplicar</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Cancelar</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fi.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fi.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fi.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fi.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Peruuta</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Päivän valinta kalenterista</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Päivän valinta kalenterista</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Värin valinta</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Värin valinta</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Läpinäkyvä</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Väri</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Väri</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Käytä värinvalintaa napsauttamalla tätä</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Käytä värinvalintaa napsauttamalla tätä</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Käytä</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Peruuta</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Käytä</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Peruuta</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Annu&amp;ler</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de date</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de date</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Sélectionner une couleur</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Sélectionner une couleur</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparent</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Couleur</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Couleur</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de couleur</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de couleur</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Appliquer</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Annuler</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Appliquer</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Annuler</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr_CA.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr_CA.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr_CA.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_fr_CA.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Annu&amp;ler</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de date</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de date</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Sélectionner une couleur</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Sélectionner une couleur</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparent</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Couleur</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Couleur</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de couleur</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Accéder au sélecteur de couleur</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Appliquer</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Annuler</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Appliquer</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Annuler</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_hu.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_hu.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_hu.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_hu.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Mégse</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Dátumválasztó indítása</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Dátumválasztó indítása</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Szín kiválasztása</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Szín kiválasztása</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Átlátszó</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Szín</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Szín</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">A színkiválasztó megjelenítése</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">A színkiválasztó megjelenítése</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Alkalmaz</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Mégse</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Alkalmaz</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Mégse</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_it.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_it.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_it.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_it.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Annul&amp;la</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Selezionare per accedere alla scelta della data</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Selezionare per accedere alla scelta della data</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Selezionare un colore</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Selezionare un colore</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Trasparente</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Colore</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Colore</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Selezionare per accedere alla scelta del colore</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Selezionare per accedere alla scelta del colore</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Applica</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Annulla</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Applica</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Annulla</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_iw.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_iw.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_iw.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_iw.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;בטל</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">בחר כדי לגשת אל בורר התאריכים</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">בחר כדי לגשת אל בורר התאריכים</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">בחר צבע</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">בחר צבע</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">שקוף</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">צבע</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">צבע</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">בחר כדי לגשת אל בורר הצבעים</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">בחר כדי לגשת אל בורר הצבעים</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">החל</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">ביטול</resource>
+<resource key="af_inputColor.APPLY" dnt="false">החל</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">ביטול</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ja.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ja.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ja.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ja.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">取消(&amp;L)</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">日付ピッカーへアクセスするために選択</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">日付ピッカーへアクセスするために選択</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">色の選択</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">色の選択</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">透明</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">色</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">色</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">カラー・ピッカーへアクセスするために選択</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">カラー・ピッカーへアクセスするために選択</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">適用</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">取消</resource>
+<resource key="af_inputColor.APPLY" dnt="false">適用</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">取消</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ko.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ko.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ko.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_ko.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">취소(&amp;L)</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">날짜 선택기에 액세스하려면 선택</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">날짜 선택기에 액세스하려면 선택</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">색상 선택</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">색상 선택</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">투명하게</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">색상</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">색상</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">색상 선택기에 액세스하려면 선택</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">색상 선택기에 액세스하려면 선택</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">적용</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">취소</resource>
+<resource key="af_inputColor.APPLY" dnt="false">적용</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">취소</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_nl.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_nl.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_nl.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_nl.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Annuleren</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Selecteer voor toegang tot datumkiezer</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Selecteer voor toegang tot datumkiezer</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Kleur kiezen</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Kleur kiezen</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Transparant</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Kleur</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Kleur</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Selecteren voor toegang tot kleurenselectie</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Selecteren voor toegang tot kleurenselectie</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Toepassen</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Annuleren</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Toepassen</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Annuleren</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_no.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_no.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_no.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_no.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">Av&amp;bryt</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Start datovelger</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Start datovelger</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Velg en farge</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Velg en farge</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Gjennomsiktig</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Farge</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Farge</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Start fargevelger</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Start fargevelger</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Bruk</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Avbryt</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Bruk</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Avbryt</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pl.xrts
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pl.xrts?rev=426857&r1=426856&r2=426857&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pl.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pl.xrts Sat Jul 29 19:01:11 2006
@@ -163,18 +163,18 @@
 <!--http://scout.us.oracle.com/appsui/ss_guidelines/specs/keyboard.html#accelerator -->
 <resource key="af_chooseDate.CANCEL" dnt="false">&amp;Anuluj</resource>
 <!--Tooltip on the date picker button that launches the calendar dialog-->
-<resource key="af_selectInputDate.LAUNCH_PICKER_TIP" dnt="false">Proszę wybrać, aby uzyskać dostęp do selektora daty</resource>
+<resource key="af_inputDate.LAUNCH_PICKER_TIP" dnt="false">Proszę wybrać, aby uzyskać dostęp do selektora daty</resource>
 <!--Title of ColorPicker Dialog-->
-<resource key="af_selectInputColor.PICKER_TITLE" dnt="false">Wybór koloru</resource>
+<resource key="af_inputColor.PICKER_TITLE" dnt="false">Wybór koloru</resource>
 <!--Text for transparent colors-->
 <resource key="af_chooseColor.TRANSPARENT" dnt="false">Przezroczysty</resource>
 <!-- Prompt for color field in color picker dialog -->
-<resource key="af_selectInputColor.PICKER_PROMPT" dnt="false">Kolor</resource>
+<resource key="af_inputColor.PICKER_PROMPT" dnt="false">Kolor</resource>
 <!--Tooltip on the color picker button that launches the color palette dialog-->
-<resource key="af_selectInputColor.LAUNCH_PICKER_TIP" dnt="false">Proszę wybrać, aby uzyskać dostęp do selektora kolorów</resource>
+<resource key="af_inputColor.LAUNCH_PICKER_TIP" dnt="false">Proszę wybrać, aby uzyskać dostęp do selektora kolorów</resource>
 <!-- Text on the Apply/Cancel buttons on the selectInputColor dialog -->
-<resource key="af_selectInputColor.APPLY" dnt="false">Zastosuj</resource>
-<resource key="af_selectInputColor.CANCEL" dnt="false">Anuluj</resource>
+<resource key="af_inputColor.APPLY" dnt="false">Zastosuj</resource>
+<resource key="af_inputColor.CANCEL" dnt="false">Anuluj</resource>
 <!-- resource for a go button in chooseDate. -->
 <!-- This button is rendered when javascript is not supported, and as a result -->
 <!-- the user doesn't can't change months/years with only the drop downs -->