translate fix
This commit is contained in:
parent
70004486c7
commit
ff087ffbf8
2 changed files with 8 additions and 38 deletions
|
@ -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
|
|
|
@ -2,7 +2,6 @@ import os
|
||||||
import FreeCADGui as Gui
|
import FreeCADGui as Gui
|
||||||
import FreeCAD as App
|
import FreeCAD as App
|
||||||
|
|
||||||
from .TranslateUtils import translate
|
|
||||||
from . import ICONPATH, TRANSLATIONSPATH, Frames
|
from . import ICONPATH, TRANSLATIONSPATH, Frames
|
||||||
from .version import __version__
|
from .version import __version__
|
||||||
|
|
||||||
|
@ -15,6 +14,14 @@ __url__ = ["https://robossembler.org"]
|
||||||
__status__ = 'development'
|
__status__ = 'development'
|
||||||
|
|
||||||
|
|
||||||
|
def QT_TRANSLATE_NOOP(ctx, txt):
|
||||||
|
return txt
|
||||||
|
|
||||||
|
|
||||||
|
def translate(ctx, txt):
|
||||||
|
return txt
|
||||||
|
|
||||||
|
|
||||||
class Robossembler(Gui.Workbench):
|
class Robossembler(Gui.Workbench):
|
||||||
"""
|
"""
|
||||||
class which gets initiated at startup of the gui
|
class which gets initiated at startup of the gui
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue