From ff087ffbf89b38e5427cbe33be5dca8a98f0b40a Mon Sep 17 00:00:00 2001 From: Igor Brylev Date: Thu, 21 Nov 2024 22:57:38 +0300 Subject: [PATCH] translate fix --- .../freecad/robossembler/TranslateUtils.py | 37 ------------------- .../freecad/robossembler/init_gui.py | 9 ++++- 2 files changed, 8 insertions(+), 38 deletions(-) delete mode 100644 freecad_workbench/freecad/robossembler/TranslateUtils.py diff --git a/freecad_workbench/freecad/robossembler/TranslateUtils.py b/freecad_workbench/freecad/robossembler/TranslateUtils.py deleted file mode 100644 index fc91518..0000000 --- a/freecad_workbench/freecad/robossembler/TranslateUtils.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- coding: utf8 -*- - -#*************************************************************************** -#* * -#* Copyright (c) 2020 kbwbe * -#* * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import FreeCAD - - -if FreeCAD.GuiUp: - from PySide.QtCore import QT_TRANSLATE_NOOP - from DraftGui import translate -else: - def QT_TRANSLATE_NOOP(context, text): - return text - - def translate(context, text): - return text diff --git a/freecad_workbench/freecad/robossembler/init_gui.py b/freecad_workbench/freecad/robossembler/init_gui.py index 2e857fd..e0d47a4 100644 --- a/freecad_workbench/freecad/robossembler/init_gui.py +++ b/freecad_workbench/freecad/robossembler/init_gui.py @@ -2,7 +2,6 @@ import os import FreeCADGui as Gui import FreeCAD as App -from .TranslateUtils import translate from . import ICONPATH, TRANSLATIONSPATH, Frames from .version import __version__ @@ -15,6 +14,14 @@ __url__ = ["https://robossembler.org"] __status__ = 'development' +def QT_TRANSLATE_NOOP(ctx, txt): + return txt + + +def translate(ctx, txt): + return txt + + class Robossembler(Gui.Workbench): """ class which gets initiated at startup of the gui