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/08/01 03:33:26 UTC

svn commit: r427429 [2/5] - in /incubator/adffaces/branches/matzew-component-renaming/trinidad: trinidad-api/src/test/java/org/apache/myfaces/trinidad/component/core/nav/ trinidad-build/src/main/resources/META-INF/maven-faces-plugin/components/trinidad...

Copied: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java (from r427402, incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/ProcessTrainRenderer.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/pda/TrainRenderer.java?p2=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java&p1=incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/ProcessTrainRenderer.java&r1=427402&r2=427429&rev=427429&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/ProcessTrainRenderer.java (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java Mon Jul 31 20:33:22 2006
@@ -25,23 +25,23 @@
 
 import org.apache.myfaces.trinidad.bean.FacesBean;
 import org.apache.myfaces.trinidad.component.UIXProcess;
-import org.apache.myfaces.trinidad.component.core.nav.CoreProcessTrain;
+import org.apache.myfaces.trinidad.component.core.nav.CoreTrain;
 import org.apache.myfaces.trinidadinternal.renderkit.RenderingContext;
 import org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.XhtmlConstants;
 import org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.XhtmlRenderer;
 import org.apache.myfaces.trinidadinternal.renderkit.core.xhtml.XhtmlUtils;
 import org.apache.myfaces.trinidadinternal.util.IntegerUtils;
 
-public class ProcessTrainRenderer
+public class TrainRenderer
   extends XhtmlRenderer
 {
 
   /**
    * Constructor.
    */
-  public ProcessTrainRenderer()
+  public TrainRenderer()
   {
-    super(CoreProcessTrain.TYPE);
+    super(CoreTrain.TYPE);
   }
 
   protected void encodeAll(
@@ -114,10 +114,10 @@
   }
   
   static private final String _STEP_TEXT_KEY = 
-    "af_processTrain.STEP";
+    "af_train.STEP";
   static private final String _SINGLE_RANGE_FORMAT_TOTAL_STRING =
-    "af_processTrain.FORMAT_TOTAL";
+    "af_train.FORMAT_TOTAL";
   static private final String _SINGLE_RANGE_FORMAT_NO_TOTAL_STRING =
-    "af_processTrain.FORMAT_NO_TOTAL";
+    "af_train.FORMAT_NO_TOTAL";
 
 }

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -517,21 +517,21 @@
 
   // processTrain styles
    public static final String AF_PROCESS_TRAIN_STYLE_CLASS =
-     "af|processTrain";  
+     "af|train";  
   public static final String AF_PROCESS_TRAIN_ACTIVE_STYLE_CLASS =
-    "af|processTrain::step-active";
+    "af|train::step-active";
   public static final String AF_PROCESS_TRAIN_VISITED_STYLE_CLASS  =
-    "af|processTrain::step-visited";
+    "af|train::step-visited";
   public static final String AF_PROCESS_TRAIN_UNVISITED_STYLE_CLASS =
-    "af|processTrain::step-unvisited";
+    "af|train::step-unvisited";
   public static final String AF_PROCESS_TRAIN_LINK_STYLE_CLASS =
-    "af|processTrain::link";    
+    "af|train::link";    
   public static final String AF_PROCESS_TRAIN_DISABLED_STYLE_CLASS =
-    "af|processTrain::step-disabled";
+    "af|train::step-disabled";
   public static final String AF_PROCESS_TRAIN_SUB_START_STYLE_CLASS =
-    "af|processTrain::sub-start";
+    "af|train::sub-start";
   public static final String TRAIN_SUB_RIGHT_STYLE_CLASS =
-    "af|processTrain::sub-end";
+    "af|train::sub-end";
 
   // HEADER STYLES (panelHeader and messages header)
   public static final String AF_PANEL_HEADER_STYLE_CLASS =

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -2269,20 +2269,20 @@
     Train Styles
   -->
 
-  <style name="af|processTrain"/>
+  <style name="af|train"/>
   
   <style name="AFTrainStation">  
     <includeStyle name="AFDefaultFont"/>
   </style>
 
-  <style selector="af|processTrain::step-active">
+  <style selector="af|train::step-active">
     <includeStyle name="AFTrainStation"/>
     <includeStyle name="AFDarkBorder"/>
     <includeStyle name="AFDarkForeground"/>
     <property name="font-weight">bold</property>
   </style>
 
-  <style selector="af|processTrain::step-visited">
+  <style selector="af|train::step-visited">
     <includeStyle name="AFTrainStation"/>
     <includeStyle name="DarkExtraAccentForeground"/>
     <includeProperty name="MediumExtraAccentBackground"
@@ -2290,11 +2290,11 @@
                      localPropertyName="border-color"/>
   </style>
 
-  <style selector="af|processTrain::visited af|processTrain::link">
+  <style selector="af|train::visited af|train::link">
     <includeStyle name="DarkExtraAccentForeground"/>
   </style>
 
-  <style selector="af|processTrain::step-disabled">
+  <style selector="af|train::step-disabled">
     <includeStyle name="AFTrainStation"/>
     <includeStyle name="MediumExtraAccentForeground"/>
     <includeProperty name="LightExtraAccentBackground"
@@ -2302,25 +2302,25 @@
                      localPropertyName="border-color"/>
   </style>
   
-  <style selector="af|processTrain::step-unvisited">
+  <style selector="af|train::step-unvisited">
     <includeStyle name="AFTrainStation"/>
     <includeStyle name="AFDarkBorder"/>
     <includeStyle name="AFDarkForeground"/>
   </style>
 
-  <style selector="af|processTrain::step-visited af|processTrain::link">
+  <style selector="af|train::step-visited af|train::link">
     <includeStyle name="AFDarkForeground"/>
   </style>
 
   
-  <style selector="af|processTrain::sub-start">
+  <style selector="af|train::sub-start">
     <includeStyle name="AFDarkBorder"/>
     <property name="border-style">solid</property>
     <property name="border-width">2px 2px 0px 0px</property>
     <property name="padding">0pt</property>
   </style>
 
-  <style selector="af|processTrain::sub-end">
+  <style selector="af|train::sub-end">
     <includeStyle name="AFDarkBorder"/>
     <property name="border-style">solid</property>
     <property name="border-width">2px 0px 0px 2px</property>

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -789,12 +789,12 @@
   </style>
 
   <!-- Reset foreground for visisted stations: use dark accent -->
-  <style selector="af|processTrain::step-visited">
+  <style selector="af|train::step-visited">
     <includeStyle name="AFDarkAccentForeground"/>
   </style>
 
   <!-- Reset foreground for visisted links: use link foreground -->
-  <style selector="af|processTrain::step-visited af|processTrain::link">
+  <style selector="af|train::step-visited af|train::link">
     <includeStyle name="AFLinkForeground"/>
   </style>
 

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/renderertype-localname.properties
URL: http://svn.apache.org/viewvc/incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/renderertype-localname.properties?rev=427429&r1=427428&r2=427429&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/renderertype-localname.properties (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/resources/META-INF/renderertype-localname.properties Mon Jul 31 20:33:22 2006
@@ -62,7 +62,7 @@
 org.apache.myfaces.trinidad.Panel|org.apache.myfaces.trinidad.Tip=tip
 org.apache.myfaces.trinidad.Poll|org.apache.myfaces.trinidad.Poll=poll
 org.apache.myfaces.trinidad.Process|org.apache.myfaces.trinidad.ChoiceBar=processChoiceBar
-org.apache.myfaces.trinidad.Process|org.apache.myfaces.trinidad.Train=processTrain
+org.apache.myfaces.trinidad.Process|org.apache.myfaces.trinidad.Train=train
 org.apache.myfaces.trinidad.Progress|org.apache.myfaces.trinidad.Indicator=processing
 org.apache.myfaces.trinidad.ResetButton|org.apache.myfaces.trinidad.ResetButton=resetButton
 org.apache.myfaces.trinidad.SelectBoolean|org.apache.myfaces.trinidad.Checkbox=selectBooleanCheckbox

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -166,8 +166,8 @@
   <!--{1} -> the current step (integer)-->
   <!--{2} -> the total number of steps (integer)-->
   <!-- pda's processTrain's format  -->
-  <resource key="af_processTrain.FORMAT_TOTAL">{0} {1} of {2}</resource>
-  <resource key="af_processTrain.FORMAT_NO_TOTAL">{0} {1}</resource>
+  <resource key="af_train.FORMAT_TOTAL">{0} {1} of {2}</resource>
+  <resource key="af_train.FORMAT_NO_TOTAL">{0} {1}</resource>
   <resource key="af_singleStepButtonBar.FORMAT_TOTAL">{0} {1} of {2}</resource>
   <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL">{0} {1}</resource>
   
@@ -184,7 +184,7 @@
 
 
   <!--e.g., Step 1 of 5 -->
-  <resource key="af_processTrain.STEP">Step</resource>
+  <resource key="af_train.STEP">Step</resource>
   <resource key="af_singleStepButtonBar.STEP">Step</resource>  
 
   
@@ -351,17 +351,17 @@
   <!--In all of the following three: {0} - the name of the step-->
   <!--alternate text for a visited-step image in a Train-->
   <!-- eg: Billing Information: Previously visited step -->
-  <resource key="af_processTrain.VISITED_TIP">{0}: Previously visited step</resource>
+  <resource key="af_train.VISITED_TIP">{0}: Previously visited step</resource>
   <!--alternate text for the current-step image in a Train-->
   <!-- eg: Billing Information: Active step -->
-  <resource key="af_processTrain.ACTIVE_TIP">{0}: Active step</resource>
+  <resource key="af_train.ACTIVE_TIP">{0}: Active step</resource>
   <!--alternate text for the next-step images in a Train-->
   <!-- eg: Billing Information: Next step -->
-  <resource key="af_processTrain.NEXT_TIP">{0}: Next step</resource>
+  <resource key="af_train.NEXT_TIP">{0}: Next step</resource>
   <!-- text for the "More" text in a Train-->
-  <resource key="af_processTrain.MORE">More</resource>
+  <resource key="af_train.MORE">More</resource>
   <!--text for the "Previous" text in a Train-->
-  <resource key="af_processTrain.PREVIOUS">Previous</resource>
+  <resource key="af_train.PREVIOUS">Previous</resource>
 
   <!--TabBar. For oracle.desktop skin -->
   <!--alternate text for the currently selected TabBar image-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} من {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} من {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} من {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} من {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">الخطوة</resource>
+<resource key="af_train.STEP" dnt="false">الخطوة</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">الخطوة</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: خطوة تمت زيارتها مسبقًا</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: خطوة تمت زيارتها مسبقًا</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: الخطوة النشطة</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: الخطوة النشطة</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: الخطوة التالية</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: الخطوة التالية</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">المزيد</resource>
+<resource key="af_train.MORE" dnt="false">المزيد</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">السابق</resource>
+<resource key="af_train.PREVIOUS" dnt="false">السابق</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} z {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Krok</resource>
+<resource key="af_train.STEP" dnt="false">Krok</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Krok</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Předchozí navštívený krok</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Předchozí navštívený krok</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktivní krok</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktivní krok</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Další krok</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Další krok</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Více</resource>
+<resource key="af_train.MORE" dnt="false">Více</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Předchozí</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Předchozí</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} af {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} af {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} af {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} af {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Trin</resource>
+<resource key="af_train.STEP" dnt="false">Trin</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Trin</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Tidligere besøgt trin</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Tidligere besøgt trin</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktivt trin</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktivt trin</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Næste trin</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Næste trin</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Flere</resource>
+<resource key="af_train.MORE" dnt="false">Flere</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Forrige</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Forrige</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} von {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} von {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} von {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0} - {1} von {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0} - {1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Schritt</resource>
+<resource key="af_train.STEP" dnt="false">Schritt</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Schritt</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Zuvor aufgerufener Schritt</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Zuvor aufgerufener Schritt</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktiver Schritt</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktiver Schritt</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Nächster Schritt</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Nächster Schritt</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Weitere</resource>
+<resource key="af_train.MORE" dnt="false">Weitere</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Vorheriger</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Vorheriger</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">&quot;{0}&quot; &quot;{1}&quot; από &quot;{2}&quot;</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">&quot;{0}&quot; &quot;{1}&quot; από &quot;{2}&quot;</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">&quot;{0}&quot; &quot;{1}&quot; από &quot;{2}&quot;</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0} - {1} από {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Βήμα</resource>
+<resource key="af_train.STEP" dnt="false">Βήμα</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Βήμα</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Ήδη επιλεγμένο βήμα</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Ήδη επιλεγμένο βήμα</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Ενεργό βήμα</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Ενεργό βήμα</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Επόμενο βήμα</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Επόμενο βήμα</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Περισσότερα</resource>
+<resource key="af_train.MORE" dnt="false">Περισσότερα</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Προηγούμενο</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Προηγούμενο</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} de {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Paso</resource>
+<resource key="af_train.STEP" dnt="false">Paso</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Paso</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Paso anterior</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Paso anterior</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Paso activo</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Paso activo</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Siguiente paso</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Siguiente paso</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Más</resource>
+<resource key="af_train.MORE" dnt="false">Más</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Anterior</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Anterior</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} de {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Paso</resource>
+<resource key="af_train.STEP" dnt="false">Paso</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Paso</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Paso anterior</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Paso anterior</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Paso activo</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Paso activo</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Siguiente paso</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Siguiente paso</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Más</resource>
+<resource key="af_train.MORE" dnt="false">Más</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Anterior</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Anterior</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} / {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} / {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} / {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} / {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Vaihe</resource>
+<resource key="af_train.STEP" dnt="false">Vaihe</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Vaihe</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Aiemmin suoritettu vaihe</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Aiemmin suoritettu vaihe</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktiivinen vaihe</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktiivinen vaihe</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Seuraava vaihe</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Seuraava vaihe</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Lisää</resource>
+<resource key="af_train.MORE" dnt="false">Lisää</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Edellinen</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Edellinen</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} sur {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Etape</resource>
+<resource key="af_train.STEP" dnt="false">Etape</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Etape</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0} : étape précédemment visitée</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0} : étape précédemment visitée</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0} : étape active</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0} : étape active</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0} : étape suivante</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0} : étape suivante</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Plus</resource>
+<resource key="af_train.MORE" dnt="false">Plus</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Précédent</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Précédent</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} sur {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} sur {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Etape</resource>
+<resource key="af_train.STEP" dnt="false">Etape</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Etape</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0} : étape précédemment visitée</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0} : étape précédemment visitée</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0} : étape active</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0} : étape active</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0} : étape suivante</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0} : étape suivante</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Plus</resource>
+<resource key="af_train.MORE" dnt="false">Plus</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Précédent</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Précédent</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1}/{2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Lépés:</resource>
+<resource key="af_train.STEP" dnt="false">Lépés:</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Lépés:</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Előzőleg meglátogatott lépés</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Előzőleg meglátogatott lépés</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktív lépés</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktív lépés</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Következő lépés</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Következő lépés</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">További</resource>
+<resource key="af_train.MORE" dnt="false">További</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Előző</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Előző</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} di {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} di {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} di {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} di {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Passo</resource>
+<resource key="af_train.STEP" dnt="false">Passo</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Passo</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: passo precedentemente visitato</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: passo precedentemente visitato</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: passo attivo</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: passo attivo</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: passo successivo</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: passo successivo</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Altro</resource>
+<resource key="af_train.MORE" dnt="false">Altro</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Precedente</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Precedente</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} מתוך {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} מתוך {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} מתוך {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} מתוך {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">שלב</resource>
+<resource key="af_train.STEP" dnt="false">שלב</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">שלב</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: שלב שביקרו בו קודם</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: שלב שביקרו בו קודם</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: שלב פעיל</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: שלב פעיל</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: השלב הבא</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: השלב הבא</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">אפשרויות נוספות</resource>
+<resource key="af_train.MORE" dnt="false">אפשרויות נוספות</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">הקודם</resource>
+<resource key="af_train.PREVIOUS" dnt="false">הקודם</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{2}の{0} {1}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{2}の{0} {1}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{2}の{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{2}の{0}-{1}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">ステップ</resource>
+<resource key="af_train.STEP" dnt="false">ステップ</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">ステップ</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: 以前に行ったステップです。</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: 以前に行ったステップです。</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: 実行中のステップです</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: 実行中のステップです</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: 次のステップです。</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: 次のステップです。</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">追加</resource>
+<resource key="af_train.MORE" dnt="false">追加</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">前へ</resource>
+<resource key="af_train.PREVIOUS" dnt="false">前へ</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1}/{2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1}/{2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">단계</resource>
+<resource key="af_train.STEP" dnt="false">단계</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">단계</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: 이전에 방문한 단계</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: 이전에 방문한 단계</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: 활성 단계</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: 활성 단계</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: 다음 단계</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: 다음 단계</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">추가</resource>
+<resource key="af_train.MORE" dnt="false">추가</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">이전</resource>
+<resource key="af_train.PREVIOUS" dnt="false">이전</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} van {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} van {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} van {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} van {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1} </resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Stap</resource>
+<resource key="af_train.STEP" dnt="false">Stap</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Stap</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: eerder bezochte stap</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: eerder bezochte stap</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: actieve stap</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: actieve stap</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: volgende stap</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: volgende stap</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Meer</resource>
+<resource key="af_train.MORE" dnt="false">Meer</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Vorige</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Vorige</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} av {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} av {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} av {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} av {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Trinn</resource>
+<resource key="af_train.STEP" dnt="false">Trinn</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Trinn</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Tidligere besøkt trinn</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Tidligere besøkt trinn</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktivt trinn</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktivt trinn</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Neste trinn</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Neste trinn</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Mer</resource>
+<resource key="af_train.MORE" dnt="false">Mer</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Forrige</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Forrige</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

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=427429&r1=427428&r2=427429&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 Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} z {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} z {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Etap</resource>
+<resource key="af_train.STEP" dnt="false">Etap</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Etap</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Poprzednio odwiedzony etap</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Poprzednio odwiedzony etap</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Aktywny etap</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Aktywny etap</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Następny etap</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Następny etap</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Więcej</resource>
+<resource key="af_train.MORE" dnt="false">Więcej</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Poprzedni</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Poprzedni</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt.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_pt.xrts?rev=427429&r1=427428&r2=427429&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt.xrts Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} de {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Passo</resource>
+<resource key="af_train.STEP" dnt="false">Passo</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Passo</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Passo visitado anteriormente</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Passo visitado anteriormente</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Passo activo</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Passo activo</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Passo seguinte</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Passo seguinte</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Mais</resource>
+<resource key="af_train.MORE" dnt="false">Mais</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Anterior</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Anterior</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->

Modified: incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt_BR.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_pt_BR.xrts?rev=427429&r1=427428&r2=427429&view=diff
==============================================================================
--- incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt_BR.xrts (original)
+++ incubator/adffaces/branches/matzew-component-renaming/trinidad/trinidad-impl/src/main/xrts/org/apache/myfaces/trinidadinternal/renderkit/core/resource/CoreBundle_pt_BR.xrts Mon Jul 31 20:33:22 2006
@@ -112,8 +112,8 @@
 <!--{1} -> the current step (integer)-->
 <!--{2} -> the total number of steps (integer)-->
 <!-- pda's processTrain's format  -->
-<resource key="af_processTrain.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
-<resource key="af_processTrain.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
+<resource key="af_train.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
+<resource key="af_train.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_TOTAL" dnt="false">{0} {1} de {2}</resource>
 <resource key="af_singleStepButtonBar.FORMAT_NO_TOTAL" dnt="false">{0} {1}</resource>
 <!--navigation bar format mask for the range string displayed in-->
@@ -127,7 +127,7 @@
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_TOTAL" dnt="false">{0}-{1} de {2}</resource>
 <resource key="af_table.SELECT_RANGE_CHOICE_FORMAT_NO_TOTAL" dnt="false">{0}-{1}</resource>
 <!--e.g., Step 1 of 5 -->
-<resource key="af_processTrain.STEP" dnt="false">Etapa</resource>
+<resource key="af_train.STEP" dnt="false">Etapa</resource>
 <resource key="af_singleStepButtonBar.STEP" dnt="false">Etapa</resource>
 <!-- Text for the key to the "required" icon-->
 <!-- For example, the user will see a required icon and text next to it -->
@@ -264,17 +264,17 @@
 <!--In all of the following three: {0} - the name of the step-->
 <!--alternate text for a visited-step image in a Train-->
 <!-- eg: Billing Information: Previously visited step -->
-<resource key="af_processTrain.VISITED_TIP" dnt="false">{0}: Etapa visitada anteriormente</resource>
+<resource key="af_train.VISITED_TIP" dnt="false">{0}: Etapa visitada anteriormente</resource>
 <!--alternate text for the current-step image in a Train-->
 <!-- eg: Billing Information: Active step -->
-<resource key="af_processTrain.ACTIVE_TIP" dnt="false">{0}: Etapa ativa</resource>
+<resource key="af_train.ACTIVE_TIP" dnt="false">{0}: Etapa ativa</resource>
 <!--alternate text for the next-step images in a Train-->
 <!-- eg: Billing Information: Next step -->
-<resource key="af_processTrain.NEXT_TIP" dnt="false">{0}: Próxima etapa</resource>
+<resource key="af_train.NEXT_TIP" dnt="false">{0}: Próxima etapa</resource>
 <!-- text for the "More" text in a Train-->
-<resource key="af_processTrain.MORE" dnt="false">Mais</resource>
+<resource key="af_train.MORE" dnt="false">Mais</resource>
 <!--text for the "Previous" text in a Train-->
-<resource key="af_processTrain.PREVIOUS" dnt="false">Anterior</resource>
+<resource key="af_train.PREVIOUS" dnt="false">Anterior</resource>
 <!--TabBar. For oracle.desktop skin -->
 <!--alternate text for the currently selected TabBar image-->
 <!--{0} - the tab name. eg: Electronics: Currently selected tab-->