function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Angel30Angel30 

"loading " not translated

Hi All,

 I am trying to display loading image using action status when we navigate from one vf page to another.
 We are using custom label "loading message" and use this in our vf page. We have provided different translations for the message as well in Spanish.
when i navigate from one vf page to another vf page it doesnt show the translated value of the loading image.

Below is a snippet

<apex:outputPanel styleClass="popupVidBackground">
                <apex:form id="intro">  
                <apex:actionStatus id="loading" >
                        <apex:facet name="start">
                                <c:LoadingStatusComponent BackColor="#ffffff"
                                                       borderColor="#6B6B6B"
                                                       borderSize="1"
                                                       height="50px"
                                                       width="120px"
                                                       margintop="-25px"
                                                       marginleft="-60px"
                                                       ImageUrl="{!$Resource.saving}"
                                                       Message="{!$Label.LoadingMessage}"/>
                        </apex:facet>
                    </apex:actionStatus>
                    <apex:actionfunction name="loading" status="loading" rerender="intro"/>
                    <body>
                        <p align="center" style="padding-top: 10px; margin: 40px;">                            
                            {!loadIntro}
                        </p>
                    </body> 
                </apex:form>
                </apex:outputPanel>
  <script>
      window.onload = loading();
  </script>              


When i navigate from one vf page to another vf page i can see the message as loading but the translated version of loading is not coming.

Kindly help