#!/usr/bin/python
'''A preferences editing tool'''

import gtk

from entertainerlib.frontend.translation_setup import TranslationSetup
TranslationSetup()

from entertainerlib.utils.preferences_dialog import PreferencesDialog


PreferencesDialog(True)
gtk.main()
