Quote:
Originally Posted by kartu
thawk
Oh, yes, that's in date format. Forgot to translate "default".
Backslash is a key, not value, so it doesn't have to be localized.
|
But I remember a little "backslash" is displayed at the first time.
The default value is "backslash", but only "default" is map to "/". Isn't the "backslash" display as "backslash" at the first time?
Quote:
Originally Posted by kartu
Yes, atm build tool is windows only. You could manually replace those file though. (ant download => modify => ant dobuild)
|
Ok, I'll try it.
Quote:
Originally Posted by kartu
You are welcome. Are you replacing fonts using mount --bind from prsp.sh?
|
Yes, I use a simple shell script:
Code:
#!/bin/bash
DataDir=/Data/chinese
MemFontDir=$DataDir/FONT
DstFontDir=/opt/sony/ebook/FONT
if [ -d "$MemFontDir" ]; then
mount --bind "$MemFontDir" "$DstFontDir"
fi