This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Pavel.Denisow
Recipients Pavel.Denisow, ronaldoussoren
Date 2010-06-08.11:34:29
SpamBayes Score 0.0031309733
Marked as misclassified No
Message-id <1275996872.25.0.17428013193.issue8938@psf.upfronthosting.co.za>
In-reply-to
Content
We have a problem with using native Mac OS dialogs (Save As..., Load) on Russian Mac:
Dialogs are not translated even with file-translation. See attached screenshots.
Same code in Linux works perfect. C++ QT project in Mac has translation in native dialogs.
Test project on python and PyQT contains not-translated dialogs.
For tk and EasyDialogs result is the same - not translated.

Mac OS: 10.5.2, Russian locale.
Python: 2.5.1


PyQt test project
----------------------------------------
from PyQt4 import QtGui, QtCore


app = QtGui.QApplication(sys.argv)

QtGui.QFileDialog().getSaveFileName()
QtGui.QFileDialog().getOpenFileName()

sys.exit(app.exec_())
----------------------------------------




tk test project
----------------------------------------
from tkCommonDialog import Dialog


class OpenDialog(Dialog):
    command = "tk_getOpenFile"
class SaveDialog(Dialog):
    command = "tk_getSaveFile"


OpenDialog().show()
SaveDialog().show()
----------------------------------------



EasyDialogs test project
----------------------------------------
import EasyDialogs

EasyDialogs.AskFileForSave()
EasyDialogs.AskFileForOpen()
----------------------------------------
History
Date User Action Args
2010-06-08 11:34:33Pavel.Denisowsetrecipients: + Pavel.Denisow, ronaldoussoren
2010-06-08 11:34:32Pavel.Denisowsetmessageid: <1275996872.25.0.17428013193.issue8938@psf.upfronthosting.co.za>
2010-06-08 11:34:30Pavel.Denisowlinkissue8938 messages
2010-06-08 11:34:29Pavel.Denisowcreate