Skip to content

Commit 8fe2881

Browse files
misc
1 parent 51c7994 commit 8fe2881

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,18 @@ def _UI_languageSelection(self, owner):
7777
def _UI_fastTranslation(self, owner):
7878
label = tk.Label(
7979
owner, justify="left", anchor="w",
80-
textvariable=self._localization("Fast and inaccurate translation:")
80+
textvariable=self._localization("Fast and inaccurate translation (Google Translate):")
8181
)
8282
label.pack(side="top", fill=tk.X)
8383

84-
self._fastOutputText = tkst.ScrolledText(owner, wrap=tk.WORD)
84+
self._fastOutputText = tkst.ScrolledText(owner, wrap=tk.WORD, foreground="darkgrey")
8585
self._fastOutputText.pack(side="top", fill=tk.BOTH, expand=tk.YES)
8686
return
8787

8888
def _UI_fullTranslation(self, owner):
8989
label = tk.Label(
9090
owner, justify="left", anchor="w",
91-
textvariable=self._localization("Slow and improved translation:")
91+
textvariable=self._localization("Slow and improved translation (ChatGPT/AI):")
9292
)
9393
label.pack(side="top", fill=tk.X)
9494

0 commit comments

Comments
 (0)