2011-04-12 10:04:01 +02:00
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 12:17:41 +02:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 12:17:41 +02:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-08-05 08:59:46 +00:00
|
|
|
|
2011-11-02 17:31:57 -04:00
|
|
|
from hscommon.trans import install_gettext_trans_under_cocoa
|
|
|
|
install_gettext_trans_under_cocoa()
|
2011-01-18 17:33:33 +01:00
|
|
|
|
2012-01-16 10:30:45 -05:00
|
|
|
from cocoa.inter import PySelectableList, PyColumns, PyTable
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-09-21 16:02:13 -04:00
|
|
|
from inter.details_panel import PyDetailsPanel
|
|
|
|
from inter.directory_outline import PyDirectoryOutline
|
|
|
|
from inter.prioritize_dialog import PyPrioritizeDialog
|
2012-01-16 10:30:45 -05:00
|
|
|
from inter.prioritize_list import PyPrioritizeList
|
2011-09-21 16:02:13 -04:00
|
|
|
from inter.problem_dialog import PyProblemDialog
|
|
|
|
from inter.result_table import PyResultTable
|
|
|
|
from inter.stats_label import PyStatsLabel
|
2012-01-16 10:30:45 -05:00
|
|
|
from inter.app_pe import PyDupeGuru
|
2009-06-01 09:55:11 +00:00
|
|
|
|