Hi all,
I notice while working with MP3tag in Wine under OS X that filename having special characters(i.e. é, ù, etc.) are not shown properly in MP3tag when running under Wine using the installation downloaded from this site.
The reason is the different encoding and to fix the issue I have change the wine starting script here:
/Applications/Mp3tag.app/Contents/MacOS/startwine
and change the last lines by adding LANG=en_US.UTF-8
here how the lines are appearing now:
if [ "$(defaults read "$BUNDLERESOURCEPATH/../Info" WineProgramArguments)" != "" ]; then
LANG=en_US.UTF-8 "$WINEUSRPATH/bin/wine" "$BIN_FILE" $(defaults read "$BUNDLERESOURCEPATH/../Info" WineProgramArguments)
else
LANG=en_US.UTF-8 "$WINEUSRPATH/bin/wine" "$BIN_FILE"
fi
After this change the accented characters are correctly shown and written to file system.
Regards.
Alberto