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
sagarrrrsagarrrr 

Create a VF page to translate the Custom Label text as per the language selected on the page.

Create a VF page to translate the Custom Label text as per the language selected on the page.
plz help me 
Prady01Prady01
hi, For this there is language attribute in <apex:page> tag if you change this you can change the language of the VF page.

The language used to display labels that have associated translations in Salesforce. This value overrides the language of the user viewing the page. Possible values for this attribute include any language keys for languages supported by Salesforce, for example, "en" or "en-US".

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_page.htm

Hope this helps!
Prady01