Skip to content

Commit

Permalink
Merge pull request YJesus#4 from daichifukui/daichifukui/translation
Browse files Browse the repository at this point in the history
Translate French texts into English
  • Loading branch information
patrick-g2 authored Jun 11, 2022
2 parents 8d2724a + b619f30 commit cef721c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unhideGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@ def RunCmd_2() :
OutputMsg = Text(Line1)
OutputMsg.grid(row = 0, column = 0, sticky = 'nsew')

Outbutton = Button(Line2, text="Fermer", command = delOutput)
Outbutton = Button(Line2, text="Close", command = delOutput)
Outbutton.grid(row = 1, column = 0, sticky = 'nw')

Clearbutton = Button(Line2, text="Effacer", command = lambda OutputMsg = OutputMsg : OutputMsg.delete(1.0, END))
Clearbutton = Button(Line2, text="Clear", command = lambda OutputMsg = OutputMsg : OutputMsg.delete(1.0, END))
Clearbutton.grid(row = 1, column = 1, sticky = 'nw')

S = Scrollbar(Line1)
Expand All @@ -300,7 +300,7 @@ def RunCmd_2() :

S.config(command = OutputMsg.yview)
OutputMsg.config(yscrollcommand = S.set)
OutputMsg.insert(END, 'Bientôt la sortie\n\n')
OutputMsg.insert(END, 'Coming soon\n\n')
OutputWindow.update()

p = subprocess.Popen(UnhCommand, universal_newlines = True, bufsize = 1 , stdout = subprocess.PIPE)
Expand Down

0 comments on commit cef721c

Please sign in to comment.