From ac87e0a4a7405f301ec24ace06218436a84c0753 Mon Sep 17 00:00:00 2001 From: punix Date: Sun, 10 Nov 2024 11:20:11 +0100 Subject: [PATCH] - Preparation for language translation part 4 --- cls_mth_fc.py | 2 +- wg_main.py | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cls_mth_fc.py b/cls_mth_fc.py index 2a57278..eadc6d2 100755 --- a/cls_mth_fc.py +++ b/cls_mth_fc.py @@ -253,7 +253,7 @@ class Tunnel: 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.') + msg_t = _('Please first import tunnel') msg_window(iw, ii, wt, msg_t) except TypeError: diff --git a/wg_main.py b/wg_main.py index 557b0f2..da94025 100755 --- a/wg_main.py +++ b/wg_main.py @@ -487,7 +487,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('Please select a tunnel from the list') msg_window(iw, ii, wt, msg_t) else: @@ -496,7 +496,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('Please first import tunnel') msg_window(iw, ii, wt, msg_t) ''' Button Trash ''' @@ -602,7 +602,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('The new name may contain only 12 characters') msg_window(iw, ii, wt, msg_t) elif len(self.lb_rename.get()) == 0: @@ -611,7 +611,7 @@ class FrameWidgets(ttk.Frame): 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.') + 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()): @@ -658,7 +658,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('Please select a tunnel from the list') msg_window(iw, ii, wt, msg_t) ''' Button Rename ''' @@ -1096,7 +1096,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('Please select a tunnel from the list') msg_window(iw, ii, wt, msg_t) else: @@ -1105,7 +1105,7 @@ class FrameWidgets(ttk.Frame): 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.') + msg_t = _('Please first import tunnel') msg_window(iw, ii, wt, msg_t)