tok-ja_JP

Informazioni utente

Informazioni sullo sviluppatore
Nome tok-ja_JP
Utente da Luglio 10, 2009
Numero di componenti aggiuntivi sviluppati 0 componenti aggiuntivi
Media delle valutazioni sui componenti aggiuntivi di questo sviluppatore. Nessun voto

Le mie recensioni

LookOut

Assegnate 3 su 5 stelle

Hi. This add-on is useful. It is necessary to convert it for character-codes other than ASCII.
It is an example for Japanese Shift_JIS.
----before
file.name = tnef_file_munge_fname( attrs[i].values[0], files );
----after
var UConv = Components.classes['@mozilla.org/intl/scriptableunicodeconverter'].getService(Components.interfaces.nsIScriptableUnicodeConverter);
UConv.charset = "Shift_JIS";
file.name = UConv.ConvertToUnicode(tnef_file_munge_fname( attrs[i].values[0], files ));

Questa recensione riguarda una versione precedente (1.2.8) del componente aggiuntivo.