File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,18 +77,18 @@ def _UI_languageSelection(self, owner):
77
77
def _UI_fastTranslation (self , owner ):
78
78
label = tk .Label (
79
79
owner , justify = "left" , anchor = "w" ,
80
- textvariable = self ._localization ("Fast and inaccurate translation:" )
80
+ textvariable = self ._localization ("Fast and inaccurate translation (Google Translate) :" )
81
81
)
82
82
label .pack (side = "top" , fill = tk .X )
83
83
84
- self ._fastOutputText = tkst .ScrolledText (owner , wrap = tk .WORD )
84
+ self ._fastOutputText = tkst .ScrolledText (owner , wrap = tk .WORD , foreground = "darkgrey" )
85
85
self ._fastOutputText .pack (side = "top" , fill = tk .BOTH , expand = tk .YES )
86
86
return
87
87
88
88
def _UI_fullTranslation (self , owner ):
89
89
label = tk .Label (
90
90
owner , justify = "left" , anchor = "w" ,
91
- textvariable = self ._localization ("Slow and improved translation:" )
91
+ textvariable = self ._localization ("Slow and improved translation (ChatGPT/AI) :" )
92
92
)
93
93
label .pack (side = "top" , fill = tk .X )
94
94
You can’t perform that action at this time.
0 commit comments