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
visualforce_devvisualforce_dev 

Translation

How can I display label/link/button values in different languages depend on user in Visual Force pages.
jwetzlerjwetzler
I believe $ObjectType localizes your label for you:
http://www.salesforce.com/us/developer/docs/pages/Content/pages_variables_global.htm

Also, keep in mind that if you are using inputField or outputField within a pageBlockSection, it will generate the label for you based on the user's locale.
visualforce_devvisualforce_dev
Thanks..