BalaKrishnan웃
BalaKrishnan웃

Reputation: 4557

internationalization issue in jquery.i18n.properties-1.0.9.js

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 enter image description here

How to display a text in french like that?

Upvotes: 1

Views: 1441

Answers (1)

Fabrizio Fortino
Fabrizio Fortino

Reputation: 1616

Try to change from tâche to tâche in your FR properties file.

Upvotes: 1

Related Questions