summaryrefslogtreecommitdiff
path: root/jfr_playoff/gui/frames/translations.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2019-06-02 22:23:25 +0200
committeremkael <emkael@tlen.pl>2019-06-02 22:23:25 +0200
commit0e1ec567ea1cfffd69cd43816a6b851735a97f99 (patch)
tree9c6b0c77c5b01d51f0564a550be51bcbe7290707 /jfr_playoff/gui/frames/translations.py
parentb53a4f555f8560de419924692b3c9017f4cc949c (diff)
Translations configuration frame
Diffstat (limited to 'jfr_playoff/gui/frames/translations.py')
-rw-r--r--jfr_playoff/gui/frames/translations.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/jfr_playoff/gui/frames/translations.py b/jfr_playoff/gui/frames/translations.py
new file mode 100644
index 0000000..94af787
--- /dev/null
+++ b/jfr_playoff/gui/frames/translations.py
@@ -0,0 +1,40 @@
+#coding=utf-8
+
+import copy
+
+import tkinter as tk
+from tkinter import ttk
+
+from ..frames import RepeatableFrame, WidgetRepeater, ScrollableFrame
+from ...i18n import PLAYOFF_I18N_DEFAULTS
+
+class TranslationRow(RepeatableFrame):
+ def renderContent(self):
+ self.key = tk.StringVar()
+ (ttk.Entry(self, textvariable=self.key, width=40)).pack(
+ side=tk.LEFT)
+ self.value = tk.StringVar()
+ (ttk.Entry(self, textvariable=self.value, width=80)).pack(
+ side=tk.RIGHT)
+
+ def setValue(self, value):
+ self.key.set(value[0])
+ self.value.set(value[1])
+
+class TranslationConfigurationFrame(ScrollableFrame):
+
+ def setTranslations(self, translations):
+ translations = copy.copy(PLAYOFF_I18N_DEFAULTS)
+ translations.update(translations)
+ values = []
+ for value in translations.iteritems():
+ values.append(value)
+ self.repeater.setValue(values)
+
+ def renderContent(self, container):
+ self.repeater = WidgetRepeater(container, TranslationRow)
+ self.repeater.pack(side=tk.TOP, fill=tk.BOTH, expand=True)
+
+ self.setTranslations({})
+
+__all__ = ['TranslationConfigurationFrame']