Reputation: 4557
I am using the jquery.i18n.properties-1.0.9.js for internationalization. In the fr culture file i have a entity
TaskString = tâche
in my html i have a code like this. j
$.i18n.properties( {
name: 'Strings',
path: 'bundle/',
mode: 'both',
language: 'fr',
} );
$( document ).ready( function ()
{
$( '#Div1' ).html( TaskString );
} );
what i need is want to display the "task" in french like 'tâche'
but it displaying like this
How to display a text in french like that?
Upvotes: 1
Views: 1441
Reputation: 1616
Try to change from tâche to tâche
in your FR properties file.
Upvotes: 1