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
rmehrmeh 

how to display text in French language for outputLabel

hi Friends,

 i have n output label in which i need to show text scripted in French. i have tried changing the page language and also the user language, but it changes everything that is rendered outside my page.

Any help would be greatly appreciated.

 

example: an output label displaying " interêt" is not getting the desired text.

bmabma

Can you give an example on how you use outputLabel?

 

I didn't get the issue you are mentioning when I tried to use outputLabel in this way:

 

<apex:outputLabel value="interêt"/>

 

 

rmehrmeh

when i am using the tag as

<apex:outputLabel value="interêt "/>

i want the "ê" as it is... but when i am saving my page, it converts the "ê" in some form of encrypted language.

 

and the output of my page is shown as:

 

"intert"... dropping the "ê"

bmabma

What's the encoding set on your browser? I tried the code in several languages, but I wasn't able to see the ê been dropped.

 

Another way is to try the using html code to display the ê.

<apex:outputLabel value="inter&#234;t " escape="false"/>