Skip to content
This repository has been archived by the owner on Aug 8, 2021. It is now read-only.

Commit

Permalink
- Fixed version information on Turkish (#5)
Browse files Browse the repository at this point in the history
- Made Turkish and English version's design same (#6)
  • Loading branch information
ygz213 committed Jul 25, 2021
1 parent b664b0f commit 187d7d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class main_menu_class():
def __init__(self):
self.main_menu = Tk()
self.main_menu.title('Real-file.extnsn (R-F.E v3.3)')
self.main_menu.title('Real-file.extnsn (R-F.E v3.4)')
self.main_menu['bg'] = '#DEDEDE'
try:
self.main_menu.wm_iconbitmap('icons/icon.ico')
Expand Down Expand Up @@ -57,7 +57,7 @@ def scanner():
bg = '#758E87',
activebackground = '#576863',
relief = 'flat',
command = lambda: scanner()).pack(pady = 14)
command = lambda: scanner()).pack()

####### (License informations)
Label(text = ' • Real-file.extnsn is a free software under the MIT License and uses filetype module under the ', bg = '#DEDEDE').pack(side = 'left')
Expand Down
2 changes: 1 addition & 1 deletion app/main_turkish.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ana_menü_sınıfı():
def __init__(self):
self.ana_menü = Tk()
self.ana_menü.title('Real-file.extnsn (R-F.E v3.2)')
self.ana_menü.title('Real-file.extnsn (R-F.E v3.4)')
self.ana_menü['bg'] = '#DEDEDE'
try:
self.ana_menü.wm_iconbitmap('icons/icon.ico')
Expand Down

0 comments on commit 187d7d6

Please sign in to comment.