I encounter the same problem.

After a quick look to the code of ImportTiddlersPlugin.
Currently, the convertUTF8ToUnicode() is deactivate only for TW version 
2.5.2

> if (version.major+version.minor*.1+version.revision*.01!=2.52) 
> txt=convertUTF8ToUnicode(txt);
>
I change it for all version starting from 2.5.2 :

> if (version.major+version.minor*.1+version.revision*.01 < 2.52) 
> txt=convertUTF8ToUnicode(txt);
>

After that, I import all my tiddlers without Chinese characters.

Best regards, 


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to