diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 0f8ea06..bc16aa9 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,15 +4,20 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
@@ -30,7 +35,7 @@
@@ -51,27 +56,28 @@
- {
- "keyToString": {
- "ASKED_ADD_EXTERNAL_FILES": "true",
- "Python.INSTALL.executor": "Run",
- "Python.install.executor": "Run",
- "Python.main.executor": "Run",
- "Python.messagebox.executor": "Run",
- "Python.start_wg.executor": "Run",
- "Python.testtheme.executor": "Run",
- "Python.wg_func.executor": "Run",
- "Python.wg_main.executor": "Run",
- "RunOnceActivity.ShowReadmeOnStart": "true",
- "Shell Script.install.executor": "Run",
- "Shell Script.run_as.executor": "Run",
- "git-widget-placeholder": "main",
- "last_opened_file_path": "/home/punix/Pyapps/wire-py",
- "settings.editor.selected.configurable": "reference.settingsdialog.IDE.editor.colors"
+
+}]]>
+
@@ -135,7 +141,7 @@
-
+
@@ -148,30 +154,6 @@
1723279982210
-
-
- 1724576599289
-
-
-
- 1724576599289
-
-
-
- 1724593165879
-
-
-
- 1724593165879
-
-
-
- 1724610514657
-
-
-
- 1724610514658
-
1724778892233
@@ -540,18 +522,37 @@
1729938941027
-
+
+
+ 1731097309468
+
+
+
+ 1731097309468
+
+
+
+ 1731097969343
+
+
+
+ 1731097969344
+
+
+
+ 1731098372497
+
+
+
+ 1731098372497
+
+
-
-
@@ -606,7 +601,8 @@
-
+
+
diff --git a/Changelog b/Changelog
index 4b9b8b6..2130019 100644
--- a/Changelog
+++ b/Changelog
@@ -3,11 +3,17 @@ My standard System: Linux Mint 22 Cinnamon
## [Unreleased]
- - os import in wg_func replaced by other methods
+ - os import in cls_mth_fc.py replaced by other methods
- If Wire-Py already runs, prevent further start
- for loops with lists replaced by List Comprehensions
- Update search after start of Wire-Py
+ ### Added
+08-11-2024
+
+- Preparation for language translation part 1
+- separate folder for general icons
+- install edit for new dir lx-icons
### Added
08-11-2024
diff --git a/wg_func.py b/cls_mth_fc.py
similarity index 81%
rename from wg_func.py
rename to cls_mth_fc.py
index b435f82..f3b9a73 100755
--- a/wg_func.py
+++ b/cls_mth_fc.py
@@ -6,25 +6,31 @@ import subprocess
import time
import tkinter as tk
import zipfile
+import gettext
+import locale
from datetime import datetime
from pathlib import Path
from subprocess import check_call
from tkinter import ttk
import requests
-
+APP = 'cls_mth_fc'
+LOCALE_DIR = "/usr/share/locale/"
+locale.bindtextdomain(APP, LOCALE_DIR)
+gettext.bindtextdomain(APP, LOCALE_DIR)
+gettext.textdomain(APP)
+_ = gettext.gettext
''' 1 = 1. Year, 09 = Month of the Year, 2924 = Day and Year of the Year '''
version = 'v. 1.11.0824'
path_to_file2 = Path('/etc/wire_py/settings.conf')
_u = Path.read_text(Path('/tmp/_u'))
-UPDATE_API_URL = 'https://git.ilunix.de/api/v1/repos/punix/Wire-Py/releases'
-class WirePyUpdate:
+class GiteaUpdate:
@staticmethod
- def api_down():
+ def api_down(UPDATE_API_URL):
try:
response = requests.get(UPDATE_API_URL)
response_dict = response.json()
@@ -35,44 +41,43 @@ class WirePyUpdate:
if version[3:] != response_dict['tag_name']:
return response_dict['tag_name']
else:
- return 'No Updates'
+ return _('No Updates')
else:
- return 'False'
+ return _('False')
except requests.exceptions.ConnectionError:
return 'No Internet Connection!'
@staticmethod
- def download():
+ def download(URLD):
try:
- url = f'https://git.ilunix.de/punix/Wire-Py/archive/{res}.zip'
- to_down = 'wget -qP ' + str(_u) + ' ' + url
+ to_down = 'wget -qP ' + str(_u) + ' ' + URLD
result = subprocess.call(to_down, shell=True)
if result == 0:
shutil.chown(str(_u) + f'/{res}.zip', 1000, 1000)
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_vpn.png'
- wt = 'Download Successful'
- msg_t = 'Your zip file is in home directory'
+ wt = _('Download Successful')
+ msg_t = _('Your zip file is in home directory')
msg_window(iw, ii, wt, msg_t)
else:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/error.png'
+ iw = r'/usr/share/icons/lx-icons/64/error.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Download error'
- msg_t = 'Download failed! Please try again'
+ wt = _('Download error')
+ msg_t = _('Download failed! Please try again')
msg_window(iw, ii, wt, msg_t)
except subprocess.CalledProcessError:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/error.png'
- ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Download error'
- msg_t = 'Download failed! No internet connection!'
+ iw = r'/usr/share/icons/lx-icons/64/error.png'
+ ii = r'/usr/share/icons/wg-icons/48/wg_msg.png'
+ wt = _('Download error')
+ msg_t = _('Download failed! No internet connection!')
msg_window(iw, ii, wt, msg_t)
-res = WirePyUpdate.api_down()
+res = GiteaUpdate.api_down('https://git.ilunix.de/api/v1/repos/punix/Wire-Py/releases')
@@ -80,7 +85,7 @@ def msg_window(img_w, img_i, w_title, w_txt, txt2=None, com=None):
"""
Function for different message windows for the user. with 4 arguments to be passed.
To create messages with your own images, icons, and titles. As an alternative to Python Messagebox.
- Paths to images must be specified: r'/usr/share/icons/wp-icons/64/info.png'
+ Paths to images must be specified: r'/usr/share/icons/lx-icons/64/info.png'
img_w = Image for Tk Window
img_i = Image for Icon
w_title = Windows Title
@@ -228,28 +233,28 @@ class Tunnel:
if len(zf.namelist()) != 0:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_vpn.png'
- wt = 'Export Successful'
- msg_t = 'Your zip file is in home directory'
+ wt = _('Export Successful')
+ msg_t = _('Your zip file is in home directory')
msg_window(iw, ii, wt, msg_t)
else:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/error.png'
+ iw = r'/usr/share/icons/lx-icons/64/error.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Export error'
- msg_t = 'Export failed! Please try again'
+ wt = _('Export error')
+ msg_t = _('Export failed! Please try again')
msg_window(iw, ii, wt, msg_t)
else:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Select tunnel'
- msg_t = 'Please first import tunnel.'
+ wt = _('Select tunnel')
+ msg_t = _('Please first import tunnel.')
msg_window(iw, ii, wt, msg_t)
except TypeError:
diff --git a/install b/install
index e6af75c..44d6f7c 100755
--- a/install
+++ b/install
@@ -7,9 +7,9 @@ BLUE='\033[30;1;34m'
install_file_with(){
clear
sudo apt install python3-tk && \
- sudo cp -u wg_main.py start_wg.py wg_func.py wirepy.py run_as open_gitea.py /usr/bin/ && \
+ sudo cp -u wg_main.py start_wg.py cls_mth_fc.py wirepy.py run_as open_gitea.py /usr/bin/ && \
sudo mkdir -p /etc/wire_py && sudo touch /etc/wire_py/.keys && sudo cp -u settings.conf /etc/wire_py/ && \
- sudo cp -uR wp-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
+ sudo cp -uR wp-icons lx-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
sudo chown -R root:root /etc/wire_py && sudo chmod 755 /etc/wire_py && \
sudo ln -sf /usr/bin/wirepy.py /usr/local/bin/wirepy && \
sudo cp -u org.wirepy.policy /usr/share/polkit-1/actions/ && \
@@ -21,9 +21,9 @@ install_file_with(){
install_arch_d(){
clear
sudo pacman -S --noconfirm tk python3 python-requests && \
- sudo cp -u wg_main.py start_wg.py wg_func.py wirepy.py run_as open_gitea.py /usr/bin/ && \
+ sudo cp -u wg_main.py start_wg.py cls_mth_fc.py wirepy.py run_as open_gitea.py /usr/bin/ && \
sudo mkdir -p /etc/wire_py && sudo touch /etc/wire_py/.keys && sudo cp -u settings.conf /etc/wire_py/ && \
- sudo cp -uR wp-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
+ sudo cp -uR wp-icons lx-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
sudo chown -R root:root /etc/wire_py && sudo chmod 755 /etc/wire_py && \
sudo ln -sf /usr/bin/wirepy.py /usr/local/bin/wirepy && \
sudo cp -u org.wirepy.policy /usr/share/polkit-1/actions/ && \
@@ -89,10 +89,10 @@ elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1
if ! which python3-tkinter &> /dev/null
then sudo dnf install python3-tkinter -y
- sudo cp -u wg_main.py start_wg.py wg_func.py wirepy.py run_as open_gitea.py /usr/bin/ && \
+ sudo cp -u wg_main.py start_wg.py cls_mth_fc.py wirepy.py run_as open_gitea.py /usr/bin/ && \
sudo mkdir -p /etc/wire_py && sudo touch /etc/wire_py/.keys && \
sudo cp -u settings.conf /etc/wire_py/ && \
- sudo cp -uR wp-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
+ sudo cp -uR wp-icons lx-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
sudo chown -R root:root /etc/wire_py && sudo chmod 755 /etc/wire_py && \
sudo ln -sf /usr/bin/wirepy.py /usr/local/bin/wirepy && \
sudo cp -u org.wirepy.policy /usr/share/polkit-1/actions/ && \
@@ -105,10 +105,10 @@ elif grep -i 'suse' /etc/os-release > /dev/null 2>&1
then
if ! which python311-tk &> /dev/null
then sudo zypper install python311-tk
- sudo cp -u wg_main.py start_wg.py wg_func.py wirepy.py run_as open_gitea.py /usr/bin/ && \
+ sudo cp -u wg_main.py start_wg.py cls_mth_fc.py wirepy.py run_as open_gitea.py /usr/bin/ && \
sudo mkdir -p /etc/wire_py && sudo touch /etc/wire_py/.keys && \
sudo cp -u settings.conf /etc/wire_py/ && \
- sudo cp -uR wp-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
+ sudo cp -uR wp-icons lx-icons /usr/share/icons/ && sudo cp -uR TK-Themes /usr/share/ && \
sudo chown -R root:root /etc/wire_py && sudo chmod 755 /etc/wire_py && \
sudo ln -sf /usr/bin/wirepy.py /usr/local/bin/wirepy && \
sudo cp -u org.wirepy.policy /usr/share/polkit-1/actions/ && \
diff --git a/lx-icons/128/error.png b/lx-icons/128/error.png
new file mode 100644
index 0000000..ae580f8
Binary files /dev/null and b/lx-icons/128/error.png differ
diff --git a/lx-icons/128/info.png b/lx-icons/128/info.png
new file mode 100644
index 0000000..ccba611
Binary files /dev/null and b/lx-icons/128/info.png differ
diff --git a/lx-icons/256/error.png b/lx-icons/256/error.png
new file mode 100644
index 0000000..7734e3a
Binary files /dev/null and b/lx-icons/256/error.png differ
diff --git a/lx-icons/256/info.png b/lx-icons/256/info.png
new file mode 100644
index 0000000..8c1ca4f
Binary files /dev/null and b/lx-icons/256/info.png differ
diff --git a/lx-icons/32/error.png b/lx-icons/32/error.png
new file mode 100644
index 0000000..18e6c64
Binary files /dev/null and b/lx-icons/32/error.png differ
diff --git a/lx-icons/32/info.png b/lx-icons/32/info.png
new file mode 100644
index 0000000..f11ca97
Binary files /dev/null and b/lx-icons/32/info.png differ
diff --git a/lx-icons/48/error.png b/lx-icons/48/error.png
new file mode 100644
index 0000000..92a731a
Binary files /dev/null and b/lx-icons/48/error.png differ
diff --git a/lx-icons/48/info.png b/lx-icons/48/info.png
new file mode 100644
index 0000000..52206e6
Binary files /dev/null and b/lx-icons/48/info.png differ
diff --git a/lx-icons/64/error.png b/lx-icons/64/error.png
new file mode 100644
index 0000000..5ac3858
Binary files /dev/null and b/lx-icons/64/error.png differ
diff --git a/lx-icons/64/info.png b/lx-icons/64/info.png
new file mode 100644
index 0000000..4917814
Binary files /dev/null and b/lx-icons/64/info.png differ
diff --git a/wg_main.py b/wg_main.py
index e2f47b6..77bc428 100755
--- a/wg_main.py
+++ b/wg_main.py
@@ -1,4 +1,6 @@
#!/usr/bin/python3
+import gettext
+import locale
import os
import shutil
import subprocess
@@ -7,10 +9,17 @@ from pathlib import Path
from subprocess import check_call
from tkinter import filedialog, ttk, TclError
-from wg_func import (Tunnel, msg_window, WirePyUpdate, res, _u, version, path_to_file2, tips)
+from cls_mth_fc import (Tunnel, msg_window, GiteaUpdate, res, _u, version, path_to_file2, tips)
tcl_path = Path('/usr/share/TK-Themes')
+APP = 'wg_main'
+LOCALE_DIR = "/usr/share/locale/"
+locale.bindtextdomain(APP, LOCALE_DIR)
+gettext.bindtextdomain(APP, LOCALE_DIR)
+gettext.textdomain(APP)
+_ = gettext.gettext
+
class MainWindow(tk.Tk):
@@ -62,7 +71,7 @@ class FrameWidgets(ttk.Frame):
self.imp_pic = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/48/wg_import.png')
self.tr_pic = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/48/wg_trash.png')
self.exp_pic = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/48/wg_export.png')
- self.warning_pic = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/64/error.png')
+ self.warning_pic = tk.PhotoImage(file=r'/usr/share/icons/lx-icons/64/error.png')
self.wg_vpn_start = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/48/wg_vpn-start.png')
self.wg_vpn_stop = tk.PhotoImage(file=r'/usr/share/icons/wp-icons/48/wg_vpn-stop.png')
@@ -133,12 +142,12 @@ class FrameWidgets(ttk.Frame):
"""img_w, img_i, w_title, w_txt , txt2, com hand over"""
iw = r'/usr/share/icons/wp-icons/48/wg_vpn.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Info'
- msg_t = ('Wire-Py a simple Wireguard Gui for Linux systems.\n\n'
- 'Wire-Py is open source software written in Python.\n\n'
- 'Email: polunga40@unity-mail.de also likes for donation.\n\n'
- 'Use without warranty!\n')
- txt2 = 'Go to Wire-Py git'
+ wt = _('Info')
+ msg_t = (_('Wire-Py a simple Wireguard Gui for Linux systems.\n\n'
+ 'Wire-Py is open source software written in Python.\n\n'
+ 'Email: polunga40@unity-mail.de also likes for donation.\n\n'
+ 'Use without warranty!\n'))
+ txt2 = _('Go to Wire-Py git')
com = link_btn
msg_window(iw, ii, wt, msg_t, txt2, com)
@@ -162,12 +171,12 @@ class FrameWidgets(ttk.Frame):
''' Remove Tool-Tip '''
window.my_tool_tip.destroy()
- self.options_btn = ttk.Menubutton(self.menu_frame, text='Options')
+ self.options_btn = ttk.Menubutton(self.menu_frame, text=_('Options'))
self.options_btn.grid(column=1, row=0)
def sets_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'Click for Settings')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Click for Settings'))
def sets_leave(_):
""" The mouse moves from the entry widget """
@@ -183,13 +192,13 @@ class FrameWidgets(ttk.Frame):
set_tip = tk.BooleanVar()
self.settings = tk.Menu(self, relief='flat')
self.options_btn.configure(menu=self.settings, style='Toolbutton')
- self.settings.add_checkbutton(label='Disable Updates', command=update, variable=set_update)
- self.settings.add_checkbutton(label='Disable Tooltips', command=tooltip, variable=set_tip)
- self.settings.add_command(label='Light', command=theme_change_light)
- self.settings.add_command(label='Dark', command=theme_change_dark)
+ self.settings.add_checkbutton(label=_('Disable Updates'), command=update, variable=set_update)
+ self.settings.add_checkbutton(label=_('Disable Tooltips'), command=tooltip, variable=set_tip)
+ self.settings.add_command(label=_('Light'), command=theme_change_light)
+ self.settings.add_command(label=_('Dark'), command=theme_change_dark)
''' About BTN Menu / Label '''
- self.about_btn = ttk.Button(self.menu_frame, text='About', style='Toolbutton', command=info)
+ self.about_btn = ttk.Button(self.menu_frame, text=_('About'), style='Toolbutton', command=info)
self.about_btn.grid(column=2, row=0)
self.readme = tk.Menu(self)
@@ -205,11 +214,11 @@ class FrameWidgets(ttk.Frame):
'''View Checkbox for enable or disable Updates '''
if res == 'False':
set_update.set(value=1)
- self.updates_lb.configure(text='Update search off')
+ self.updates_lb.configure(text=_('Update search off'))
def disable_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'Updates you have disabled')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Updates you have disabled'))
def disable_leave(_):
""" The mouse moves from the entry widget """
@@ -219,14 +228,13 @@ class FrameWidgets(ttk.Frame):
self.updates_lb.bind('', disable_enter)
self.updates_lb.bind('', disable_leave)
elif res == 'No Internet Connection!':
- self.updates_lb.configure(text='No Server Connection!', foreground='red')
+ self.updates_lb.configure(text=_('No Server Connection!'), foreground='red')
elif res == 'No Updates':
- self.updates_lb.configure(text='No Updates')
+ self.updates_lb.configure(text=_('No Updates'))
def congratulations_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'Congratulations! Wire-Py is up to date')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Congratulations! Wire-Py is up to date'))
def congratulations_leave(_):
""" The mouse moves from the entry widget """
@@ -237,7 +245,7 @@ class FrameWidgets(ttk.Frame):
self.updates_lb.bind('', congratulations_leave)
else:
set_update.set(value=0)
- text = f'Update {res} available!'
+ text = _(f'Update {res} available!')
''' Update BTN Menu'''
self.update_btn = ttk.Menubutton(self.menu_frame, text=text)
@@ -245,7 +253,7 @@ class FrameWidgets(ttk.Frame):
def download_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'Click to download new version')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Click to download new version'))
def download_leave(_):
""" The mouse moves from the entry widget """
@@ -258,7 +266,8 @@ class FrameWidgets(ttk.Frame):
self.download = tk.Menu(self, relief='flat')
self.update_btn.configure(menu=self.download, style='Toolbutton')
- self.download.add_command(label='Download', command=WirePyUpdate.download)
+ self.download.add_command(label=_('Download'), command=GiteaUpdate.download(f'https://git.ilunix.de/punix'
+ f'/Wire-Py/archive/{res}.zip'))
''' Show active Tunnel '''
self.a = Tunnel.active()
@@ -284,7 +293,7 @@ class FrameWidgets(ttk.Frame):
''' Show active Label '''
self.select_tunnel = None
- self.lb = ttk.Label(self, text='Active: ')
+ self.lb = ttk.Label(self, text=_('Active: '))
self.lb.config(font=('Ubuntu', 11, 'bold'))
self.lb.grid(column=2, row=1, padx=15, pady=4, sticky='w')
@@ -293,12 +302,12 @@ class FrameWidgets(ttk.Frame):
self.color_label()
''' Interface Label '''
- self.interface = ttk.Label(self.lb_frame, text='Interface')
+ self.interface = ttk.Label(self.lb_frame, text=_('Interface'))
self.interface.grid(column=0, row=3, sticky='we', padx=120)
self.interface.config(font=('Ubuntu', 9))
''' Peer Label '''
- self.peer = ttk.Label(self.lb_frame2, text='Peer')
+ self.peer = ttk.Label(self.lb_frame2, text=_('Peer'))
self.peer.config(font=('Ubuntu', 9))
self.peer.grid(column=0, row=4, sticky='we', padx=130)
@@ -329,8 +338,7 @@ class FrameWidgets(ttk.Frame):
def list_empty_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'You must first import\na Wireguard tunnel')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('You must first import\na Wireguard tunnel'))
def list_empty_leave(_):
""" The mouse moves from the entry widget """
@@ -339,7 +347,7 @@ class FrameWidgets(ttk.Frame):
def list_not_empty_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'Select a Tunnel')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Select a Tunnel'))
def list_not_empty_leave(_):
""" The mouse moves from the entry widget """
@@ -379,7 +387,7 @@ class FrameWidgets(ttk.Frame):
def imp_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'Click to import a Wireguard Tunnel')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Click to import a Wireguard Tunnel'))
def imp_leave(_):
""" The mouse moves from the entry widget """
@@ -406,7 +414,7 @@ class FrameWidgets(ttk.Frame):
with open(path_to_file2, 'w') as set_file7:
set_file7.writelines(lines6)
self.selected_option.set(0)
- self.autoconnect_var.set('no Autoconnect')
+ self.autoconnect_var.set(_('no Autoconnect'))
Path.unlink(Path('/etc/wire_py') / str(select_tl + '.conf'))
with open('/etc/wire_py/.keys', 'r') as readfile:
@@ -423,8 +431,7 @@ class FrameWidgets(ttk.Frame):
def empty_list_start_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'No tunnels to start in the list')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('No tunnels to start in the list'))
def empty_list_start_leave(_):
""" The mouse moves from the entry widget """
@@ -446,7 +453,7 @@ class FrameWidgets(ttk.Frame):
self.btn_stst.bind('', empty_list_start_leave)
self.lb_rename.bind('', rename_no_active_enter)
self.lb_rename.bind('', rename_no_active_leave)
- self.lb_rename.insert(0, 'Max. 12 characters!')
+ self.lb_rename.insert(0, _('Max. 12 characters!'))
if self.a != '' and self.a == select_tl:
self.StrVar.set(value='')
@@ -464,19 +471,19 @@ class FrameWidgets(ttk.Frame):
if self.l_box.size() != 0:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Select tunnel'
- msg_t = 'Please select a tunnel from the list.'
+ wt = _('Select tunnel')
+ msg_t = _('Please select a tunnel from the list.')
msg_window(iw, ii, wt, msg_t)
else:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Select tunnel'
- msg_t = 'Please first import tunnel.'
+ wt = _('Select tunnel')
+ msg_t = _('Please first import tunnel.')
msg_window(iw, ii, wt, msg_t)
''' Button Trash '''
@@ -486,7 +493,7 @@ class FrameWidgets(ttk.Frame):
def empty_list_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'No tunnels to delete in the list')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('No tunnels to delete in the list'))
def empty_list_leave(_):
""" The mouse moves from the entry widget """
@@ -496,7 +503,7 @@ class FrameWidgets(ttk.Frame):
def del_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'Click to delete a Wireguard Tunnel\nSelect from the list!')
+ _('Click to delete a Wireguard Tunnel\nSelect from the list!'))
def del_leave(_):
""" The mouse moves from the entry widget """
@@ -516,7 +523,7 @@ class FrameWidgets(ttk.Frame):
def empty_list_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'No Tunnels in List for Export')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('No Tunnels in List for Export'))
def empty_list_leave(_):
""" The mouse moves from the entry widget """
@@ -526,7 +533,7 @@ class FrameWidgets(ttk.Frame):
def exp_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- ' Click to export all\nWireguard Tunnel to Zipfile')
+ _(' Click to export all\nWireguard Tunnel to Zipfile'))
def exp_leave(_):
""" The mouse moves from the entry widget """
@@ -543,7 +550,7 @@ class FrameWidgets(ttk.Frame):
''' Label Entry '''
self.lb_rename = ttk.Entry(self.lb_frame3, width=20)
self.lb_rename.grid(column=2, row=0, padx=8, pady=10, sticky='ne')
- self.lb_rename.insert(0, 'Max. 12 characters!')
+ self.lb_rename.insert(0, _('Max. 12 characters!'))
self.lb_rename.config(state='disable')
def rename_no_active_leave(_):
@@ -554,12 +561,12 @@ class FrameWidgets(ttk.Frame):
def rename_no_active_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To rename a tunnel, at least one must be in the list')
+ _('To rename a tunnel, at least one must be in the list'))
def rename_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To rename a tunnel, you need to\nselect a tunnel from the list')
+ _('To rename a tunnel, you need to\nselect a tunnel from the list'))
def rename_leave(_):
""" The mouse moves from the entry widget """
@@ -579,28 +586,28 @@ class FrameWidgets(ttk.Frame):
if len(self.lb_rename.get()) > 12:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Renaming not possible'
- msg_t = 'The new name may contain only 12 characters.'
+ wt = _('Renaming not possible')
+ msg_t = _('The new name may contain only 12 characters.')
msg_window(iw, ii, wt, msg_t)
elif len(self.lb_rename.get()) == 0:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Renaming not possible'
- msg_t = 'At least one character must be entered.'
+ wt = _('Renaming not possible')
+ msg_t = _('At least one character must be entered.')
msg_window(iw, ii, wt, msg_t)
elif any(ch in special_characters for ch in self.lb_rename.get()):
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Renaming not possible'
- msg_t = 'No valid sign. These must not be used.\nBlank, Slash, Backslash and { }\n'
+ wt = _('Renaming not possible')
+ msg_t = _('No valid sign. These must not be used.\nBlank, Slash, Backslash and { }\n')
msg_window(iw, ii, wt, msg_t)
else:
@@ -635,14 +642,14 @@ class FrameWidgets(ttk.Frame):
except IndexError:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Renaming not possible'
- msg_t = 'Please select a tunnel from the list.'
+ wt = _('Renaming not possible')
+ msg_t = _('Please select a tunnel from the list.')
msg_window(iw, ii, wt, msg_t)
''' Button Rename '''
- self.btn_rename = ttk.Button(self.lb_frame3, text='Rename', state='disable', command=tl_rename, padding=4,
+ self.btn_rename = ttk.Button(self.lb_frame3, text=_('Rename'), state='disable', command=tl_rename, padding=4,
style='RnButton.TButton')
self.btn_rename.grid(column=3, row=0, padx=5, pady=10, sticky='ne')
@@ -654,15 +661,15 @@ class FrameWidgets(ttk.Frame):
self.autoconnect = ttk.Label(self.lb_frame3, textvariable=self.autoconnect_var, width=15)
self.autoconnect.config(font=('Ubuntu', 11))
self.autoconnect.grid(column=1, row=0, sticky='e', pady=19)
- self.wg_autostart = ttk.Checkbutton(self.lb_frame3, text='Autoconnect on:', variable=self.selected_option,
+ self.wg_autostart = ttk.Checkbutton(self.lb_frame3, text=_('Autoconnect on:'), variable=self.selected_option,
command=self.box_set)
self.wg_autostart.grid(column=0, row=0, pady=15, padx=15, sticky='nw')
def chk_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'You must have at least one\n'
- 'tunnel in the list,to use the autostart')
+ _('You must have at least one\n'
+ 'tunnel in the list,to use the autostart'))
def chk_leave(_):
""" The mouse moves from the entry widget """
@@ -673,7 +680,7 @@ class FrameWidgets(ttk.Frame):
def chk_a_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To use the autostart, enable this Checkbox')
+ _('To use the autostart, enable this Checkbox'))
def chk_a_leave(_):
""" The mouse moves from the entry widget """
@@ -690,7 +697,7 @@ class FrameWidgets(ttk.Frame):
def chk_a_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To use the autostart, a tunnel must be selected from the list')
+ _('To use the autostart, a tunnel must be selected from the list'))
def chk_a_leave(_):
""" The mouse moves from the entry widget """
@@ -714,8 +721,8 @@ class FrameWidgets(ttk.Frame):
If in each case false comes out, a corresponding window comes to inform the user that something is wrong.
"""
try:
- filepath = filedialog.askopenfilename(initialdir=str(_u), title='Select Wireguard config File',
- filetypes=[('WG config files', '*.conf')], )
+ filepath = filedialog.askopenfilename(initialdir=str(_u), title=_('Select Wireguard config File'),
+ filetypes=[(_('WG config files'), '*.conf')], )
with open(filepath, 'r') as file:
read = file.read()
@@ -732,10 +739,10 @@ class FrameWidgets(ttk.Frame):
p_key = readfile.readlines()
if pre_key in p_key or pre_key + '\n' in p_key:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/error.png'
+ iw = r'/usr/share/icons/lx-icons/64/error.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Import Error'
- msg_t = 'Tunnel already available!\nPlease use another file for import'
+ wt = _('Import Error')
+ msg_t = _('Tunnel already available!\nPlease use another file for import')
msg_window(iw, ii, wt, msg_t)
else:
@@ -774,8 +781,8 @@ class FrameWidgets(ttk.Frame):
def chk_a_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To use the autostart, enable this '
- 'Checkbox')
+ _('To use the autostart, enable this '
+ 'Checkbox'))
def chk_a_leave(_):
""" The mouse moves from the entry widget """
@@ -785,7 +792,7 @@ class FrameWidgets(ttk.Frame):
def list_info_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'List of available tunnels')
+ _('List of available tunnels'))
def list_info_leave(_):
""" The mouse moves from the entry widget """
@@ -795,8 +802,8 @@ class FrameWidgets(ttk.Frame):
def del_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'Click to delete a Wireguard '
- 'Tunnel\nSelect from the list!')
+ _('Click to delete a Wireguard '
+ 'Tunnel\nSelect from the list!'))
def del_leave(_):
""" The mouse moves from the entry widget """
@@ -806,8 +813,8 @@ class FrameWidgets(ttk.Frame):
def exp_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- ' Click to export '
- 'all\nWireguard Tunnel to Zipfile')
+ _(' Click to export '
+ 'all\nWireguard Tunnel to Zipfile'))
def exp_leave(_):
""" The mouse moves from the entry widget """
@@ -817,8 +824,8 @@ class FrameWidgets(ttk.Frame):
def rename_enter(event):
""" The mouse moves into the entry widget """
window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'To rename a tunnel, you need to\n'
- 'select a tunnel from the list')
+ _('To rename a tunnel, you need to\n'
+ 'select a tunnel from the list'))
def rename_leave(_):
""" The mouse moves from the entry widget """
@@ -852,10 +859,10 @@ class FrameWidgets(ttk.Frame):
if 'PrivateKey = ' and 'Endpoint = ' not in read:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/error.png'
+ iw = r'/usr/share/icons/lx-icons/64/error.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Import Error'
- msg_t = 'Oh... no valid Wireguard File!\nPlease select a valid Wireguard File'
+ wt = _('Import Error')
+ msg_t = _('Oh... no valid Wireguard File!\nPlease select a valid Wireguard File')
msg_window(iw, ii, wt, msg_t)
except EOFError:
@@ -919,7 +926,7 @@ class FrameWidgets(ttk.Frame):
else:
self.wg_autostart.configure(state='disabled')
- self.auto_con = 'no Autoconnect'
+ self.auto_con = _('no Autoconnect')
self.autoconnect_var.set('')
self.autoconnect_var = tk.StringVar()
self.autoconnect_var.set(self.auto_con)
@@ -936,11 +943,11 @@ class FrameWidgets(ttk.Frame):
""" Address Label """
self.add = tk.StringVar()
- self.add.set('Address: ' + data[0])
+ self.add.set(_('Address: ') + data[0])
self.DNS = tk.StringVar()
self.DNS.set(' DNS: ' + data[1])
self.enp = tk.StringVar()
- self.enp.set('Endpoint: ' + data[2])
+ self.enp.set(_('Endpoint: ') + data[2])
def label_empty(self):
self.add.set('')
@@ -970,8 +977,7 @@ class FrameWidgets(ttk.Frame):
def stop_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'Click to stop selected Wireguard Tunnel')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Click to stop selected Wireguard Tunnel'))
def stop_leave(_):
""" The mouse moves from the entry widget """
@@ -988,7 +994,7 @@ class FrameWidgets(ttk.Frame):
def empty_list_start_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root, 'No tunnels to start in the list')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('No tunnels to start in the list'))
def empty_list_start_leave(_):
""" The mouse moves from the entry widget """
@@ -997,8 +1003,7 @@ class FrameWidgets(ttk.Frame):
def start_enter(event):
""" The mouse moves into the entry widget """
- window.my_tool_tip = MyToolTip(event.x_root, event.y_root,
- 'Click to start selected Wireguard Tunnel')
+ window.my_tool_tip = MyToolTip(event.x_root, event.y_root, _('Click to start selected Wireguard Tunnel'))
def start_leave(_):
""" The mouse moves from the entry widget """
@@ -1075,19 +1080,19 @@ class FrameWidgets(ttk.Frame):
if self.l_box.size() != 0:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Select tunnel'
- msg_t = 'Please select a tunnel from the list.'
+ wt = _('Select tunnel')
+ msg_t = _('Please select a tunnel from the list.')
msg_window(iw, ii, wt, msg_t)
else:
"""img_w, img_i, w_title, w_txt hand over"""
- iw = r'/usr/share/icons/wp-icons/64/info.png'
+ iw = r'/usr/share/icons/lx-icons/64/info.png'
ii = r'/usr/share/icons/wp-icons/48/wg_msg.png'
- wt = 'Select tunnel'
- msg_t = 'Please first import tunnel.'
+ wt = _('Select tunnel')
+ msg_t = _('Please first import tunnel.')
msg_window(iw, ii, wt, msg_t)