diff options
author | emkael <emkael@tlen.pl> | 2019-06-02 22:23:25 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-06-02 22:23:25 +0200 |
commit | 0e1ec567ea1cfffd69cd43816a6b851735a97f99 (patch) | |
tree | 9c6b0c77c5b01d51f0564a550be51bcbe7290707 /jfr_playoff/gui/tabs.py | |
parent | b53a4f555f8560de419924692b3c9017f4cc949c (diff) |
Translations configuration frame
Diffstat (limited to 'jfr_playoff/gui/tabs.py')
-rw-r--r-- | jfr_playoff/gui/tabs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jfr_playoff/gui/tabs.py b/jfr_playoff/gui/tabs.py index c2c6bbe..2d96ce7 100644 --- a/jfr_playoff/gui/tabs.py +++ b/jfr_playoff/gui/tabs.py @@ -10,6 +10,7 @@ import tkMessageBox as tkmb from .frames import getIntVal from .frames.team import * from .frames.network import * +from .frames.translations import * from ..data import PlayoffData from ..db import PlayoffDB @@ -199,5 +200,10 @@ class TranslationsTab(PlayoffTab): def title(self): return 'TĹ‚umaczenia' + def renderContent(self, container): + self.translationsFrame = TranslationConfigurationFrame( + container, vertical=True) + self.translationsFrame.pack(side=tk.TOP, fill=tk.BOTH, expand=True) + __all__ = ['MainSettingsTab', 'TeamsTab', 'MatchesTab', 'SwissesTab', 'NetworkTab', 'VisualTab', 'StyleTab', 'TranslationsTab'] |