Mon, 08 Apr 2013 07:52:06 +0200
Fixes for autocodecheck with pyflakes and update of py2flakes to 0.6.1.
Translations between cross versions possible.
--- a/APIs/Python3/eric5.api Thu Mar 28 20:09:00 2013 +0100 +++ b/APIs/Python3/eric5.api Mon Apr 08 07:52:06 2013 +0200 @@ -7898,6 +7898,13 @@ eric5.Utilities.PasswordChecker.PasswordChecker.Status_Passed?7 eric5.Utilities.PasswordChecker.PasswordChecker.checkPassword?4(password) eric5.Utilities.PasswordChecker.PasswordChecker?1() +eric5.Utilities.SyntaxCheck.codingBytes_regexps?7 +eric5.Utilities.SyntaxCheck.compile_and_check?4(file_, codestring="", checkFlakes=True, ignoreStarImportWarnings=False) +eric5.Utilities.SyntaxCheck.decode?4(text) +eric5.Utilities.SyntaxCheck.extractLineFlags?4(line, startComment=") +eric5.Utilities.SyntaxCheck.get_codingBytes?4(text) +eric5.Utilities.SyntaxCheck.normalizeCode?4(codestring) +eric5.Utilities.SyntaxCheck.readEncodedFile?4(filename) eric5.Utilities._escape?8 eric5.Utilities._escape_map?8 eric5.Utilities._percentReplacementFunc?5(matchobj) @@ -7963,7 +7970,6 @@ eric5.Utilities.binplistlib.writePlist?4(rootObject, pathOrFile, binary=True) eric5.Utilities.binplistlib.writePlistToBytes?4(rootObject, binary=True) eric5.Utilities.checkPyside?4() -eric5.Utilities.codingBytes_regexps?7 eric5.Utilities.coding_regexps?7 eric5.Utilities.compactPath?4(path, width, measure=len) eric5.Utilities.compatibility_fixes.File.fp?7 @@ -7974,7 +7980,8 @@ eric5.Utilities.compatibility_fixes.File.write?4(txt) eric5.Utilities.compatibility_fixes.File?1(filein, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True) eric5.Utilities.compatibility_fixes.open?4(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True) -eric5.Utilities.compile?4(file, codestring="") +eric5.Utilities.compile?4(file, codestring="", isPy2=False) +eric5.Utilities.compile_extern?4(file, isPy2, checkFlakes=True, ignoreStarImportWarnings=False) eric5.Utilities.configDir?7 eric5.Utilities.convertLineEnds?4(text, eol) eric5.Utilities.crypto.CryptoMarker?7 @@ -8012,7 +8019,6 @@ eric5.Utilities.crypto.py3PBKDF2.pbkdf2?4(password, salt, iterations, digestMod) eric5.Utilities.crypto.py3PBKDF2.rehashPassword?4(password, hashParameters) eric5.Utilities.crypto.py3PBKDF2.verifyPassword?4(password, hash) -eric5.Utilities.decode?4(text) eric5.Utilities.decodeBytes?4(buffer) eric5.Utilities.decodeString?4(text) eric5.Utilities.direntries?4(path, filesonly=False, pattern=None, followsymlinks=True, checkStop=None) @@ -8021,7 +8027,6 @@ eric5.Utilities.escape_uentities?4(m) eric5.Utilities.extractFlags?4(text) eric5.Utilities.extractFlagsFromFile?4(filename) -eric5.Utilities.extractLineFlags?4(line, startComment=") eric5.Utilities.fromNativeSeparators?4(path) eric5.Utilities.generateDistroInfo?4(linesep='\n') eric5.Utilities.generatePluginsVersionInfo?4(linesep='\n') @@ -8042,7 +8047,6 @@ eric5.Utilities.getTestFileName?4(fn) eric5.Utilities.getUserName?4() eric5.Utilities.get_coding?4(text) -eric5.Utilities.get_codingBytes?4(text) eric5.Utilities.hasEnvironmentEntry?4(key) eric5.Utilities.html_encode?4(text, pattern=_escape) eric5.Utilities.html_udecode?4(text, pattern=_uunescape) @@ -8060,7 +8064,97 @@ eric5.Utilities.parseOptionString?4(s) eric5.Utilities.parseString?4(s, rx) eric5.Utilities.prepareQtMacBundle?4(toolname, version, args) -eric5.Utilities.py2compile?4(file, checkFlakes=False) +eric5.Utilities.py2flakes.checker.Binding?1(name, source) +eric5.Utilities.py2flakes.checker.Checker.AND?7 +eric5.Utilities.py2flakes.checker.Checker.ASSIGN?4(node) +eric5.Utilities.py2flakes.checker.Checker.AUGASSIGN?4(node) +eric5.Utilities.py2flakes.checker.Checker.BOOLOP?7 +eric5.Utilities.py2flakes.checker.Checker.CLASSDEF?4(node) +eric5.Utilities.py2flakes.checker.Checker.COMPREHENSION?7 +eric5.Utilities.py2flakes.checker.Checker.CONTINUE?7 +eric5.Utilities.py2flakes.checker.Checker.DICTCOMP?4(node) +eric5.Utilities.py2flakes.checker.Checker.EXCEPTHANDLER?4(node) +eric5.Utilities.py2flakes.checker.Checker.FOR?4(node) +eric5.Utilities.py2flakes.checker.Checker.FUNCTIONDEF?4(node) +eric5.Utilities.py2flakes.checker.Checker.GENERATOREXP?7 +eric5.Utilities.py2flakes.checker.Checker.GLOBAL?4(node) +eric5.Utilities.py2flakes.checker.Checker.IMPORT?4(node) +eric5.Utilities.py2flakes.checker.Checker.IMPORTFROM?4(node) +eric5.Utilities.py2flakes.checker.Checker.LAMBDA?4(node) +eric5.Utilities.py2flakes.checker.Checker.LISTCOMP?4(node) +eric5.Utilities.py2flakes.checker.Checker.LOAD?7 +eric5.Utilities.py2flakes.checker.Checker.NAME?4(node) +eric5.Utilities.py2flakes.checker.Checker.NONLOCAL?7 +eric5.Utilities.py2flakes.checker.Checker.NUM?7 +eric5.Utilities.py2flakes.checker.Checker.RETURN?7 +eric5.Utilities.py2flakes.checker.Checker.SLICE?7 +eric5.Utilities.py2flakes.checker.Checker.addArgs?4() +eric5.Utilities.py2flakes.checker.Checker.addBinding?4(node, value, reportRedef=True) +eric5.Utilities.py2flakes.checker.Checker.builtIns?7 +eric5.Utilities.py2flakes.checker.Checker.checkDeadScopes?4() +eric5.Utilities.py2flakes.checker.Checker.checkUnusedAssignments?4() +eric5.Utilities.py2flakes.checker.Checker.collectLoopVars?4() +eric5.Utilities.py2flakes.checker.Checker.deferAssignment?4(callable) +eric5.Utilities.py2flakes.checker.Checker.deferFunction?4(callable) +eric5.Utilities.py2flakes.checker.Checker.descendantOf?4(node, ancestors, stop=None) +eric5.Utilities.py2flakes.checker.Checker.differentForks?4(lnode, rnode) +eric5.Utilities.py2flakes.checker.Checker.getCommonAncestor?4(lnode, rnode, stop=None) +eric5.Utilities.py2flakes.checker.Checker.handleChildren?4(tree) +eric5.Utilities.py2flakes.checker.Checker.handleNode?4(node, parent) +eric5.Utilities.py2flakes.checker.Checker.handleNodeDelete?4(node) +eric5.Utilities.py2flakes.checker.Checker.handleNodeLoad?4(node) +eric5.Utilities.py2flakes.checker.Checker.handleNodeStore?4(node) +eric5.Utilities.py2flakes.checker.Checker.hasParent?4(node, kind) +eric5.Utilities.py2flakes.checker.Checker.ignore?4(node) +eric5.Utilities.py2flakes.checker.Checker.isDocstring?4(node) +eric5.Utilities.py2flakes.checker.Checker.nodeDepth?7 +eric5.Utilities.py2flakes.checker.Checker.onFork?4(parent, lnode, rnode, items) +eric5.Utilities.py2flakes.checker.Checker.popScope?4() +eric5.Utilities.py2flakes.checker.Checker.pushClassScope?4() +eric5.Utilities.py2flakes.checker.Checker.pushFunctionScope?4() +eric5.Utilities.py2flakes.checker.Checker.report?4(messageClass, *args, **kwargs) +eric5.Utilities.py2flakes.checker.Checker.runDeferred?4(deferred) +eric5.Utilities.py2flakes.checker.Checker.runFunction?4() +eric5.Utilities.py2flakes.checker.Checker.scope?4() +eric5.Utilities.py2flakes.checker.Checker.traceTree?7 +eric5.Utilities.py2flakes.checker.Checker?1(tree, filename='(none)', builtins=None) +eric5.Utilities.py2flakes.checker.ExportBinding.names?4() +eric5.Utilities.py2flakes.checker.FunctionScope?1() +eric5.Utilities.py2flakes.checker.Importation?1(name, source) +eric5.Utilities.py2flakes.checker.Scope.importStarred?7 +eric5.Utilities.py2flakes.checker.Scope.usesLocals?7 +eric5.Utilities.py2flakes.checker._MAGIC_GLOBALS?8 +eric5.Utilities.py2flakes.checker.getNodeName?4(node) +eric5.Utilities.py2flakes.checker.iter_child_nodes?4(node, astcls=ast.AST) +eric5.Utilities.py2flakes.messages.DuplicateArgument.message?7 +eric5.Utilities.py2flakes.messages.DuplicateArgument?1(filename, lineno, name) +eric5.Utilities.py2flakes.messages.ImportShadowedByLoopVar.message?7 +eric5.Utilities.py2flakes.messages.ImportShadowedByLoopVar?1(filename, lineno, name, orig_lineno) +eric5.Utilities.py2flakes.messages.ImportStarUsed.message?7 +eric5.Utilities.py2flakes.messages.ImportStarUsed?1(filename, lineno, modname) +eric5.Utilities.py2flakes.messages.LateFutureImport.message?7 +eric5.Utilities.py2flakes.messages.LateFutureImport?1(filename, lineno, names) +eric5.Utilities.py2flakes.messages.Message.getMessageData?4() +eric5.Utilities.py2flakes.messages.Message.message?7 +eric5.Utilities.py2flakes.messages.Message.message_args?7 +eric5.Utilities.py2flakes.messages.Message?1(filename, lineno) +eric5.Utilities.py2flakes.messages.QT_TRANSLATE_NOOP?4(mod, txt) +eric5.Utilities.py2flakes.messages.Redefined.message?7 +eric5.Utilities.py2flakes.messages.Redefined?1(filename, lineno, name, orig_lineno) +eric5.Utilities.py2flakes.messages.RedefinedInListComp.message?7 +eric5.Utilities.py2flakes.messages.RedefinedInListComp?1(filename, lineno, name, orig_lineno) +eric5.Utilities.py2flakes.messages.RedefinedWhileUnused.message?7 +eric5.Utilities.py2flakes.messages.RedefinedWhileUnused?1(filename, lineno, name, orig_lineno) +eric5.Utilities.py2flakes.messages.UndefinedExport.message?7 +eric5.Utilities.py2flakes.messages.UndefinedExport?1(filename, lineno, name) +eric5.Utilities.py2flakes.messages.UndefinedLocal.message?7 +eric5.Utilities.py2flakes.messages.UndefinedLocal?1(filename, lineno, name, orig_lineno) +eric5.Utilities.py2flakes.messages.UndefinedName.message?7 +eric5.Utilities.py2flakes.messages.UndefinedName?1(filename, lineno, name) +eric5.Utilities.py2flakes.messages.UnusedImport.message?7 +eric5.Utilities.py2flakes.messages.UnusedImport?1(filename, lineno, name) +eric5.Utilities.py2flakes.messages.UnusedVariable.message?7 +eric5.Utilities.py2flakes.messages.UnusedVariable?1(filename, lineno, names) eric5.Utilities.py3flakes.checker.Binding?1(name, source) eric5.Utilities.py3flakes.checker.Checker.ASSIGN?4(node) eric5.Utilities.py3flakes.checker.Checker.ATTRIBUTES?7 @@ -8133,6 +8227,7 @@ eric5.Utilities.py3flakes.messages.Message.message?7 eric5.Utilities.py3flakes.messages.Message.message_args?7 eric5.Utilities.py3flakes.messages.Message?1(filename, lineno) +eric5.Utilities.py3flakes.messages.QT_TRANSLATE_NOOP?4(mod, txt) eric5.Utilities.py3flakes.messages.RedefinedFunction.message?7 eric5.Utilities.py3flakes.messages.RedefinedFunction?1(filename, lineno, name, orig_lineno) eric5.Utilities.py3flakes.messages.RedefinedWhileUnused.message?7 @@ -8147,10 +8242,10 @@ eric5.Utilities.py3flakes.messages.UnusedImport?1(filename, lineno, name) eric5.Utilities.py3flakes.messages.UnusedVariable.message?7 eric5.Utilities.py3flakes.messages.UnusedVariable?1(filename, lineno, name) -eric5.Utilities.readEncodedFile?4(filename) eric5.Utilities.readEncodedFileWithHash?4(filename) eric5.Utilities.readStringFromStream?4(stream) eric5.Utilities.relpath?4(path, start=os.path.curdir) +eric5.Utilities.samefilepath?4(f1, f2) eric5.Utilities.samepath?4(f1, f2) eric5.Utilities.splitPath?4(name) eric5.Utilities.supportedCodecs?7 @@ -8171,8 +8266,6 @@ eric5.UtilitiesPython2.Pep8Checker.Pep8Checker.report_error_args?4(line_number, offset, code, check, *args) eric5.UtilitiesPython2.Pep8Checker.Pep8Checker.select?7 eric5.UtilitiesPython2.Pep8Checker.Pep8Checker?1(filename, lines, repeat=False, select="", ignore="") -eric5.UtilitiesPython2.Py2SyntaxChecker.compile?4(file, codestring) -eric5.UtilitiesPython2.Py2SyntaxChecker.flakesCheck?4(fileName, codestring, ignoreStarImportWarnings) eric5.UtilitiesPython2.Tabnanny.NannyNag.get_line?4() eric5.UtilitiesPython2.Tabnanny.NannyNag.get_lineno?4() eric5.UtilitiesPython2.Tabnanny.NannyNag.get_msg?4() @@ -8265,86 +8358,6 @@ eric5.UtilitiesPython2.pep8.whitespace_around_operator?4(logical_line) eric5.UtilitiesPython2.pep8.whitespace_before_inline_comment?4(logical_line, tokens) eric5.UtilitiesPython2.pep8.whitespace_before_parameters?4(logical_line, tokens) -eric5.UtilitiesPython2.py2flakes.checker.Binding?1(name, source) -eric5.UtilitiesPython2.py2flakes.checker.Checker.AND?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.ASSIGN?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.AUGASSIGN?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.BITOR?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.BOOLOP?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.CALL?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.CLASSDEF?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.COMPREHENSION?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.CONTINUE?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.DICTCOMP?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.EQ?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.FOR?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.FUNCTIONDEF?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.GENERATOREXP?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.GLOBAL?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.IMPORT?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.IMPORTFROM?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.LAMBDA?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.LISTCOMP?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.LOAD?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.NAME?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.NUM?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.RETURN?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.SLICE?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker._runDeferred?5(deferred) -eric5.UtilitiesPython2.py2flakes.checker.Checker.addArgs?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.addBinding?4(lineno, value, reportRedef=True) -eric5.UtilitiesPython2.py2flakes.checker.Checker.checkUnusedAssignments?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.check_dead_scopes?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.collectLoopVars?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.deferAssignment?4(callable) -eric5.UtilitiesPython2.py2flakes.checker.Checker.deferFunction?4(callable) -eric5.UtilitiesPython2.py2flakes.checker.Checker.handleChildren?4(tree) -eric5.UtilitiesPython2.py2flakes.checker.Checker.handleNode?4(node, parent) -eric5.UtilitiesPython2.py2flakes.checker.Checker.ignore?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.isDocstring?4(node) -eric5.UtilitiesPython2.py2flakes.checker.Checker.nodeDepth?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.popScope?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.pushClassScope?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.pushFunctionScope?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.report?4(messageClass, *args, **kwargs) -eric5.UtilitiesPython2.py2flakes.checker.Checker.runFunction?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.scope?4() -eric5.UtilitiesPython2.py2flakes.checker.Checker.scope?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker.traceTree?7 -eric5.UtilitiesPython2.py2flakes.checker.Checker?1(module, filename='(none)') -eric5.UtilitiesPython2.py2flakes.checker.ExportBinding.names?4() -eric5.UtilitiesPython2.py2flakes.checker.FunctionScope?1() -eric5.UtilitiesPython2.py2flakes.checker.Importation?1(name, source) -eric5.UtilitiesPython2.py2flakes.checker.Scope.importStarred?7 -eric5.UtilitiesPython2.py2flakes.checker.Scope?1() -eric5.UtilitiesPython2.py2flakes.checker._MAGIC_GLOBALS?8 -eric5.UtilitiesPython2.py2flakes.checker.iter_child_nodes?4(node, astcls=_ast.AST) -eric5.UtilitiesPython2.py2flakes.messages.DuplicateArgument.message?7 -eric5.UtilitiesPython2.py2flakes.messages.DuplicateArgument?1(filename, lineno, name) -eric5.UtilitiesPython2.py2flakes.messages.ImportShadowedByLoopVar.message?7 -eric5.UtilitiesPython2.py2flakes.messages.ImportShadowedByLoopVar?1(filename, lineno, name, orig_lineno) -eric5.UtilitiesPython2.py2flakes.messages.ImportStarUsed.message?7 -eric5.UtilitiesPython2.py2flakes.messages.ImportStarUsed?1(filename, lineno, modname) -eric5.UtilitiesPython2.py2flakes.messages.LateFutureImport.message?7 -eric5.UtilitiesPython2.py2flakes.messages.LateFutureImport?1(filename, lineno, names) -eric5.UtilitiesPython2.py2flakes.messages.Message.getMessageData?4() -eric5.UtilitiesPython2.py2flakes.messages.Message.message?7 -eric5.UtilitiesPython2.py2flakes.messages.Message.message_args?7 -eric5.UtilitiesPython2.py2flakes.messages.Message?1(filename, lineno) -eric5.UtilitiesPython2.py2flakes.messages.RedefinedFunction.message?7 -eric5.UtilitiesPython2.py2flakes.messages.RedefinedFunction?1(filename, lineno, name, orig_lineno) -eric5.UtilitiesPython2.py2flakes.messages.RedefinedWhileUnused.message?7 -eric5.UtilitiesPython2.py2flakes.messages.RedefinedWhileUnused?1(filename, lineno, name, orig_lineno) -eric5.UtilitiesPython2.py2flakes.messages.UndefinedExport.message?7 -eric5.UtilitiesPython2.py2flakes.messages.UndefinedExport?1(filename, lineno, name) -eric5.UtilitiesPython2.py2flakes.messages.UndefinedLocal.message?7 -eric5.UtilitiesPython2.py2flakes.messages.UndefinedLocal?1(filename, lineno, name, orig_lineno) -eric5.UtilitiesPython2.py2flakes.messages.UndefinedName.message?7 -eric5.UtilitiesPython2.py2flakes.messages.UndefinedName?1(filename, lineno, name) -eric5.UtilitiesPython2.py2flakes.messages.UnusedImport.message?7 -eric5.UtilitiesPython2.py2flakes.messages.UnusedImport?1(filename, lineno, name) -eric5.UtilitiesPython2.py2flakes.messages.UnusedVariable.message?7 -eric5.UtilitiesPython2.py2flakes.messages.UnusedVariable?1(filename, lineno, names) eric5.VCS.CommandOptionsDialog.vcsCommandOptionsDialog.getOptions?4() eric5.VCS.CommandOptionsDialog.vcsCommandOptionsDialog?1(vcs, parent=None) eric5.VCS.ProjectBrowserHelper.VcsProjectBrowserHelper._VCSAdd?5()
--- a/APIs/Python3/eric5.bas Thu Mar 28 20:09:00 2013 +0100 +++ b/APIs/Python3/eric5.bas Mon Apr 08 07:52:06 2013 +0200 @@ -63,6 +63,7 @@ ChatWidget QWidget Ui_ChatWidget ChromeImporter BookmarksImporter Class ClbrBaseClasses.Class VisibilityMixin +ClassDefinition Definition ClassItem UMLItem ClassModel UMLModel ClassScope Scope @@ -119,6 +120,7 @@ DebuggerPython3Page ConfigurationPageBase Ui_DebuggerPython3Page DebuggerPythonPage ConfigurationPageBase Ui_DebuggerPythonPage DebuggerRubyPage ConfigurationPageBase Ui_DebuggerRubyPage +Definition Binding DeleteFilesConfirmationDialog QDialog Ui_DeleteFilesConfirmationDialog DiffDialog QWidget Ui_DiffDialog DiffWindow E5MainWindow @@ -556,7 +558,9 @@ Rebase HgExtension RebaseProjectHelper HgExtensionProjectHelper RecursionError OverflowError ValueError +Redefined Message RedefinedFunction Message +RedefinedInListComp Message RedefinedWhileUnused Message Redirector QObject RemoveBookmarksCommand QUndoCommand
--- a/Documentation/Help/source.qhp Thu Mar 28 20:09:00 2013 +0100 +++ b/Documentation/Help/source.qhp Mon Apr 08 07:52:06 2013 +0200 @@ -936,6 +936,10 @@ <section title="eric5.Utilities.crypto.py3AES" ref="eric5.Utilities.crypto.py3AES.html" /> <section title="eric5.Utilities.crypto.py3PBKDF2" ref="eric5.Utilities.crypto.py3PBKDF2.html" /> </section> + <section title="eric5.Utilities.py2flakes" ref="index-eric5.Utilities.py2flakes.html"> + <section title="eric5.Utilities.py2flakes.checker" ref="eric5.Utilities.py2flakes.checker.html" /> + <section title="eric5.Utilities.py2flakes.messages" ref="eric5.Utilities.py2flakes.messages.html" /> + </section> <section title="eric5.Utilities.py3flakes" ref="index-eric5.Utilities.py3flakes.html"> <section title="eric5.Utilities.py3flakes.checker" ref="eric5.Utilities.py3flakes.checker.html" /> <section title="eric5.Utilities.py3flakes.messages" ref="eric5.Utilities.py3flakes.messages.html" /> @@ -944,18 +948,14 @@ <section title="eric5.Utilities.FtpUtilities" ref="eric5.Utilities.FtpUtilities.html" /> <section title="eric5.Utilities.ModuleParser" ref="eric5.Utilities.ModuleParser.html" /> <section title="eric5.Utilities.PasswordChecker" ref="eric5.Utilities.PasswordChecker.html" /> + <section title="eric5.Utilities.SyntaxCheck" ref="eric5.Utilities.SyntaxCheck.html" /> <section title="eric5.Utilities.__init__" ref="eric5.Utilities.__init__.html" /> <section title="eric5.Utilities.binplistlib" ref="eric5.Utilities.binplistlib.html" /> <section title="eric5.Utilities.compatibility_fixes" ref="eric5.Utilities.compatibility_fixes.html" /> <section title="eric5.Utilities.uic" ref="eric5.Utilities.uic.html" /> </section> <section title="eric5.UtilitiesPython2" ref="index-eric5.UtilitiesPython2.html"> - <section title="eric5.UtilitiesPython2.py2flakes" ref="index-eric5.UtilitiesPython2.py2flakes.html"> - <section title="eric5.UtilitiesPython2.py2flakes.checker" ref="eric5.UtilitiesPython2.py2flakes.checker.html" /> - <section title="eric5.UtilitiesPython2.py2flakes.messages" ref="eric5.UtilitiesPython2.py2flakes.messages.html" /> - </section> <section title="eric5.UtilitiesPython2.Pep8Checker" ref="eric5.UtilitiesPython2.Pep8Checker.html" /> - <section title="eric5.UtilitiesPython2.Py2SyntaxChecker" ref="eric5.UtilitiesPython2.Py2SyntaxChecker.html" /> <section title="eric5.UtilitiesPython2.PySideImporter" ref="eric5.UtilitiesPython2.PySideImporter.html" /> <section title="eric5.UtilitiesPython2.Tabnanny" ref="eric5.UtilitiesPython2.Tabnanny.html" /> <section title="eric5.UtilitiesPython2.TabnannyChecker" ref="eric5.UtilitiesPython2.TabnannyChecker.html" /> @@ -1319,8 +1319,8 @@ <keyword name="ApplicationPage (Constructor)" id="ApplicationPage (Constructor)" ref="eric5.Preferences.ConfigurationPages.ApplicationPage.html#ApplicationPage.__init__" /> <keyword name="ApplicationPage (Module)" id="ApplicationPage (Module)" ref="eric5.Preferences.ConfigurationPages.ApplicationPage.html" /> <keyword name="ApplicationPage.save" id="ApplicationPage.save" ref="eric5.Preferences.ConfigurationPages.ApplicationPage.html#ApplicationPage.save" /> + <keyword name="Argument" id="Argument" ref="eric5.Utilities.py2flakes.checker.html#Argument" /> <keyword name="Argument" id="Argument" ref="eric5.Utilities.py3flakes.checker.html#Argument" /> - <keyword name="Argument" id="Argument" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Argument" /> <keyword name="ArgumentsError" id="ArgumentsError" ref="eric5.E5Gui.E5Action.html#ArgumentsError" /> <keyword name="ArgumentsError (Constructor)" id="ArgumentsError (Constructor)" ref="eric5.E5Gui.E5Action.html#ArgumentsError.__init__" /> <keyword name="ArgumentsError.__repr__" id="ArgumentsError.__repr__" ref="eric5.E5Gui.E5Action.html#ArgumentsError.__repr__" /> @@ -1328,8 +1328,8 @@ <keyword name="ArrayElementVarItem" id="ArrayElementVarItem" ref="eric5.Debugger.VariablesViewer.html#ArrayElementVarItem" /> <keyword name="ArrayElementVarItem (Constructor)" id="ArrayElementVarItem (Constructor)" ref="eric5.Debugger.VariablesViewer.html#ArrayElementVarItem.__init__" /> <keyword name="ArrayElementVarItem.key" id="ArrayElementVarItem.key" ref="eric5.Debugger.VariablesViewer.html#ArrayElementVarItem.key" /> + <keyword name="Assignment" id="Assignment" ref="eric5.Utilities.py2flakes.checker.html#Assignment" /> <keyword name="Assignment" id="Assignment" ref="eric5.Utilities.py3flakes.checker.html#Assignment" /> - <keyword name="Assignment" id="Assignment" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Assignment" /> <keyword name="AssociationItem" id="AssociationItem" ref="eric5.Graphics.AssociationItem.html#AssociationItem" /> <keyword name="AssociationItem (Constructor)" id="AssociationItem (Constructor)" ref="eric5.Graphics.AssociationItem.html#AssociationItem.__init__" /> <keyword name="AssociationItem (Module)" id="AssociationItem (Module)" ref="eric5.Graphics.AssociationItem.html" /> @@ -1456,14 +1456,14 @@ <keyword name="BinaryModel.setBitsAndValue" id="BinaryModel.setBitsAndValue" ref="eric5.UI.NumbersWidget.html#BinaryModel.setBitsAndValue" /> <keyword name="BinaryModel.setData" id="BinaryModel.setData" ref="eric5.UI.NumbersWidget.html#BinaryModel.setData" /> <keyword name="BinaryModel.setValue" id="BinaryModel.setValue" ref="eric5.UI.NumbersWidget.html#BinaryModel.setValue" /> + <keyword name="Binding" id="Binding" ref="eric5.Utilities.py2flakes.checker.html#Binding" /> <keyword name="Binding" id="Binding" ref="eric5.Utilities.py3flakes.checker.html#Binding" /> - <keyword name="Binding" id="Binding" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Binding" /> + <keyword name="Binding (Constructor)" id="Binding (Constructor)" ref="eric5.Utilities.py2flakes.checker.html#Binding.__init__" /> <keyword name="Binding (Constructor)" id="Binding (Constructor)" ref="eric5.Utilities.py3flakes.checker.html#Binding.__init__" /> - <keyword name="Binding (Constructor)" id="Binding (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Binding.__init__" /> + <keyword name="Binding.__repr__" id="Binding.__repr__" ref="eric5.Utilities.py2flakes.checker.html#Binding.__repr__" /> <keyword name="Binding.__repr__" id="Binding.__repr__" ref="eric5.Utilities.py3flakes.checker.html#Binding.__repr__" /> - <keyword name="Binding.__repr__" id="Binding.__repr__" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Binding.__repr__" /> + <keyword name="Binding.__str__" id="Binding.__str__" ref="eric5.Utilities.py2flakes.checker.html#Binding.__str__" /> <keyword name="Binding.__str__" id="Binding.__str__" ref="eric5.Utilities.py3flakes.checker.html#Binding.__str__" /> - <keyword name="Binding.__str__" id="Binding.__str__" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Binding.__str__" /> <keyword name="BookmarkActionSelectionDialog" id="BookmarkActionSelectionDialog" ref="eric5.Helpviewer.UrlBar.BookmarkActionSelectionDialog.html#BookmarkActionSelectionDialog" /> <keyword name="BookmarkActionSelectionDialog (Constructor)" id="BookmarkActionSelectionDialog (Constructor)" ref="eric5.Helpviewer.UrlBar.BookmarkActionSelectionDialog.html#BookmarkActionSelectionDialog.__init__" /> <keyword name="BookmarkActionSelectionDialog (Module)" id="BookmarkActionSelectionDialog (Module)" ref="eric5.Helpviewer.UrlBar.BookmarkActionSelectionDialog.html" /> @@ -1915,93 +1915,102 @@ <keyword name="ChatWidget.preferencesChanged" id="ChatWidget.preferencesChanged" ref="eric5.Cooperation.ChatWidget.html#ChatWidget.preferencesChanged" /> <keyword name="ChatWidget.shutdown" id="ChatWidget.shutdown" ref="eric5.Cooperation.ChatWidget.html#ChatWidget.shutdown" /> <keyword name="Checker" id="Checker" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker" /> + <keyword name="Checker" id="Checker" ref="eric5.Utilities.py2flakes.checker.html#Checker" /> <keyword name="Checker" id="Checker" ref="eric5.Utilities.py3flakes.checker.html#Checker" /> <keyword name="Checker" id="Checker" ref="eric5.UtilitiesPython2.pep8.html#Checker" /> - <keyword name="Checker" id="Checker" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker" /> <keyword name="Checker (Constructor)" id="Checker (Constructor)" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.__init__" /> + <keyword name="Checker (Constructor)" id="Checker (Constructor)" ref="eric5.Utilities.py2flakes.checker.html#Checker.__init__" /> <keyword name="Checker (Constructor)" id="Checker (Constructor)" ref="eric5.Utilities.py3flakes.checker.html#Checker.__init__" /> <keyword name="Checker (Constructor)" id="Checker (Constructor)" ref="eric5.UtilitiesPython2.pep8.html#Checker.__init__" /> - <keyword name="Checker (Constructor)" id="Checker (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.__init__" /> + <keyword name="Checker.ASSIGN" id="Checker.ASSIGN" ref="eric5.Utilities.py2flakes.checker.html#Checker.ASSIGN" /> <keyword name="Checker.ASSIGN" id="Checker.ASSIGN" ref="eric5.Utilities.py3flakes.checker.html#Checker.ASSIGN" /> - <keyword name="Checker.ASSIGN" id="Checker.ASSIGN" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.ASSIGN" /> + <keyword name="Checker.AUGASSIGN" id="Checker.AUGASSIGN" ref="eric5.Utilities.py2flakes.checker.html#Checker.AUGASSIGN" /> <keyword name="Checker.AUGASSIGN" id="Checker.AUGASSIGN" ref="eric5.Utilities.py3flakes.checker.html#Checker.AUGASSIGN" /> - <keyword name="Checker.AUGASSIGN" id="Checker.AUGASSIGN" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.AUGASSIGN" /> + <keyword name="Checker.CLASSDEF" id="Checker.CLASSDEF" ref="eric5.Utilities.py2flakes.checker.html#Checker.CLASSDEF" /> <keyword name="Checker.CLASSDEF" id="Checker.CLASSDEF" ref="eric5.Utilities.py3flakes.checker.html#Checker.CLASSDEF" /> - <keyword name="Checker.CLASSDEF" id="Checker.CLASSDEF" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.CLASSDEF" /> + <keyword name="Checker.DICTCOMP" id="Checker.DICTCOMP" ref="eric5.Utilities.py2flakes.checker.html#Checker.DICTCOMP" /> <keyword name="Checker.DICTCOMP" id="Checker.DICTCOMP" ref="eric5.Utilities.py3flakes.checker.html#Checker.DICTCOMP" /> - <keyword name="Checker.DICTCOMP" id="Checker.DICTCOMP" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.DICTCOMP" /> + <keyword name="Checker.EXCEPTHANDLER" id="Checker.EXCEPTHANDLER" ref="eric5.Utilities.py2flakes.checker.html#Checker.EXCEPTHANDLER" /> <keyword name="Checker.EXCEPTHANDLER" id="Checker.EXCEPTHANDLER" ref="eric5.Utilities.py3flakes.checker.html#Checker.EXCEPTHANDLER" /> + <keyword name="Checker.FOR" id="Checker.FOR" ref="eric5.Utilities.py2flakes.checker.html#Checker.FOR" /> <keyword name="Checker.FOR" id="Checker.FOR" ref="eric5.Utilities.py3flakes.checker.html#Checker.FOR" /> - <keyword name="Checker.FOR" id="Checker.FOR" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.FOR" /> + <keyword name="Checker.FUNCTIONDEF" id="Checker.FUNCTIONDEF" ref="eric5.Utilities.py2flakes.checker.html#Checker.FUNCTIONDEF" /> <keyword name="Checker.FUNCTIONDEF" id="Checker.FUNCTIONDEF" ref="eric5.Utilities.py3flakes.checker.html#Checker.FUNCTIONDEF" /> - <keyword name="Checker.FUNCTIONDEF" id="Checker.FUNCTIONDEF" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.FUNCTIONDEF" /> + <keyword name="Checker.GLOBAL" id="Checker.GLOBAL" ref="eric5.Utilities.py2flakes.checker.html#Checker.GLOBAL" /> <keyword name="Checker.GLOBAL" id="Checker.GLOBAL" ref="eric5.Utilities.py3flakes.checker.html#Checker.GLOBAL" /> - <keyword name="Checker.GLOBAL" id="Checker.GLOBAL" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.GLOBAL" /> + <keyword name="Checker.IMPORT" id="Checker.IMPORT" ref="eric5.Utilities.py2flakes.checker.html#Checker.IMPORT" /> <keyword name="Checker.IMPORT" id="Checker.IMPORT" ref="eric5.Utilities.py3flakes.checker.html#Checker.IMPORT" /> - <keyword name="Checker.IMPORT" id="Checker.IMPORT" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.IMPORT" /> + <keyword name="Checker.IMPORTFROM" id="Checker.IMPORTFROM" ref="eric5.Utilities.py2flakes.checker.html#Checker.IMPORTFROM" /> <keyword name="Checker.IMPORTFROM" id="Checker.IMPORTFROM" ref="eric5.Utilities.py3flakes.checker.html#Checker.IMPORTFROM" /> - <keyword name="Checker.IMPORTFROM" id="Checker.IMPORTFROM" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.IMPORTFROM" /> + <keyword name="Checker.LAMBDA" id="Checker.LAMBDA" ref="eric5.Utilities.py2flakes.checker.html#Checker.LAMBDA" /> <keyword name="Checker.LAMBDA" id="Checker.LAMBDA" ref="eric5.Utilities.py3flakes.checker.html#Checker.LAMBDA" /> - <keyword name="Checker.LAMBDA" id="Checker.LAMBDA" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.LAMBDA" /> + <keyword name="Checker.LISTCOMP" id="Checker.LISTCOMP" ref="eric5.Utilities.py2flakes.checker.html#Checker.LISTCOMP" /> <keyword name="Checker.LISTCOMP" id="Checker.LISTCOMP" ref="eric5.Utilities.py3flakes.checker.html#Checker.LISTCOMP" /> - <keyword name="Checker.LISTCOMP" id="Checker.LISTCOMP" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.LISTCOMP" /> + <keyword name="Checker.NAME" id="Checker.NAME" ref="eric5.Utilities.py2flakes.checker.html#Checker.NAME" /> <keyword name="Checker.NAME" id="Checker.NAME" ref="eric5.Utilities.py3flakes.checker.html#Checker.NAME" /> - <keyword name="Checker.NAME" id="Checker.NAME" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.NAME" /> <keyword name="Checker.STARRED" id="Checker.STARRED" ref="eric5.Utilities.py3flakes.checker.html#Checker.STARRED" /> <keyword name="Checker._runDeferred" id="Checker._runDeferred" ref="eric5.Utilities.py3flakes.checker.html#Checker._runDeferred" /> - <keyword name="Checker._runDeferred" id="Checker._runDeferred" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker._runDeferred" /> + <keyword name="Checker.addArgs" id="Checker.addArgs" ref="eric5.Utilities.py2flakes.checker.html#Checker.addArgs" /> <keyword name="Checker.addArgs" id="Checker.addArgs" ref="eric5.Utilities.py3flakes.checker.html#Checker.addArgs" /> - <keyword name="Checker.addArgs" id="Checker.addArgs" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.addArgs" /> + <keyword name="Checker.addBinding" id="Checker.addBinding" ref="eric5.Utilities.py2flakes.checker.html#Checker.addBinding" /> <keyword name="Checker.addBinding" id="Checker.addBinding" ref="eric5.Utilities.py3flakes.checker.html#Checker.addBinding" /> - <keyword name="Checker.addBinding" id="Checker.addBinding" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.addBinding" /> <keyword name="Checker.build_tokens_line" id="Checker.build_tokens_line" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.build_tokens_line" /> <keyword name="Checker.build_tokens_line" id="Checker.build_tokens_line" ref="eric5.UtilitiesPython2.pep8.html#Checker.build_tokens_line" /> + <keyword name="Checker.checkDeadScopes" id="Checker.checkDeadScopes" ref="eric5.Utilities.py2flakes.checker.html#Checker.checkDeadScopes" /> + <keyword name="Checker.checkUnusedAssignments" id="Checker.checkUnusedAssignments" ref="eric5.Utilities.py2flakes.checker.html#Checker.checkUnusedAssignments" /> <keyword name="Checker.checkUnusedAssignments" id="Checker.checkUnusedAssignments" ref="eric5.Utilities.py3flakes.checker.html#Checker.checkUnusedAssignments" /> - <keyword name="Checker.checkUnusedAssignments" id="Checker.checkUnusedAssignments" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.checkUnusedAssignments" /> <keyword name="Checker.check_all" id="Checker.check_all" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.check_all" /> <keyword name="Checker.check_all" id="Checker.check_all" ref="eric5.UtilitiesPython2.pep8.html#Checker.check_all" /> <keyword name="Checker.check_dead_scopes" id="Checker.check_dead_scopes" ref="eric5.Utilities.py3flakes.checker.html#Checker.check_dead_scopes" /> - <keyword name="Checker.check_dead_scopes" id="Checker.check_dead_scopes" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.check_dead_scopes" /> <keyword name="Checker.check_logical" id="Checker.check_logical" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.check_logical" /> <keyword name="Checker.check_logical" id="Checker.check_logical" ref="eric5.UtilitiesPython2.pep8.html#Checker.check_logical" /> <keyword name="Checker.check_physical" id="Checker.check_physical" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.check_physical" /> <keyword name="Checker.check_physical" id="Checker.check_physical" ref="eric5.UtilitiesPython2.pep8.html#Checker.check_physical" /> + <keyword name="Checker.collectLoopVars" id="Checker.collectLoopVars" ref="eric5.Utilities.py2flakes.checker.html#Checker.collectLoopVars" /> <keyword name="Checker.collectLoopVars" id="Checker.collectLoopVars" ref="eric5.Utilities.py3flakes.checker.html#Checker.collectLoopVars" /> - <keyword name="Checker.collectLoopVars" id="Checker.collectLoopVars" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.collectLoopVars" /> + <keyword name="Checker.deferAssignment" id="Checker.deferAssignment" ref="eric5.Utilities.py2flakes.checker.html#Checker.deferAssignment" /> <keyword name="Checker.deferAssignment" id="Checker.deferAssignment" ref="eric5.Utilities.py3flakes.checker.html#Checker.deferAssignment" /> - <keyword name="Checker.deferAssignment" id="Checker.deferAssignment" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.deferAssignment" /> + <keyword name="Checker.deferFunction" id="Checker.deferFunction" ref="eric5.Utilities.py2flakes.checker.html#Checker.deferFunction" /> <keyword name="Checker.deferFunction" id="Checker.deferFunction" ref="eric5.Utilities.py3flakes.checker.html#Checker.deferFunction" /> - <keyword name="Checker.deferFunction" id="Checker.deferFunction" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.deferFunction" /> + <keyword name="Checker.descendantOf" id="Checker.descendantOf" ref="eric5.Utilities.py2flakes.checker.html#Checker.descendantOf" /> + <keyword name="Checker.differentForks" id="Checker.differentForks" ref="eric5.Utilities.py2flakes.checker.html#Checker.differentForks" /> + <keyword name="Checker.getCommonAncestor" id="Checker.getCommonAncestor" ref="eric5.Utilities.py2flakes.checker.html#Checker.getCommonAncestor" /> <keyword name="Checker.handleAssignName" id="Checker.handleAssignName" ref="eric5.Utilities.py3flakes.checker.html#Checker.handleAssignName" /> <keyword name="Checker.handleBody" id="Checker.handleBody" ref="eric5.Utilities.py3flakes.checker.html#Checker.handleBody" /> + <keyword name="Checker.handleChildren" id="Checker.handleChildren" ref="eric5.Utilities.py2flakes.checker.html#Checker.handleChildren" /> <keyword name="Checker.handleChildren" id="Checker.handleChildren" ref="eric5.Utilities.py3flakes.checker.html#Checker.handleChildren" /> - <keyword name="Checker.handleChildren" id="Checker.handleChildren" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.handleChildren" /> + <keyword name="Checker.handleNode" id="Checker.handleNode" ref="eric5.Utilities.py2flakes.checker.html#Checker.handleNode" /> <keyword name="Checker.handleNode" id="Checker.handleNode" ref="eric5.Utilities.py3flakes.checker.html#Checker.handleNode" /> - <keyword name="Checker.handleNode" id="Checker.handleNode" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.handleNode" /> + <keyword name="Checker.handleNodeDelete" id="Checker.handleNodeDelete" ref="eric5.Utilities.py2flakes.checker.html#Checker.handleNodeDelete" /> + <keyword name="Checker.handleNodeLoad" id="Checker.handleNodeLoad" ref="eric5.Utilities.py2flakes.checker.html#Checker.handleNodeLoad" /> + <keyword name="Checker.handleNodeStore" id="Checker.handleNodeStore" ref="eric5.Utilities.py2flakes.checker.html#Checker.handleNodeStore" /> + <keyword name="Checker.hasParent" id="Checker.hasParent" ref="eric5.Utilities.py2flakes.checker.html#Checker.hasParent" /> + <keyword name="Checker.ignore" id="Checker.ignore" ref="eric5.Utilities.py2flakes.checker.html#Checker.ignore" /> <keyword name="Checker.ignore" id="Checker.ignore" ref="eric5.Utilities.py3flakes.checker.html#Checker.ignore" /> - <keyword name="Checker.ignore" id="Checker.ignore" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.ignore" /> + <keyword name="Checker.isDocstring" id="Checker.isDocstring" ref="eric5.Utilities.py2flakes.checker.html#Checker.isDocstring" /> <keyword name="Checker.isDocstring" id="Checker.isDocstring" ref="eric5.Utilities.py3flakes.checker.html#Checker.isDocstring" /> - <keyword name="Checker.isDocstring" id="Checker.isDocstring" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.isDocstring" /> + <keyword name="Checker.onFork" id="Checker.onFork" ref="eric5.Utilities.py2flakes.checker.html#Checker.onFork" /> + <keyword name="Checker.popScope" id="Checker.popScope" ref="eric5.Utilities.py2flakes.checker.html#Checker.popScope" /> <keyword name="Checker.popScope" id="Checker.popScope" ref="eric5.Utilities.py3flakes.checker.html#Checker.popScope" /> - <keyword name="Checker.popScope" id="Checker.popScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.popScope" /> + <keyword name="Checker.pushClassScope" id="Checker.pushClassScope" ref="eric5.Utilities.py2flakes.checker.html#Checker.pushClassScope" /> <keyword name="Checker.pushClassScope" id="Checker.pushClassScope" ref="eric5.Utilities.py3flakes.checker.html#Checker.pushClassScope" /> - <keyword name="Checker.pushClassScope" id="Checker.pushClassScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.pushClassScope" /> + <keyword name="Checker.pushFunctionScope" id="Checker.pushFunctionScope" ref="eric5.Utilities.py2flakes.checker.html#Checker.pushFunctionScope" /> <keyword name="Checker.pushFunctionScope" id="Checker.pushFunctionScope" ref="eric5.Utilities.py3flakes.checker.html#Checker.pushFunctionScope" /> - <keyword name="Checker.pushFunctionScope" id="Checker.pushFunctionScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.pushFunctionScope" /> <keyword name="Checker.readline" id="Checker.readline" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.readline" /> <keyword name="Checker.readline" id="Checker.readline" ref="eric5.UtilitiesPython2.pep8.html#Checker.readline" /> <keyword name="Checker.readline_check_physical" id="Checker.readline_check_physical" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.readline_check_physical" /> <keyword name="Checker.readline_check_physical" id="Checker.readline_check_physical" ref="eric5.UtilitiesPython2.pep8.html#Checker.readline_check_physical" /> + <keyword name="Checker.report" id="Checker.report" ref="eric5.Utilities.py2flakes.checker.html#Checker.report" /> <keyword name="Checker.report" id="Checker.report" ref="eric5.Utilities.py3flakes.checker.html#Checker.report" /> - <keyword name="Checker.report" id="Checker.report" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.report" /> <keyword name="Checker.report_error" id="Checker.report_error" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.report_error" /> <keyword name="Checker.report_error" id="Checker.report_error" ref="eric5.UtilitiesPython2.pep8.html#Checker.report_error" /> + <keyword name="Checker.runDeferred" id="Checker.runDeferred" ref="eric5.Utilities.py2flakes.checker.html#Checker.runDeferred" /> + <keyword name="Checker.runFunction" id="Checker.runFunction" ref="eric5.Utilities.py2flakes.checker.html#Checker.runFunction" /> <keyword name="Checker.runFunction" id="Checker.runFunction" ref="eric5.Utilities.py3flakes.checker.html#Checker.runFunction" /> - <keyword name="Checker.runFunction" id="Checker.runFunction" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.runFunction" /> <keyword name="Checker.run_check" id="Checker.run_check" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#Checker.run_check" /> <keyword name="Checker.run_check" id="Checker.run_check" ref="eric5.UtilitiesPython2.pep8.html#Checker.run_check" /> + <keyword name="Checker.scope" id="Checker.scope" ref="eric5.Utilities.py2flakes.checker.html#Checker.scope" /> <keyword name="Checker.scope" id="Checker.scope" ref="eric5.Utilities.py3flakes.checker.html#Checker.scope" /> - <keyword name="Checker.scope" id="Checker.scope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Checker.scope" /> <keyword name="CheckerPlugins (Package)" id="CheckerPlugins (Package)" ref="index-eric5.Plugins.CheckerPlugins.html" /> <keyword name="ChromeImporter" id="ChromeImporter" ref="eric5.Helpviewer.Bookmarks.BookmarksImporters.ChromeImporter.html#ChromeImporter" /> <keyword name="ChromeImporter (Constructor)" id="ChromeImporter (Constructor)" ref="eric5.Helpviewer.Bookmarks.BookmarksImporters.ChromeImporter.html#ChromeImporter.__init__" /> @@ -2028,6 +2037,7 @@ <keyword name="Class.getMethod" id="Class.getMethod" ref="eric5.Utilities.ModuleParser.html#Class.getMethod" /> <keyword name="Class.setEndLine" id="Class.setEndLine" ref="eric5.Utilities.ModuleParser.html#Class.setEndLine" /> <keyword name="ClassBrowsers (Package)" id="ClassBrowsers (Package)" ref="index-eric5.Utilities.ClassBrowsers.html" /> + <keyword name="ClassDefinition" id="ClassDefinition" ref="eric5.Utilities.py2flakes.checker.html#ClassDefinition" /> <keyword name="ClassItem" id="ClassItem" ref="eric5.Graphics.ClassItem.html#ClassItem" /> <keyword name="ClassItem (Constructor)" id="ClassItem (Constructor)" ref="eric5.Graphics.ClassItem.html#ClassItem.__init__" /> <keyword name="ClassItem (Module)" id="ClassItem (Module)" ref="eric5.Graphics.ClassItem.html" /> @@ -2044,8 +2054,8 @@ <keyword name="ClassModel.addMethod" id="ClassModel.addMethod" ref="eric5.Graphics.ClassItem.html#ClassModel.addMethod" /> <keyword name="ClassModel.getAttributes" id="ClassModel.getAttributes" ref="eric5.Graphics.ClassItem.html#ClassModel.getAttributes" /> <keyword name="ClassModel.getMethods" id="ClassModel.getMethods" ref="eric5.Graphics.ClassItem.html#ClassModel.getMethods" /> + <keyword name="ClassScope" id="ClassScope" ref="eric5.Utilities.py2flakes.checker.html#ClassScope" /> <keyword name="ClassScope" id="ClassScope" ref="eric5.Utilities.py3flakes.checker.html#ClassScope" /> - <keyword name="ClassScope" id="ClassScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#ClassScope" /> <keyword name="ClbrBase" id="ClbrBase" ref="eric5.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrBase" /> <keyword name="ClbrBase (Constructor)" id="ClbrBase (Constructor)" ref="eric5.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrBase.__init__" /> <keyword name="ClbrBase._addattribute" id="ClbrBase._addattribute" ref="eric5.Utilities.ClassBrowsers.ClbrBaseClasses.html#ClbrBase._addattribute" /> @@ -3192,6 +3202,7 @@ <keyword name="DebuggerRubyPage.on_rubyInterpreterButton_clicked" id="DebuggerRubyPage.on_rubyInterpreterButton_clicked" ref="eric5.Preferences.ConfigurationPages.DebuggerRubyPage.html#DebuggerRubyPage.on_rubyInterpreterButton_clicked" /> <keyword name="DebuggerRubyPage.save" id="DebuggerRubyPage.save" ref="eric5.Preferences.ConfigurationPages.DebuggerRubyPage.html#DebuggerRubyPage.save" /> <keyword name="DefaultBookmarks (Module)" id="DefaultBookmarks (Module)" ref="eric5.Helpviewer.Bookmarks.DefaultBookmarks.html" /> + <keyword name="Definition" id="Definition" ref="eric5.Utilities.py2flakes.checker.html#Definition" /> <keyword name="DeleteFilesConfirmationDialog" id="DeleteFilesConfirmationDialog" ref="eric5.UI.DeleteFilesConfirmationDialog.html#DeleteFilesConfirmationDialog" /> <keyword name="DeleteFilesConfirmationDialog (Constructor)" id="DeleteFilesConfirmationDialog (Constructor)" ref="eric5.UI.DeleteFilesConfirmationDialog.html#DeleteFilesConfirmationDialog.__init__" /> <keyword name="DeleteFilesConfirmationDialog (Module)" id="DeleteFilesConfirmationDialog (Module)" ref="eric5.UI.DeleteFilesConfirmationDialog.html" /> @@ -3314,10 +3325,10 @@ <keyword name="DownloadModel.removeRows" id="DownloadModel.removeRows" ref="eric5.Helpviewer.Download.DownloadModel.html#DownloadModel.removeRows" /> <keyword name="DownloadModel.rowCount" id="DownloadModel.rowCount" ref="eric5.Helpviewer.Download.DownloadModel.html#DownloadModel.rowCount" /> <keyword name="DownloadUtilities (Module)" id="DownloadUtilities (Module)" ref="eric5.Helpviewer.Download.DownloadUtilities.html" /> + <keyword name="DuplicateArgument" id="DuplicateArgument" ref="eric5.Utilities.py2flakes.messages.html#DuplicateArgument" /> <keyword name="DuplicateArgument" id="DuplicateArgument" ref="eric5.Utilities.py3flakes.messages.html#DuplicateArgument" /> - <keyword name="DuplicateArgument" id="DuplicateArgument" ref="eric5.UtilitiesPython2.py2flakes.messages.html#DuplicateArgument" /> + <keyword name="DuplicateArgument (Constructor)" id="DuplicateArgument (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#DuplicateArgument.__init__" /> <keyword name="DuplicateArgument (Constructor)" id="DuplicateArgument (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#DuplicateArgument.__init__" /> - <keyword name="DuplicateArgument (Constructor)" id="DuplicateArgument (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#DuplicateArgument.__init__" /> <keyword name="E5Action" id="E5Action" ref="eric5.E5Gui.E5Action.html#E5Action" /> <keyword name="E5Action (Constructor)" id="E5Action (Constructor)" ref="eric5.E5Gui.E5Action.html#E5Action.__init__" /> <keyword name="E5Action (Module)" id="E5Action (Module)" ref="eric5.E5Gui.E5Action.html" /> @@ -4483,10 +4494,10 @@ <keyword name="ExceptionsFilterDialog.on_deleteButton_clicked" id="ExceptionsFilterDialog.on_deleteButton_clicked" ref="eric5.Debugger.ExceptionsFilterDialog.html#ExceptionsFilterDialog.on_deleteButton_clicked" /> <keyword name="ExceptionsFilterDialog.on_exceptionEdit_textChanged" id="ExceptionsFilterDialog.on_exceptionEdit_textChanged" ref="eric5.Debugger.ExceptionsFilterDialog.html#ExceptionsFilterDialog.on_exceptionEdit_textChanged" /> <keyword name="ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged" id="ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged" ref="eric5.Debugger.ExceptionsFilterDialog.html#ExceptionsFilterDialog.on_exceptionList_itemSelectionChanged" /> + <keyword name="ExportBinding" id="ExportBinding" ref="eric5.Utilities.py2flakes.checker.html#ExportBinding" /> <keyword name="ExportBinding" id="ExportBinding" ref="eric5.Utilities.py3flakes.checker.html#ExportBinding" /> - <keyword name="ExportBinding" id="ExportBinding" ref="eric5.UtilitiesPython2.py2flakes.checker.html#ExportBinding" /> + <keyword name="ExportBinding.names" id="ExportBinding.names" ref="eric5.Utilities.py2flakes.checker.html#ExportBinding.names" /> <keyword name="ExportBinding.names" id="ExportBinding.names" ref="eric5.Utilities.py3flakes.checker.html#ExportBinding.names" /> - <keyword name="ExportBinding.names" id="ExportBinding.names" ref="eric5.UtilitiesPython2.py2flakes.checker.html#ExportBinding.names" /> <keyword name="ExporterBase" id="ExporterBase" ref="eric5.QScintilla.Exporters.ExporterBase.html#ExporterBase" /> <keyword name="ExporterBase (Constructor)" id="ExporterBase (Constructor)" ref="eric5.QScintilla.Exporters.ExporterBase.html#ExporterBase.__init__" /> <keyword name="ExporterBase (Module)" id="ExporterBase (Module)" ref="eric5.QScintilla.Exporters.ExporterBase.html" /> @@ -4766,12 +4777,12 @@ <keyword name="Function (Constructor)" id="Function (Constructor)" ref="eric5.Utilities.ClassBrowsers.rbclbr.html#Function.__init__" /> <keyword name="Function (Constructor)" id="Function (Constructor)" ref="eric5.Utilities.ModuleParser.html#Function.__init__" /> <keyword name="Function.addDescription" id="Function.addDescription" ref="eric5.Utilities.ModuleParser.html#Function.addDescription" /> + <keyword name="FunctionDefinition" id="FunctionDefinition" ref="eric5.Utilities.py2flakes.checker.html#FunctionDefinition" /> <keyword name="FunctionDefinition" id="FunctionDefinition" ref="eric5.Utilities.py3flakes.checker.html#FunctionDefinition" /> - <keyword name="FunctionDefinition" id="FunctionDefinition" ref="eric5.UtilitiesPython2.py2flakes.checker.html#FunctionDefinition" /> + <keyword name="FunctionScope" id="FunctionScope" ref="eric5.Utilities.py2flakes.checker.html#FunctionScope" /> <keyword name="FunctionScope" id="FunctionScope" ref="eric5.Utilities.py3flakes.checker.html#FunctionScope" /> - <keyword name="FunctionScope" id="FunctionScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#FunctionScope" /> + <keyword name="FunctionScope (Constructor)" id="FunctionScope (Constructor)" ref="eric5.Utilities.py2flakes.checker.html#FunctionScope.__init__" /> <keyword name="FunctionScope (Constructor)" id="FunctionScope (Constructor)" ref="eric5.Utilities.py3flakes.checker.html#FunctionScope.__init__" /> - <keyword name="FunctionScope (Constructor)" id="FunctionScope (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.checker.html#FunctionScope.__init__" /> <keyword name="Globals (Package)" id="Globals (Package)" ref="index-eric5.Globals.html" /> <keyword name="GotoDialog" id="GotoDialog" ref="eric5.QScintilla.GotoDialog.html#GotoDialog" /> <keyword name="GotoDialog (Constructor)" id="GotoDialog (Constructor)" ref="eric5.QScintilla.GotoDialog.html#GotoDialog.__init__" /> @@ -6445,18 +6456,18 @@ <keyword name="IconsPreviewDialog" id="IconsPreviewDialog" ref="eric5.Preferences.ConfigurationPages.IconsPreviewDialog.html#IconsPreviewDialog" /> <keyword name="IconsPreviewDialog (Constructor)" id="IconsPreviewDialog (Constructor)" ref="eric5.Preferences.ConfigurationPages.IconsPreviewDialog.html#IconsPreviewDialog.__init__" /> <keyword name="IconsPreviewDialog (Module)" id="IconsPreviewDialog (Module)" ref="eric5.Preferences.ConfigurationPages.IconsPreviewDialog.html" /> + <keyword name="ImportShadowedByLoopVar" id="ImportShadowedByLoopVar" ref="eric5.Utilities.py2flakes.messages.html#ImportShadowedByLoopVar" /> <keyword name="ImportShadowedByLoopVar" id="ImportShadowedByLoopVar" ref="eric5.Utilities.py3flakes.messages.html#ImportShadowedByLoopVar" /> - <keyword name="ImportShadowedByLoopVar" id="ImportShadowedByLoopVar" ref="eric5.UtilitiesPython2.py2flakes.messages.html#ImportShadowedByLoopVar" /> + <keyword name="ImportShadowedByLoopVar (Constructor)" id="ImportShadowedByLoopVar (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#ImportShadowedByLoopVar.__init__" /> <keyword name="ImportShadowedByLoopVar (Constructor)" id="ImportShadowedByLoopVar (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#ImportShadowedByLoopVar.__init__" /> - <keyword name="ImportShadowedByLoopVar (Constructor)" id="ImportShadowedByLoopVar (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#ImportShadowedByLoopVar.__init__" /> + <keyword name="ImportStarUsed" id="ImportStarUsed" ref="eric5.Utilities.py2flakes.messages.html#ImportStarUsed" /> <keyword name="ImportStarUsed" id="ImportStarUsed" ref="eric5.Utilities.py3flakes.messages.html#ImportStarUsed" /> - <keyword name="ImportStarUsed" id="ImportStarUsed" ref="eric5.UtilitiesPython2.py2flakes.messages.html#ImportStarUsed" /> + <keyword name="ImportStarUsed (Constructor)" id="ImportStarUsed (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#ImportStarUsed.__init__" /> <keyword name="ImportStarUsed (Constructor)" id="ImportStarUsed (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#ImportStarUsed.__init__" /> - <keyword name="ImportStarUsed (Constructor)" id="ImportStarUsed (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#ImportStarUsed.__init__" /> + <keyword name="Importation" id="Importation" ref="eric5.Utilities.py2flakes.checker.html#Importation" /> <keyword name="Importation" id="Importation" ref="eric5.Utilities.py3flakes.checker.html#Importation" /> - <keyword name="Importation" id="Importation" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Importation" /> + <keyword name="Importation (Constructor)" id="Importation (Constructor)" ref="eric5.Utilities.py2flakes.checker.html#Importation.__init__" /> <keyword name="Importation (Constructor)" id="Importation (Constructor)" ref="eric5.Utilities.py3flakes.checker.html#Importation.__init__" /> - <keyword name="Importation (Constructor)" id="Importation (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Importation.__init__" /> <keyword name="ImportsDiagramBuilder" id="ImportsDiagramBuilder" ref="eric5.Graphics.ImportsDiagramBuilder.html#ImportsDiagramBuilder" /> <keyword name="ImportsDiagramBuilder (Constructor)" id="ImportsDiagramBuilder (Constructor)" ref="eric5.Graphics.ImportsDiagramBuilder.html#ImportsDiagramBuilder.__init__" /> <keyword name="ImportsDiagramBuilder (Module)" id="ImportsDiagramBuilder (Module)" ref="eric5.Graphics.ImportsDiagramBuilder.html" /> @@ -6836,10 +6847,10 @@ <keyword name="JavaScriptExternalObject (Constructor)" id="JavaScriptExternalObject (Constructor)" ref="eric5.Helpviewer.HelpBrowserWV.html#JavaScriptExternalObject.__init__" /> <keyword name="JavaScriptExternalObject.AddSearchProvider" id="JavaScriptExternalObject.AddSearchProvider" ref="eric5.Helpviewer.HelpBrowserWV.html#JavaScriptExternalObject.AddSearchProvider" /> <keyword name="JavaScriptResources (Module)" id="JavaScriptResources (Module)" ref="eric5.Helpviewer.JavaScriptResources.html" /> + <keyword name="LateFutureImport" id="LateFutureImport" ref="eric5.Utilities.py2flakes.messages.html#LateFutureImport" /> <keyword name="LateFutureImport" id="LateFutureImport" ref="eric5.Utilities.py3flakes.messages.html#LateFutureImport" /> - <keyword name="LateFutureImport" id="LateFutureImport" ref="eric5.UtilitiesPython2.py2flakes.messages.html#LateFutureImport" /> + <keyword name="LateFutureImport (Constructor)" id="LateFutureImport (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#LateFutureImport.__init__" /> <keyword name="LateFutureImport (Constructor)" id="LateFutureImport (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#LateFutureImport.__init__" /> - <keyword name="LateFutureImport (Constructor)" id="LateFutureImport (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#LateFutureImport.__init__" /> <keyword name="Lexer" id="Lexer" ref="eric5.QScintilla.Lexers.Lexer.html#Lexer" /> <keyword name="Lexer (Constructor)" id="Lexer (Constructor)" ref="eric5.QScintilla.Lexers.Lexer.html#Lexer.__init__" /> <keyword name="Lexer (Module)" id="Lexer (Module)" ref="eric5.QScintilla.Lexers.Lexer.html" /> @@ -7195,14 +7206,14 @@ <keyword name="MercurialPage (Module)" id="MercurialPage (Module)" ref="eric5.Plugins.VcsPlugins.vcsMercurial.ConfigurationPage.MercurialPage.html" /> <keyword name="MercurialPage.on_configButton_clicked" id="MercurialPage.on_configButton_clicked" ref="eric5.Plugins.VcsPlugins.vcsMercurial.ConfigurationPage.MercurialPage.html#MercurialPage.on_configButton_clicked" /> <keyword name="MercurialPage.save" id="MercurialPage.save" ref="eric5.Plugins.VcsPlugins.vcsMercurial.ConfigurationPage.MercurialPage.html#MercurialPage.save" /> + <keyword name="Message" id="Message" ref="eric5.Utilities.py2flakes.messages.html#Message" /> <keyword name="Message" id="Message" ref="eric5.Utilities.py3flakes.messages.html#Message" /> - <keyword name="Message" id="Message" ref="eric5.UtilitiesPython2.py2flakes.messages.html#Message" /> + <keyword name="Message (Constructor)" id="Message (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#Message.__init__" /> <keyword name="Message (Constructor)" id="Message (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#Message.__init__" /> - <keyword name="Message (Constructor)" id="Message (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#Message.__init__" /> + <keyword name="Message.__str__" id="Message.__str__" ref="eric5.Utilities.py2flakes.messages.html#Message.__str__" /> <keyword name="Message.__str__" id="Message.__str__" ref="eric5.Utilities.py3flakes.messages.html#Message.__str__" /> - <keyword name="Message.__str__" id="Message.__str__" ref="eric5.UtilitiesPython2.py2flakes.messages.html#Message.__str__" /> + <keyword name="Message.getMessageData" id="Message.getMessageData" ref="eric5.Utilities.py2flakes.messages.html#Message.getMessageData" /> <keyword name="Message.getMessageData" id="Message.getMessageData" ref="eric5.Utilities.py3flakes.messages.html#Message.getMessageData" /> - <keyword name="Message.getMessageData" id="Message.getMessageData" ref="eric5.UtilitiesPython2.py2flakes.messages.html#Message.getMessageData" /> <keyword name="MessageBoxWizard" id="MessageBoxWizard" ref="eric5.Plugins.PluginWizardQMessageBox.html#MessageBoxWizard" /> <keyword name="MessageBoxWizard (Constructor)" id="MessageBoxWizard (Constructor)" ref="eric5.Plugins.PluginWizardQMessageBox.html#MessageBoxWizard.__init__" /> <keyword name="MessageBoxWizard (Package)" id="MessageBoxWizard (Package)" ref="index-eric5.Plugins.WizardPlugins.MessageBoxWizard.html" /> @@ -7366,8 +7377,8 @@ <keyword name="ModuleModel.addClass" id="ModuleModel.addClass" ref="eric5.Graphics.ModuleItem.html#ModuleModel.addClass" /> <keyword name="ModuleModel.getClasses" id="ModuleModel.getClasses" ref="eric5.Graphics.ModuleItem.html#ModuleModel.getClasses" /> <keyword name="ModuleParser (Module)" id="ModuleParser (Module)" ref="eric5.Utilities.ModuleParser.html" /> + <keyword name="ModuleScope" id="ModuleScope" ref="eric5.Utilities.py2flakes.checker.html#ModuleScope" /> <keyword name="ModuleScope" id="ModuleScope" ref="eric5.Utilities.py3flakes.checker.html#ModuleScope" /> - <keyword name="ModuleScope" id="ModuleScope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#ModuleScope" /> <keyword name="MultiProject" id="MultiProject" ref="eric5.MultiProject.MultiProject.html#MultiProject" /> <keyword name="MultiProject (Constructor)" id="MultiProject (Constructor)" ref="eric5.MultiProject.MultiProject.html#MultiProject.__init__" /> <keyword name="MultiProject (Module)" id="MultiProject (Module)" ref="eric5.MultiProject.MultiProject.html" /> @@ -8719,7 +8730,6 @@ <keyword name="PurgeProjectHelper.initActions" id="PurgeProjectHelper.initActions" ref="eric5.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.ProjectHelper.html#PurgeProjectHelper.initActions" /> <keyword name="PurgeProjectHelper.initMenu" id="PurgeProjectHelper.initMenu" ref="eric5.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.ProjectHelper.html#PurgeProjectHelper.initMenu" /> <keyword name="PurgeProjectHelper.menuTitle" id="PurgeProjectHelper.menuTitle" ref="eric5.Plugins.VcsPlugins.vcsMercurial.PurgeExtension.ProjectHelper.html#PurgeProjectHelper.menuTitle" /> - <keyword name="Py2SyntaxChecker (Module)" id="Py2SyntaxChecker (Module)" ref="eric5.UtilitiesPython2.Py2SyntaxChecker.html" /> <keyword name="Py3FlakesPage" id="Py3FlakesPage" ref="eric5.Preferences.ConfigurationPages.Py3FlakesPage.html#Py3FlakesPage" /> <keyword name="Py3FlakesPage (Constructor)" id="Py3FlakesPage (Constructor)" ref="eric5.Preferences.ConfigurationPages.Py3FlakesPage.html#Py3FlakesPage.__init__" /> <keyword name="Py3FlakesPage (Module)" id="Py3FlakesPage (Module)" ref="eric5.Preferences.ConfigurationPages.Py3FlakesPage.html" /> @@ -8916,6 +8926,8 @@ <keyword name="QRegExpWizardWindow (Constructor)" id="QRegExpWizardWindow (Constructor)" ref="eric5.Plugins.WizardPlugins.QRegExpWizard.QRegExpWizardDialog.html#QRegExpWizardWindow.__init__" /> <keyword name="QSCINTILLA_VERSION" id="QSCINTILLA_VERSION" ref="eric5.QScintilla.QsciScintillaCompat.html#QSCINTILLA_VERSION" /> <keyword name="QScintilla (Package)" id="QScintilla (Package)" ref="index-eric5.QScintilla.html" /> + <keyword name="QT_TRANSLATE_NOOP" id="QT_TRANSLATE_NOOP" ref="eric5.Utilities.py2flakes.messages.html#QT_TRANSLATE_NOOP" /> + <keyword name="QT_TRANSLATE_NOOP" id="QT_TRANSLATE_NOOP" ref="eric5.Utilities.py3flakes.messages.html#QT_TRANSLATE_NOOP" /> <keyword name="QsciScintillaCompat" id="QsciScintillaCompat" ref="eric5.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat" /> <keyword name="QsciScintillaCompat (Constructor)" id="QsciScintillaCompat (Constructor)" ref="eric5.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.__init__" /> <keyword name="QsciScintillaCompat (Module)" id="QsciScintillaCompat (Module)" ref="eric5.QScintilla.QsciScintillaCompat.html" /> @@ -9145,14 +9157,16 @@ <keyword name="RebaseProjectHelper.initMenu" id="RebaseProjectHelper.initMenu" ref="eric5.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.ProjectHelper.html#RebaseProjectHelper.initMenu" /> <keyword name="RebaseProjectHelper.menuTitle" id="RebaseProjectHelper.menuTitle" ref="eric5.Plugins.VcsPlugins.vcsMercurial.RebaseExtension.ProjectHelper.html#RebaseProjectHelper.menuTitle" /> <keyword name="RecursionError" id="RecursionError" ref="eric5.Graphics.GraphicsUtilities.html#RecursionError" /> + <keyword name="Redefined" id="Redefined" ref="eric5.Utilities.py2flakes.messages.html#Redefined" /> + <keyword name="Redefined (Constructor)" id="Redefined (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#Redefined.__init__" /> <keyword name="RedefinedFunction" id="RedefinedFunction" ref="eric5.Utilities.py3flakes.messages.html#RedefinedFunction" /> - <keyword name="RedefinedFunction" id="RedefinedFunction" ref="eric5.UtilitiesPython2.py2flakes.messages.html#RedefinedFunction" /> <keyword name="RedefinedFunction (Constructor)" id="RedefinedFunction (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#RedefinedFunction.__init__" /> - <keyword name="RedefinedFunction (Constructor)" id="RedefinedFunction (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#RedefinedFunction.__init__" /> + <keyword name="RedefinedInListComp" id="RedefinedInListComp" ref="eric5.Utilities.py2flakes.messages.html#RedefinedInListComp" /> + <keyword name="RedefinedInListComp (Constructor)" id="RedefinedInListComp (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#RedefinedInListComp.__init__" /> + <keyword name="RedefinedWhileUnused" id="RedefinedWhileUnused" ref="eric5.Utilities.py2flakes.messages.html#RedefinedWhileUnused" /> <keyword name="RedefinedWhileUnused" id="RedefinedWhileUnused" ref="eric5.Utilities.py3flakes.messages.html#RedefinedWhileUnused" /> - <keyword name="RedefinedWhileUnused" id="RedefinedWhileUnused" ref="eric5.UtilitiesPython2.py2flakes.messages.html#RedefinedWhileUnused" /> + <keyword name="RedefinedWhileUnused (Constructor)" id="RedefinedWhileUnused (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#RedefinedWhileUnused.__init__" /> <keyword name="RedefinedWhileUnused (Constructor)" id="RedefinedWhileUnused (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#RedefinedWhileUnused.__init__" /> - <keyword name="RedefinedWhileUnused (Constructor)" id="RedefinedWhileUnused (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#RedefinedWhileUnused.__init__" /> <keyword name="Redirector" id="Redirector" ref="eric5.UI.UserInterface.html#Redirector" /> <keyword name="Redirector (Constructor)" id="Redirector (Constructor)" ref="eric5.UI.UserInterface.html#Redirector.__init__" /> <keyword name="Redirector.__bufferedWrite" id="Redirector.__bufferedWrite" ref="eric5.UI.UserInterface.html#Redirector.__bufferedWrite" /> @@ -9179,12 +9193,11 @@ <keyword name="SchemeAccessHandler (Constructor)" id="SchemeAccessHandler (Constructor)" ref="eric5.Helpviewer.Network.SchemeAccessHandler.html#SchemeAccessHandler.__init__" /> <keyword name="SchemeAccessHandler (Module)" id="SchemeAccessHandler (Module)" ref="eric5.Helpviewer.Network.SchemeAccessHandler.html" /> <keyword name="SchemeAccessHandler.createRequest" id="SchemeAccessHandler.createRequest" ref="eric5.Helpviewer.Network.SchemeAccessHandler.html#SchemeAccessHandler.createRequest" /> + <keyword name="Scope" id="Scope" ref="eric5.Utilities.py2flakes.checker.html#Scope" /> <keyword name="Scope" id="Scope" ref="eric5.Utilities.py3flakes.checker.html#Scope" /> - <keyword name="Scope" id="Scope" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Scope" /> <keyword name="Scope (Constructor)" id="Scope (Constructor)" ref="eric5.Utilities.py3flakes.checker.html#Scope.__init__" /> - <keyword name="Scope (Constructor)" id="Scope (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Scope.__init__" /> + <keyword name="Scope.__repr__" id="Scope.__repr__" ref="eric5.Utilities.py2flakes.checker.html#Scope.__repr__" /> <keyword name="Scope.__repr__" id="Scope.__repr__" ref="eric5.Utilities.py3flakes.checker.html#Scope.__repr__" /> - <keyword name="Scope.__repr__" id="Scope.__repr__" ref="eric5.UtilitiesPython2.py2flakes.checker.html#Scope.__repr__" /> <keyword name="SearchReplaceSlidingWidget" id="SearchReplaceSlidingWidget" ref="eric5.QScintilla.SearchReplaceWidget.html#SearchReplaceSlidingWidget" /> <keyword name="SearchReplaceSlidingWidget (Constructor)" id="SearchReplaceSlidingWidget (Constructor)" ref="eric5.QScintilla.SearchReplaceWidget.html#SearchReplaceSlidingWidget.__init__" /> <keyword name="SearchReplaceSlidingWidget.__enableScrollerButtons" id="SearchReplaceSlidingWidget.__enableScrollerButtons" ref="eric5.QScintilla.SearchReplaceWidget.html#SearchReplaceSlidingWidget.__enableScrollerButtons" /> @@ -10644,6 +10657,7 @@ <keyword name="SyncManager.loadSettings" id="SyncManager.loadSettings" ref="eric5.Helpviewer.Sync.SyncManager.html#SyncManager.loadSettings" /> <keyword name="SyncManager.showSyncDialog" id="SyncManager.showSyncDialog" ref="eric5.Helpviewer.Sync.SyncManager.html#SyncManager.showSyncDialog" /> <keyword name="SyncManager.syncEnabled" id="SyncManager.syncEnabled" ref="eric5.Helpviewer.Sync.SyncManager.html#SyncManager.syncEnabled" /> + <keyword name="SyntaxCheck (Module)" id="SyntaxCheck (Module)" ref="eric5.Utilities.SyntaxCheck.html" /> <keyword name="SyntaxChecker (Package)" id="SyntaxChecker (Package)" ref="index-eric5.Plugins.CheckerPlugins.SyntaxChecker.html" /> <keyword name="SyntaxCheckerDialog" id="SyntaxCheckerDialog" ref="eric5.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckerDialog.html#SyntaxCheckerDialog" /> <keyword name="SyntaxCheckerDialog (Constructor)" id="SyntaxCheckerDialog (Constructor)" ref="eric5.Plugins.CheckerPlugins.SyntaxChecker.SyntaxCheckerDialog.html#SyntaxCheckerDialog.__init__" /> @@ -11213,20 +11227,20 @@ <keyword name="UMLSceneSizeDialog.getData" id="UMLSceneSizeDialog.getData" ref="eric5.Graphics.UMLSceneSizeDialog.html#UMLSceneSizeDialog.getData" /> <keyword name="Uid" id="Uid" ref="eric5.Utilities.binplistlib.html#Uid" /> <keyword name="Uid.__repr__" id="Uid.__repr__" ref="eric5.Utilities.binplistlib.html#Uid.__repr__" /> + <keyword name="UnBinding" id="UnBinding" ref="eric5.Utilities.py2flakes.checker.html#UnBinding" /> <keyword name="UnBinding" id="UnBinding" ref="eric5.Utilities.py3flakes.checker.html#UnBinding" /> - <keyword name="UnBinding" id="UnBinding" ref="eric5.UtilitiesPython2.py2flakes.checker.html#UnBinding" /> + <keyword name="UndefinedExport" id="UndefinedExport" ref="eric5.Utilities.py2flakes.messages.html#UndefinedExport" /> <keyword name="UndefinedExport" id="UndefinedExport" ref="eric5.Utilities.py3flakes.messages.html#UndefinedExport" /> - <keyword name="UndefinedExport" id="UndefinedExport" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedExport" /> + <keyword name="UndefinedExport (Constructor)" id="UndefinedExport (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#UndefinedExport.__init__" /> <keyword name="UndefinedExport (Constructor)" id="UndefinedExport (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#UndefinedExport.__init__" /> - <keyword name="UndefinedExport (Constructor)" id="UndefinedExport (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedExport.__init__" /> + <keyword name="UndefinedLocal" id="UndefinedLocal" ref="eric5.Utilities.py2flakes.messages.html#UndefinedLocal" /> <keyword name="UndefinedLocal" id="UndefinedLocal" ref="eric5.Utilities.py3flakes.messages.html#UndefinedLocal" /> - <keyword name="UndefinedLocal" id="UndefinedLocal" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedLocal" /> + <keyword name="UndefinedLocal (Constructor)" id="UndefinedLocal (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#UndefinedLocal.__init__" /> <keyword name="UndefinedLocal (Constructor)" id="UndefinedLocal (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#UndefinedLocal.__init__" /> - <keyword name="UndefinedLocal (Constructor)" id="UndefinedLocal (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedLocal.__init__" /> + <keyword name="UndefinedName" id="UndefinedName" ref="eric5.Utilities.py2flakes.messages.html#UndefinedName" /> <keyword name="UndefinedName" id="UndefinedName" ref="eric5.Utilities.py3flakes.messages.html#UndefinedName" /> - <keyword name="UndefinedName" id="UndefinedName" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedName" /> + <keyword name="UndefinedName (Constructor)" id="UndefinedName (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#UndefinedName.__init__" /> <keyword name="UndefinedName (Constructor)" id="UndefinedName (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#UndefinedName.__init__" /> - <keyword name="UndefinedName (Constructor)" id="UndefinedName (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UndefinedName.__init__" /> <keyword name="UnittestDialog" id="UnittestDialog" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog" /> <keyword name="UnittestDialog (Constructor)" id="UnittestDialog (Constructor)" ref="eric5.PyUnit.UnittestDialog.html#UnittestDialog.__init__" /> <keyword name="UnittestDialog (Module)" id="UnittestDialog (Module)" ref="eric5.PyUnit.UnittestDialog.html" /> @@ -11256,14 +11270,14 @@ <keyword name="UnittestWindow" id="UnittestWindow" ref="eric5.PyUnit.UnittestDialog.html#UnittestWindow" /> <keyword name="UnittestWindow (Constructor)" id="UnittestWindow (Constructor)" ref="eric5.PyUnit.UnittestDialog.html#UnittestWindow.__init__" /> <keyword name="UnittestWindow.eventFilter" id="UnittestWindow.eventFilter" ref="eric5.PyUnit.UnittestDialog.html#UnittestWindow.eventFilter" /> + <keyword name="UnusedImport" id="UnusedImport" ref="eric5.Utilities.py2flakes.messages.html#UnusedImport" /> <keyword name="UnusedImport" id="UnusedImport" ref="eric5.Utilities.py3flakes.messages.html#UnusedImport" /> - <keyword name="UnusedImport" id="UnusedImport" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UnusedImport" /> + <keyword name="UnusedImport (Constructor)" id="UnusedImport (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#UnusedImport.__init__" /> <keyword name="UnusedImport (Constructor)" id="UnusedImport (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#UnusedImport.__init__" /> - <keyword name="UnusedImport (Constructor)" id="UnusedImport (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UnusedImport.__init__" /> + <keyword name="UnusedVariable" id="UnusedVariable" ref="eric5.Utilities.py2flakes.messages.html#UnusedVariable" /> <keyword name="UnusedVariable" id="UnusedVariable" ref="eric5.Utilities.py3flakes.messages.html#UnusedVariable" /> - <keyword name="UnusedVariable" id="UnusedVariable" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UnusedVariable" /> + <keyword name="UnusedVariable (Constructor)" id="UnusedVariable (Constructor)" ref="eric5.Utilities.py2flakes.messages.html#UnusedVariable.__init__" /> <keyword name="UnusedVariable (Constructor)" id="UnusedVariable (Constructor)" ref="eric5.Utilities.py3flakes.messages.html#UnusedVariable.__init__" /> - <keyword name="UnusedVariable (Constructor)" id="UnusedVariable (Constructor)" ref="eric5.UtilitiesPython2.py2flakes.messages.html#UnusedVariable.__init__" /> <keyword name="UrlBar" id="UrlBar" ref="eric5.Helpviewer.UrlBar.UrlBar.html#UrlBar" /> <keyword name="UrlBar (Constructor)" id="UrlBar (Constructor)" ref="eric5.Helpviewer.UrlBar.UrlBar.html#UrlBar.__init__" /> <keyword name="UrlBar (Module)" id="UrlBar (Module)" ref="eric5.Helpviewer.UrlBar.UrlBar.html" /> @@ -12234,14 +12248,13 @@ <keyword name="check" id="check" ref="eric5.UtilitiesPython2.Tabnanny.html#check" /> <keyword name="checkBlacklistedVersions" id="checkBlacklistedVersions" ref="eric5.Globals.__init__.html#checkBlacklistedVersions" /> <keyword name="checkPyside" id="checkPyside" ref="eric5.Utilities.__init__.html#checkPyside" /> + <keyword name="checker (Module)" id="checker (Module)" ref="eric5.Utilities.py2flakes.checker.html" /> <keyword name="checker (Module)" id="checker (Module)" ref="eric5.Utilities.py3flakes.checker.html" /> - <keyword name="checker (Module)" id="checker (Module)" ref="eric5.UtilitiesPython2.py2flakes.checker.html" /> <keyword name="cleanUp" id="cleanUp" ref="eric5.install.html#cleanUp" /> <keyword name="close" id="close" ref="eric5.DebugClients.Ruby.AsyncFile.html#close" /> <keyword name="compactPath" id="compactPath" ref="eric5.Utilities.__init__.html#compactPath" /> <keyword name="compatibility_fixes (Module)" id="compatibility_fixes (Module)" ref="eric5.Utilities.compatibility_fixes.html" /> <keyword name="compile" id="compile" ref="eric5.Utilities.__init__.html#compile" /> - <keyword name="compile" id="compile" ref="eric5.UtilitiesPython2.Py2SyntaxChecker.html#compile" /> <keyword name="compileUiDir" id="compileUiDir" ref="eric5.Utilities.uic.html#compileUiDir" /> <keyword name="compileUiDir" id="compileUiDir" ref="eric5.compileUiFiles.html#compileUiDir" /> <keyword name="compileUiDir" id="compileUiDir" ref="eric5.install.html#compileUiDir" /> @@ -12249,6 +12262,8 @@ <keyword name="compileUiFiles" id="compileUiFiles" ref="eric5.compileUiFiles.html#compileUiFiles" /> <keyword name="compileUiFiles" id="compileUiFiles" ref="eric5.install.html#compileUiFiles" /> <keyword name="compileUiFiles (Module)" id="compileUiFiles (Module)" ref="eric5.compileUiFiles.html" /> + <keyword name="compile_and_check" id="compile_and_check" ref="eric5.Utilities.SyntaxCheck.html#compile_and_check" /> + <keyword name="compile_extern" id="compile_extern" ref="eric5.Utilities.__init__.html#compile_extern" /> <keyword name="compile_ui" id="compile_ui" ref="eric5.Utilities.uic.html#compile_ui" /> <keyword name="compile_ui" id="compile_ui" ref="eric5.compileUiFiles.html#compile_ui" /> <keyword name="compile_ui" id="compile_ui" ref="eric5.install.html#compile_ui" /> @@ -12350,7 +12365,7 @@ <keyword name="dataString" id="dataString" ref="eric5.Helpviewer.Download.DownloadUtilities.html#dataString" /> <keyword name="dateFromTime_t" id="dateFromTime_t" ref="eric5.Plugins.VcsPlugins.vcsPySvn.SvnUtilities.html#dateFromTime_t" /> <keyword name="debug_thread_info" id="debug_thread_info" ref="eric5.DebugClients.Ruby.Debuggee.html#debug_thread_info" /> - <keyword name="decode" id="decode" ref="eric5.Utilities.__init__.html#decode" /> + <keyword name="decode" id="decode" ref="eric5.Utilities.SyntaxCheck.html#decode" /> <keyword name="decode" id="decode" ref="eric5.UtilitiesPython2.Tools.html#decode" /> <keyword name="decodeBytes" id="decodeBytes" ref="eric5.Utilities.__init__.html#decodeBytes" /> <keyword name="decodeString" id="decodeString" ref="eric5.Utilities.__init__.html#decodeString" /> @@ -12408,7 +12423,7 @@ <keyword name="exportShortcuts" id="exportShortcuts" ref="eric5.Preferences.Shortcuts.html#exportShortcuts" /> <keyword name="extractFlags" id="extractFlags" ref="eric5.Utilities.__init__.html#extractFlags" /> <keyword name="extractFlagsFromFile" id="extractFlagsFromFile" ref="eric5.Utilities.__init__.html#extractFlagsFromFile" /> - <keyword name="extractLineFlags" id="extractLineFlags" ref="eric5.Utilities.__init__.html#extractLineFlags" /> + <keyword name="extractLineFlags" id="extractLineFlags" ref="eric5.Utilities.SyntaxCheck.html#extractLineFlags" /> <keyword name="extractLineFlags" id="extractLineFlags" ref="eric5.UtilitiesPython2.Tools.html#extractLineFlags" /> <keyword name="extraneous_whitespace" id="extraneous_whitespace" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#extraneous_whitespace" /> <keyword name="extraneous_whitespace" id="extraneous_whitespace" ref="eric5.UtilitiesPython2.pep8.html#extraneous_whitespace" /> @@ -12424,7 +12439,6 @@ <keyword name="find_checks" id="find_checks" ref="eric5.UtilitiesPython2.pep8.html#find_checks" /> <keyword name="find_module" id="find_module" ref="eric5.Utilities.ClassBrowsers.__init__.html#find_module" /> <keyword name="find_module" id="find_module" ref="eric5.Utilities.ModuleParser.html#find_module" /> - <keyword name="flakesCheck" id="flakesCheck" ref="eric5.UtilitiesPython2.Py2SyntaxChecker.html#flakesCheck" /> <keyword name="flush" id="flush" ref="eric5.DebugClients.Ruby.AsyncFile.html#flush" /> <keyword name="formatTime" id="formatTime" ref="eric5.Plugins.VcsPlugins.vcsPySvn.SvnUtilities.html#formatTime" /> <keyword name="format_witnesses" id="format_witnesses" ref="eric5.Plugins.CheckerPlugins.Tabnanny.Tabnanny.html#format_witnesses" /> @@ -12488,6 +12502,7 @@ <keyword name="getLexer" id="getLexer" ref="eric5.QScintilla.Lexers.__init__.html#getLexer" /> <keyword name="getMessage" id="getMessage" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#getMessage" /> <keyword name="getMultiProject" id="getMultiProject" ref="eric5.Preferences.__init__.html#getMultiProject" /> + <keyword name="getNodeName" id="getNodeName" ref="eric5.Utilities.py2flakes.checker.html#getNodeName" /> <keyword name="getOpenFileFiltersList" id="getOpenFileFiltersList" ref="eric5.QScintilla.Lexers.__init__.html#getOpenFileFiltersList" /> <keyword name="getOpenFileName" id="getOpenFileName" ref="eric5.E5Gui.E5FileDialog.html#getOpenFileName" /> <keyword name="getOpenFileNameAndFilter" id="getOpenFileNameAndFilter" ref="eric5.E5Gui.E5FileDialog.html#getOpenFileNameAndFilter" /> @@ -12546,7 +12561,7 @@ <keyword name="get_class_members" id="get_class_members" ref="eric5.DebugClients.Python3.FlexCompleter.html#get_class_members" /> <keyword name="get_coding" id="get_coding" ref="eric5.Utilities.__init__.html#get_coding" /> <keyword name="get_coding" id="get_coding" ref="eric5.UtilitiesPython2.Tools.html#get_coding" /> - <keyword name="get_codingBytes" id="get_codingBytes" ref="eric5.Utilities.__init__.html#get_codingBytes" /> + <keyword name="get_codingBytes" id="get_codingBytes" ref="eric5.Utilities.SyntaxCheck.html#get_codingBytes" /> <keyword name="get_count" id="get_count" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#get_count" /> <keyword name="get_count" id="get_count" ref="eric5.UtilitiesPython2.pep8.html#get_count" /> <keyword name="get_error_statistics" id="get_error_statistics" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#get_error_statistics" /> @@ -12610,7 +12625,7 @@ <keyword name="is_stream_binary_plist" id="is_stream_binary_plist" ref="eric5.Utilities.binplistlib.html#is_stream_binary_plist" /> <keyword name="isatty" id="isatty" ref="eric5.DebugClients.Ruby.AsyncFile.html#isatty" /> <keyword name="isinpath" id="isinpath" ref="eric5.Utilities.__init__.html#isinpath" /> - <keyword name="iter_child_nodes" id="iter_child_nodes" ref="eric5.UtilitiesPython2.py2flakes.checker.html#iter_child_nodes" /> + <keyword name="iter_child_nodes" id="iter_child_nodes" ref="eric5.Utilities.py2flakes.checker.html#iter_child_nodes" /> <keyword name="joinext" id="joinext" ref="eric5.Utilities.__init__.html#joinext" /> <keyword name="linesep" id="linesep" ref="eric5.Utilities.__init__.html#linesep" /> <keyword name="loadTranslatorForLocale" id="loadTranslatorForLocale" ref="eric5.Toolbox.Startup.html#loadTranslatorForLocale" /> @@ -12647,8 +12662,8 @@ <keyword name="maximum_line_length" id="maximum_line_length" ref="eric5.UtilitiesPython2.pep8.html#maximum_line_length" /> <keyword name="message" id="message" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#message" /> <keyword name="message" id="message" ref="eric5.UtilitiesPython2.pep8.html#message" /> + <keyword name="messages (Module)" id="messages (Module)" ref="eric5.Utilities.py2flakes.messages.html" /> <keyword name="messages (Module)" id="messages (Module)" ref="eric5.Utilities.py3flakes.messages.html" /> - <keyword name="messages (Module)" id="messages (Module)" ref="eric5.UtilitiesPython2.py2flakes.messages.html" /> <keyword name="missing_newline" id="missing_newline" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#missing_newline" /> <keyword name="missing_newline" id="missing_newline" ref="eric5.UtilitiesPython2.pep8.html#missing_newline" /> <keyword name="missing_whitespace" id="missing_whitespace" ref="eric5.Plugins.CheckerPlugins.Pep8.pep8.html#missing_whitespace" /> @@ -12659,6 +12674,7 @@ <keyword name="mute_string" id="mute_string" ref="eric5.UtilitiesPython2.pep8.html#mute_string" /> <keyword name="normabsjoinpath" id="normabsjoinpath" ref="eric5.Utilities.__init__.html#normabsjoinpath" /> <keyword name="normabspath" id="normabspath" ref="eric5.Utilities.__init__.html#normabspath" /> + <keyword name="normalizeCode" id="normalizeCode" ref="eric5.Utilities.SyntaxCheck.html#normalizeCode" /> <keyword name="normalizeCode" id="normalizeCode" ref="eric5.UtilitiesPython2.Tools.html#normalizeCode" /> <keyword name="normcaseabspath" id="normcaseabspath" ref="eric5.Utilities.__init__.html#normcaseabspath" /> <keyword name="normcasepath" id="normcasepath" ref="eric5.Utilities.__init__.html#normcasepath" /> @@ -12698,8 +12714,7 @@ <keyword name="pwEncrypt" id="pwEncrypt" ref="eric5.Utilities.crypto.__init__.html#pwEncrypt" /> <keyword name="pwRecode" id="pwRecode" ref="eric5.Utilities.crypto.__init__.html#pwRecode" /> <keyword name="pwReencrypt" id="pwReencrypt" ref="eric5.Utilities.crypto.__init__.html#pwReencrypt" /> - <keyword name="py2compile" id="py2compile" ref="eric5.Utilities.__init__.html#py2compile" /> - <keyword name="py2flakes (Package)" id="py2flakes (Package)" ref="index-eric5.UtilitiesPython2.py2flakes.html" /> + <keyword name="py2flakes (Package)" id="py2flakes (Package)" ref="index-eric5.Utilities.py2flakes.html" /> <keyword name="py3AES (Module)" id="py3AES (Module)" ref="eric5.Utilities.crypto.py3AES.html" /> <keyword name="py3PBKDF2 (Module)" id="py3PBKDF2 (Module)" ref="eric5.Utilities.crypto.py3PBKDF2.html" /> <keyword name="py3flakes (Package)" id="py3flakes (Package)" ref="index-eric5.Utilities.py3flakes.html" /> @@ -12719,7 +12734,7 @@ <keyword name="queues (Module)" id="queues (Module)" ref="eric5.Plugins.VcsPlugins.vcsMercurial.QueuesExtension.queues.html" /> <keyword name="rbclbr (Module)" id="rbclbr (Module)" ref="eric5.Utilities.ClassBrowsers.rbclbr.html" /> <keyword name="read" id="read" ref="eric5.DebugClients.Ruby.AsyncFile.html#read" /> - <keyword name="readEncodedFile" id="readEncodedFile" ref="eric5.Utilities.__init__.html#readEncodedFile" /> + <keyword name="readEncodedFile" id="readEncodedFile" ref="eric5.Utilities.SyntaxCheck.html#readEncodedFile" /> <keyword name="readEncodedFile" id="readEncodedFile" ref="eric5.UtilitiesPython2.Tools.html#readEncodedFile" /> <keyword name="readEncodedFileWithHash" id="readEncodedFileWithHash" ref="eric5.Utilities.__init__.html#readEncodedFileWithHash" /> <keyword name="readModule" id="readModule" ref="eric5.Utilities.ModuleParser.html#readModule" /> @@ -12755,6 +12770,7 @@ <keyword name="run_tests" id="run_tests" ref="eric5.UtilitiesPython2.pep8.html#run_tests" /> <keyword name="runcall" id="runcall" ref="eric5.DebugClients.Python.eric5dbgstub.html#runcall" /> <keyword name="runcall" id="runcall" ref="eric5.DebugClients.Python3.eric5dbgstub.html#runcall" /> + <keyword name="samefilepath" id="samefilepath" ref="eric5.Utilities.__init__.html#samefilepath" /> <keyword name="samepath" id="samepath" ref="eric5.Utilities.__init__.html#samepath" /> <keyword name="saveResetLayout" id="saveResetLayout" ref="eric5.Preferences.__init__.html#saveResetLayout" /> <keyword name="saveShortcuts" id="saveShortcuts" ref="eric5.Preferences.Shortcuts.html#saveShortcuts" /> @@ -13626,12 +13642,15 @@ <file>eric5.Utilities.FtpUtilities.html</file> <file>eric5.Utilities.ModuleParser.html</file> <file>eric5.Utilities.PasswordChecker.html</file> + <file>eric5.Utilities.SyntaxCheck.html</file> <file>eric5.Utilities.__init__.html</file> <file>eric5.Utilities.binplistlib.html</file> <file>eric5.Utilities.compatibility_fixes.html</file> <file>eric5.Utilities.crypto.__init__.html</file> <file>eric5.Utilities.crypto.py3AES.html</file> <file>eric5.Utilities.crypto.py3PBKDF2.html</file> + <file>eric5.Utilities.py2flakes.checker.html</file> + <file>eric5.Utilities.py2flakes.messages.html</file> <file>eric5.Utilities.py3flakes.checker.html</file> <file>eric5.Utilities.py3flakes.messages.html</file> <file>eric5.Utilities.uic.html</file> @@ -13777,6 +13796,7 @@ <file>index-eric5.Utilities.ClassBrowsers.html</file> <file>index-eric5.Utilities.crypto.html</file> <file>index-eric5.Utilities.html</file> + <file>index-eric5.Utilities.py2flakes.html</file> <file>index-eric5.Utilities.py3flakes.html</file> <file>index-eric5.UtilitiesPython2.html</file> <file>index-eric5.UtilitiesPython2.py2flakes.html</file>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric5.Utilities.SyntaxCheck.html Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,187 @@ +<!DOCTYPE html> +<html><head> +<title>eric5.Utilities.SyntaxCheck</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric5.Utilities.SyntaxCheck</h1> +<p> +Module implementing the syntax check for Python 2/3. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>codingBytes_regexps</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Functions</h3> +<table> +<tr> +<td><a href="#compile_and_check">compile_and_check</a></td> +<td>Function to compile one Python source file to Python bytecode and to perform a pyflakes check.</td> +</tr><tr> +<td><a href="#decode">decode</a></td> +<td>Function to decode some byte text into a string.</td> +</tr><tr> +<td><a href="#extractLineFlags">extractLineFlags</a></td> +<td>Function to extract flags starting and ending with '__' from a line comment.</td> +</tr><tr> +<td><a href="#get_codingBytes">get_codingBytes</a></td> +<td>Function to get the coding of a bytes text.</td> +</tr><tr> +<td><a href="#normalizeCode">normalizeCode</a></td> +<td>Function to normalize the given code.</td> +</tr><tr> +<td><a href="#readEncodedFile">readEncodedFile</a></td> +<td>Function to read a file and decode it's contents into proper text.</td> +</tr> +</table> +<hr /><hr /> +<a NAME="compile_and_check" ID="compile_and_check"></a> +<h2>compile_and_check</h2> +<b>compile_and_check</b>(<i>file_, codestring="", checkFlakes=True, ignoreStarImportWarnings=False</i>) +<p> + Function to compile one Python source file to Python bytecode + and to perform a pyflakes check. +</p><dl> +<dt><i>file_</i></dt> +<dd> +source filename (string) +</dd><dt><i>codestring</i></dt> +<dd> +string containing the code to compile (string) +</dd><dt><i>checkFlakes=</i></dt> +<dd> +flag indicating to do a pyflakes check (boolean) +</dd><dt><i>ignoreStarImportWarnings=</i></dt> +<dd> +flag indicating to + ignore 'star import' warnings (boolean) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +A tuple indicating status (True = an error was found), the + file name, the line number, the index number, the code string + and the error message (boolean, string, string, string, string, + string). If checkFlakes is True, a list of strings containing the + warnings (marker, file name, line number, message) + The values are only valid, if the status is True. +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="decode" ID="decode"></a> +<h2>decode</h2> +<b>decode</b>(<i>text</i>) +<p> + Function to decode some byte text into a string. +</p><dl> +<dt><i>text</i></dt> +<dd> +byte text to decode (bytes) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +tuple of decoded text and encoding (string, string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="extractLineFlags" ID="extractLineFlags"></a> +<h2>extractLineFlags</h2> +<b>extractLineFlags</b>(<i>line, startComment="</i>) +<p> + Function to extract flags starting and ending with '__' from a line comment. +</p><dl> +<dt><i>line</i></dt> +<dd> +line to extract flags from (string) +</dd><dt><i>startComment=</i></dt> +<dd> +string identifying the start of the comment (string) +</dd><dt><i>endComment=</i></dt> +<dd> +string identifying the end of a comment (string) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +list containing the extracted flags (list of strings) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="get_codingBytes" ID="get_codingBytes"></a> +<h2>get_codingBytes</h2> +<b>get_codingBytes</b>(<i>text</i>) +<p> + Function to get the coding of a bytes text. +</p><dl> +<dt><i>text</i></dt> +<dd> +bytes text to inspect (bytes) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +coding string +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="normalizeCode" ID="normalizeCode"></a> +<h2>normalizeCode</h2> +<b>normalizeCode</b>(<i>codestring</i>) +<p> + Function to normalize the given code. +</p><dl> +<dt><i>codestring</i></dt> +<dd> +code to be normalized (string) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +normalized code (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="readEncodedFile" ID="readEncodedFile"></a> +<h2>readEncodedFile</h2> +<b>readEncodedFile</b>(<i>filename</i>) +<p> + Function to read a file and decode it's contents into proper text. +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file to read (string) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +tuple of decoded text and encoding (string, string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/Documentation/Source/eric5.Utilities.__init__.html Thu Mar 28 20:09:00 2013 +0100 +++ b/Documentation/Source/eric5.Utilities.__init__.html Mon Apr 08 07:52:06 2013 +0200 @@ -25,7 +25,7 @@ </p> <h3>Global Attributes</h3> <table> -<tr><td>_escape</td></tr><tr><td>_escape_map</td></tr><tr><td>_uescape</td></tr><tr><td>_uunescape</td></tr><tr><td>codingBytes_regexps</td></tr><tr><td>coding_regexps</td></tr><tr><td>configDir</td></tr><tr><td>supportedCodecs</td></tr> +<tr><td>_escape</td></tr><tr><td>_escape_map</td></tr><tr><td>_uescape</td></tr><tr><td>_uunescape</td></tr><tr><td>coding_regexps</td></tr><tr><td>configDir</td></tr><tr><td>supportedCodecs</td></tr> </table> <h3>Classes</h3> <table> @@ -52,12 +52,12 @@ <td><a href="#compile">compile</a></td> <td>Function to compile one Python source file to Python bytecode.</td> </tr><tr> +<td><a href="#compile_extern">compile_extern</a></td> +<td>Function to compile one Python source file to Python bytecode.</td> +</tr><tr> <td><a href="#convertLineEnds">convertLineEnds</a></td> <td>Function to convert the end of line characters.</td> </tr><tr> -<td><a href="#decode">decode</a></td> -<td>Function to decode some byte text into a string.</td> -</tr><tr> <td><a href="#decodeBytes">decodeBytes</a></td> <td>Function to decode some byte text into a string.</td> </tr><tr> @@ -82,9 +82,6 @@ <td><a href="#extractFlagsFromFile">extractFlagsFromFile</a></td> <td>Function to extract eric specific flags out of the given file.</td> </tr><tr> -<td><a href="#extractLineFlags">extractLineFlags</a></td> -<td>Function to extract flags starting and ending with '__' from a line comment.</td> -</tr><tr> <td><a href="#fromNativeSeparators">fromNativeSeparators</a></td> <td>Function returning a path, that is using "/" separator characters.</td> </tr><tr> @@ -145,9 +142,6 @@ <td><a href="#get_coding">get_coding</a></td> <td>Function to get the coding of a text.</td> </tr><tr> -<td><a href="#get_codingBytes">get_codingBytes</a></td> -<td>Function to get the coding of a bytes text.</td> -</tr><tr> <td><a href="#hasEnvironmentEntry">hasEnvironmentEntry</a></td> <td>Module function to check, if the environment contains an entry.</td> </tr><tr> @@ -199,12 +193,6 @@ <td><a href="#prepareQtMacBundle">prepareQtMacBundle</a></td> <td>Module function for starting Qt tools that are Mac OS X bundles.</td> </tr><tr> -<td><a href="#py2compile">py2compile</a></td> -<td>Function to compile one Python 2 source file to Python 2 bytecode.</td> -</tr><tr> -<td><a href="#readEncodedFile">readEncodedFile</a></td> -<td>Function to read a file and decode it's contents into proper text.</td> -</tr><tr> <td><a href="#readEncodedFileWithHash">readEncodedFileWithHash</a></td> <td>Function to read a file, calculate a hash value and decode it's contents into proper text.</td> </tr><tr> @@ -214,6 +202,9 @@ <td><a href="#relpath">relpath</a></td> <td>Return a relative version of a path.</td> </tr><tr> +<td><a href="#samefilepath">samefilepath</a></td> +<td>Function to compare two paths.</td> +</tr><tr> <td><a href="#samepath">samepath</a></td> <td>Function to compare two paths.</td> </tr><tr> @@ -394,7 +385,7 @@ <hr /><hr /> <a NAME="compile" ID="compile"></a> <h2>compile</h2> -<b>compile</b>(<i>file, codestring=""</i>) +<b>compile</b>(<i>file, codestring="", isPy2=False</i>) <p> Function to compile one Python source file to Python bytecode. </p><dl> @@ -404,6 +395,9 @@ </dd><dt><i>codestring</i></dt> <dd> string containing the code to compile (string) +</dd><dt><i>isPy2</i></dt> +<dd> +shows which interperter to use (boolean) </dd> </dl><dl> <dt>Returns:</dt> @@ -416,6 +410,33 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> +<a NAME="compile_extern" ID="compile_extern"></a> +<h2>compile_extern</h2> +<b>compile_extern</b>(<i>file, isPy2, checkFlakes=True, ignoreStarImportWarnings=False</i>) +<p> + Function to compile one Python source file to Python bytecode. +</p><dl> +<dt><i>file</i></dt> +<dd> +source filename (string) +</dd><dt><i>checkFlakes=</i></dt> +<dd> +flag indicating to do a pyflakes check (boolean) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +A tuple indicating status (True = an error was found), the + file name, the line number, the index number, the code string, + the error message and a list of tuples of pyflakes warnings indicating + file name, line number and message (boolean, string, string, string, + string, string, list of (string, string, string)). The syntax error + values are only valid, if the status is True. The pyflakes list will + be empty, if a syntax error was detected by the syntax checker. +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> <a NAME="convertLineEnds" ID="convertLineEnds"></a> <h2>convertLineEnds</h2> <b>convertLineEnds</b>(<i>text, eol</i>) @@ -437,24 +458,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="decode" ID="decode"></a> -<h2>decode</h2> -<b>decode</b>(<i>text</i>) -<p> - Function to decode some byte text into a string. -</p><dl> -<dt><i>text</i></dt> -<dd> -byte text to decode (bytes) -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -tuple of decoded text and encoding (string, string) -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="decodeBytes" ID="decodeBytes"></a> <h2>decodeBytes</h2> <b>decodeBytes</b>(<i>buffer</i>) @@ -627,30 +630,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="extractLineFlags" ID="extractLineFlags"></a> -<h2>extractLineFlags</h2> -<b>extractLineFlags</b>(<i>line, startComment="</i>) -<p> - Function to extract flags starting and ending with '__' from a line comment. -</p><dl> -<dt><i>line</i></dt> -<dd> -line to extract flags from (string) -</dd><dt><i>startComment=</i></dt> -<dd> -string identifying the start of the comment (string) -</dd><dt><i>endComment=</i></dt> -<dd> -string identifying the end of a comment (string) -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -list containing the extracted flags (list of strings) -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="fromNativeSeparators" ID="fromNativeSeparators"></a> <h2>fromNativeSeparators</h2> <b>fromNativeSeparators</b>(<i>path</i>) @@ -989,24 +968,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="get_codingBytes" ID="get_codingBytes"></a> -<h2>get_codingBytes</h2> -<b>get_codingBytes</b>(<i>text</i>) -<p> - Function to get the coding of a bytes text. -</p><dl> -<dt><i>text</i></dt> -<dd> -bytes text to inspect (bytes) -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -coding string -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="hasEnvironmentEntry" ID="hasEnvironmentEntry"></a> <h2>hasEnvironmentEntry</h2> <b>hasEnvironmentEntry</b>(<i>key</i>) @@ -1340,51 +1301,6 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> -<a NAME="py2compile" ID="py2compile"></a> -<h2>py2compile</h2> -<b>py2compile</b>(<i>file, checkFlakes=False</i>) -<p> - Function to compile one Python 2 source file to Python 2 bytecode. -</p><dl> -<dt><i>file</i></dt> -<dd> -source filename (string) -</dd><dt><i>checkFlakes=</i></dt> -<dd> -flag indicating to do a pyflakes check (boolean) -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -A tuple indicating status (True = an error was found), the - file name, the line number, the index number, the code string, - the error message and a list of tuples of pyflakes warnings indicating - file name, line number and message (boolean, string, string, string, - string, string, list of (string, string, string)). The syntax error - values are only valid, if the status is True. The pyflakes list will - be empty, if a syntax error was detected by the syntax checker. -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> -<a NAME="readEncodedFile" ID="readEncodedFile"></a> -<h2>readEncodedFile</h2> -<b>readEncodedFile</b>(<i>filename</i>) -<p> - Function to read a file and decode it's contents into proper text. -</p><dl> -<dt><i>filename</i></dt> -<dd> -name of the file to read (string) -</dd> -</dl><dl> -<dt>Returns:</dt> -<dd> -tuple of decoded text and encoding (string, string) -</dd> -</dl> -<div align="right"><a href="#top">Up</a></div> -<hr /><hr /> <a NAME="readEncodedFileWithHash" ID="readEncodedFileWithHash"></a> <h2>readEncodedFileWithHash</h2> <b>readEncodedFileWithHash</b>(<i>filename</i>) @@ -1438,6 +1354,28 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> +<a NAME="samefilepath" ID="samefilepath"></a> +<h2>samefilepath</h2> +<b>samefilepath</b>(<i>f1, f2</i>) +<p> + Function to compare two paths. Strips the filename. +</p><dl> +<dt><i>f1</i></dt> +<dd> +first filepath for the compare (string) +</dd><dt><i>f2</i></dt> +<dd> +second filepath for the compare (string) +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +flag indicating whether the two paths represent the + same path on disk. +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> <a NAME="samepath" ID="samepath"></a> <h2>samepath</h2> <b>samepath</b>(<i>f1, f2</i>)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric5.Utilities.py2flakes.checker.html Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,796 @@ +<!DOCTYPE html> +<html><head> +<title>eric5.Utilities.py2flakes.checker</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric5.Utilities.py2flakes.checker</h1> + +<h3>Global Attributes</h3> +<table> +<tr><td>_MAGIC_GLOBALS</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#Argument">Argument</a></td> +<td>Represents binding a name as an argument.</td> +</tr><tr> +<td><a href="#Assignment">Assignment</a></td> +<td>Represents binding a name with an explicit assignment.</td> +</tr><tr> +<td><a href="#Binding">Binding</a></td> +<td>Represents the binding of a value to a name.</td> +</tr><tr> +<td><a href="#Checker">Checker</a></td> +<td>I check the cleanliness and sanity of Python code.</td> +</tr><tr> +<td><a href="#ClassDefinition">ClassDefinition</a></td> +<td></td> +</tr><tr> +<td><a href="#ClassScope">ClassScope</a></td> +<td></td> +</tr><tr> +<td><a href="#Definition">Definition</a></td> +<td>A binding that defines a function or a class.</td> +</tr><tr> +<td><a href="#ExportBinding">ExportBinding</a></td> +<td>A binding created by an C{__all__} assignment.</td> +</tr><tr> +<td><a href="#FunctionDefinition">FunctionDefinition</a></td> +<td></td> +</tr><tr> +<td><a href="#FunctionScope">FunctionScope</a></td> +<td>I represent a name scope for a function.</td> +</tr><tr> +<td><a href="#Importation">Importation</a></td> +<td>A binding created by an import statement.</td> +</tr><tr> +<td><a href="#ModuleScope">ModuleScope</a></td> +<td></td> +</tr><tr> +<td><a href="#Scope">Scope</a></td> +<td></td> +</tr><tr> +<td><a href="#UnBinding">UnBinding</a></td> +<td>Created by the 'del' operator.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr> +<td><a href="#getNodeName">getNodeName</a></td> +<td></td> +</tr><tr> +<td><a href="#iter_child_nodes">iter_child_nodes</a></td> +<td>Yield all direct child nodes of *node*, that is, all fields that are nodes and all items of fields that are lists of nodes.</td> +</tr> +</table> +<hr /><hr /> +<a NAME="Argument" ID="Argument"></a> +<h2>Argument</h2> +<p> + Represents binding a name as an argument. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Assignment" ID="Assignment"></a> +<h2>Assignment</h2> +<p> + Represents binding a name with an explicit assignment. +</p><p> + The checker will raise warnings for any Assignment that isn't used. Also, + the checker does not consider assignments in tuple/list unpacking to be + Assignments, rather it treats them as simple Bindings. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Binding" ID="Binding"></a> +<h2>Binding</h2> +<p> + Represents the binding of a value to a name. +</p><p> + The checker uses this to keep track of which names have been bound and + which names have not. See L{Assignment} for a special type of binding that + is checked with stricter rules. +</p> +<h3>Derived from</h3> +object +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Binding.__init__">Binding</a></td> +<td></td> +</tr><tr> +<td><a href="#Binding.__repr__">__repr__</a></td> +<td></td> +</tr><tr> +<td><a href="#Binding.__str__">__str__</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Binding.__init__" ID="Binding.__init__"></a> +<h4>Binding (Constructor)</h4> +<b>Binding</b>(<i>name, source</i>) +<a NAME="Binding.__repr__" ID="Binding.__repr__"></a> +<h4>Binding.__repr__</h4> +<b>__repr__</b>(<i></i>) +<a NAME="Binding.__str__" ID="Binding.__str__"></a> +<h4>Binding.__str__</h4> +<b>__str__</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Checker" ID="Checker"></a> +<h2>Checker</h2> +<p> + I check the cleanliness and sanity of Python code. +</p> +<h3>Derived from</h3> +object +<h3>Class Attributes</h3> +<table> +<tr><td>AND</td></tr><tr><td>BOOLOP</td></tr><tr><td>COMPREHENSION</td></tr><tr><td>CONTINUE</td></tr><tr><td>GENERATOREXP</td></tr><tr><td>LOAD</td></tr><tr><td>NONLOCAL</td></tr><tr><td>NUM</td></tr><tr><td>RETURN</td></tr><tr><td>SLICE</td></tr><tr><td>builtIns</td></tr><tr><td>nodeDepth</td></tr><tr><td>traceTree</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Checker.__init__">Checker</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.ASSIGN">ASSIGN</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.AUGASSIGN">AUGASSIGN</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.CLASSDEF">CLASSDEF</a></td> +<td>Check names used in a class definition, including its decorators, base classes, and the body of its definition.</td> +</tr><tr> +<td><a href="#Checker.DICTCOMP">DICTCOMP</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.EXCEPTHANDLER">EXCEPTHANDLER</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.FOR">FOR</a></td> +<td>Process bindings for loop variables.</td> +</tr><tr> +<td><a href="#Checker.FUNCTIONDEF">FUNCTIONDEF</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.GLOBAL">GLOBAL</a></td> +<td>Keep track of globals declarations.</td> +</tr><tr> +<td><a href="#Checker.IMPORT">IMPORT</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.IMPORTFROM">IMPORTFROM</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.LAMBDA">LAMBDA</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.LISTCOMP">LISTCOMP</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.NAME">NAME</a></td> +<td>Handle occurrence of Name (which can be a load/store/delete access.)</td> +</tr><tr> +<td><a href="#Checker.addArgs">addArgs</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.addBinding">addBinding</a></td> +<td>Called when a binding is altered.</td> +</tr><tr> +<td><a href="#Checker.checkDeadScopes">checkDeadScopes</a></td> +<td>Look at scopes which have been fully examined and report names in them which were imported but unused.</td> +</tr><tr> +<td><a href="#Checker.checkUnusedAssignments">checkUnusedAssignments</a></td> +<td>Check to see if any assignments have not been used.</td> +</tr><tr> +<td><a href="#Checker.collectLoopVars">collectLoopVars</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.deferAssignment">deferAssignment</a></td> +<td>Schedule an assignment handler to be called just after deferred function handlers.</td> +</tr><tr> +<td><a href="#Checker.deferFunction">deferFunction</a></td> +<td>Schedule a function handler to be called just before completion.</td> +</tr><tr> +<td><a href="#Checker.descendantOf">descendantOf</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.differentForks">differentForks</a></td> +<td>True, if lnode and rnode are located on different forks of IF/TRY</td> +</tr><tr> +<td><a href="#Checker.getCommonAncestor">getCommonAncestor</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.handleChildren">handleChildren</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.handleNode">handleNode</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.handleNodeDelete">handleNodeDelete</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.handleNodeLoad">handleNodeLoad</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.handleNodeStore">handleNodeStore</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.hasParent">hasParent</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.ignore">ignore</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.isDocstring">isDocstring</a></td> +<td>Determine if the given node is a docstring, as long as it is at the correct place in the node tree.</td> +</tr><tr> +<td><a href="#Checker.onFork">onFork</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.popScope">popScope</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.pushClassScope">pushClassScope</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.pushFunctionScope">pushFunctionScope</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.report">report</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.runDeferred">runDeferred</a></td> +<td>Run the callables in C{deferred} using their associated scope stack.</td> +</tr><tr> +<td><a href="#Checker.runFunction">runFunction</a></td> +<td></td> +</tr><tr> +<td><a href="#Checker.scope">scope</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Checker.__init__" ID="Checker.__init__"></a> +<h4>Checker (Constructor)</h4> +<b>Checker</b>(<i>tree, filename='(none)', builtins=None</i>) +<a NAME="Checker.ASSIGN" ID="Checker.ASSIGN"></a> +<h4>Checker.ASSIGN</h4> +<b>ASSIGN</b>(<i>node</i>) +<a NAME="Checker.AUGASSIGN" ID="Checker.AUGASSIGN"></a> +<h4>Checker.AUGASSIGN</h4> +<b>AUGASSIGN</b>(<i>node</i>) +<a NAME="Checker.CLASSDEF" ID="Checker.CLASSDEF"></a> +<h4>Checker.CLASSDEF</h4> +<b>CLASSDEF</b>(<i>node</i>) +<p> + Check names used in a class definition, including its decorators, base + classes, and the body of its definition. Additionally, add its name to + the current scope. +</p><a NAME="Checker.DICTCOMP" ID="Checker.DICTCOMP"></a> +<h4>Checker.DICTCOMP</h4> +<b>DICTCOMP</b>(<i>node</i>) +<a NAME="Checker.EXCEPTHANDLER" ID="Checker.EXCEPTHANDLER"></a> +<h4>Checker.EXCEPTHANDLER</h4> +<b>EXCEPTHANDLER</b>(<i>node</i>) +<a NAME="Checker.FOR" ID="Checker.FOR"></a> +<h4>Checker.FOR</h4> +<b>FOR</b>(<i>node</i>) +<p> + Process bindings for loop variables. +</p><a NAME="Checker.FUNCTIONDEF" ID="Checker.FUNCTIONDEF"></a> +<h4>Checker.FUNCTIONDEF</h4> +<b>FUNCTIONDEF</b>(<i>node</i>) +<a NAME="Checker.GLOBAL" ID="Checker.GLOBAL"></a> +<h4>Checker.GLOBAL</h4> +<b>GLOBAL</b>(<i>node</i>) +<p> + Keep track of globals declarations. +</p><a NAME="Checker.IMPORT" ID="Checker.IMPORT"></a> +<h4>Checker.IMPORT</h4> +<b>IMPORT</b>(<i>node</i>) +<a NAME="Checker.IMPORTFROM" ID="Checker.IMPORTFROM"></a> +<h4>Checker.IMPORTFROM</h4> +<b>IMPORTFROM</b>(<i>node</i>) +<a NAME="Checker.LAMBDA" ID="Checker.LAMBDA"></a> +<h4>Checker.LAMBDA</h4> +<b>LAMBDA</b>(<i>node</i>) +<a NAME="Checker.LISTCOMP" ID="Checker.LISTCOMP"></a> +<h4>Checker.LISTCOMP</h4> +<b>LISTCOMP</b>(<i>node</i>) +<a NAME="Checker.NAME" ID="Checker.NAME"></a> +<h4>Checker.NAME</h4> +<b>NAME</b>(<i>node</i>) +<p> + Handle occurrence of Name (which can be a load/store/delete access.) +</p><a NAME="Checker.addArgs" ID="Checker.addArgs"></a> +<h4>Checker.addArgs</h4> +<b>addArgs</b>(<i></i>) +<a NAME="Checker.addBinding" ID="Checker.addBinding"></a> +<h4>Checker.addBinding</h4> +<b>addBinding</b>(<i>node, value, reportRedef=True</i>) +<p> + Called when a binding is altered. +</p><p> + - `node` is the statement responsible for the change + - `value` is the optional new value, a Binding instance, associated + with the binding; if None, the binding is deleted if it exists. + - if `reportRedef` is True (default), rebinding while unused will be + reported. +</p><a NAME="Checker.checkDeadScopes" ID="Checker.checkDeadScopes"></a> +<h4>Checker.checkDeadScopes</h4> +<b>checkDeadScopes</b>(<i></i>) +<p> + Look at scopes which have been fully examined and report names in them + which were imported but unused. +</p><a NAME="Checker.checkUnusedAssignments" ID="Checker.checkUnusedAssignments"></a> +<h4>Checker.checkUnusedAssignments</h4> +<b>checkUnusedAssignments</b>(<i></i>) +<p> + Check to see if any assignments have not been used. +</p><a NAME="Checker.collectLoopVars" ID="Checker.collectLoopVars"></a> +<h4>Checker.collectLoopVars</h4> +<b>collectLoopVars</b>(<i></i>) +<a NAME="Checker.deferAssignment" ID="Checker.deferAssignment"></a> +<h4>Checker.deferAssignment</h4> +<b>deferAssignment</b>(<i>callable</i>) +<p> + Schedule an assignment handler to be called just after deferred + function handlers. +</p><a NAME="Checker.deferFunction" ID="Checker.deferFunction"></a> +<h4>Checker.deferFunction</h4> +<b>deferFunction</b>(<i>callable</i>) +<p> + Schedule a function handler to be called just before completion. +</p><p> + This is used for handling function bodies, which must be deferred + because code later in the file might modify the global scope. When + `callable` is called, the scope at the time this is called will be + restored, however it will contain any new bindings added to it. +</p><a NAME="Checker.descendantOf" ID="Checker.descendantOf"></a> +<h4>Checker.descendantOf</h4> +<b>descendantOf</b>(<i>node, ancestors, stop=None</i>) +<a NAME="Checker.differentForks" ID="Checker.differentForks"></a> +<h4>Checker.differentForks</h4> +<b>differentForks</b>(<i>lnode, rnode</i>) +<p> +True, if lnode and rnode are located on different forks of IF/TRY +</p><a NAME="Checker.getCommonAncestor" ID="Checker.getCommonAncestor"></a> +<h4>Checker.getCommonAncestor</h4> +<b>getCommonAncestor</b>(<i>lnode, rnode, stop=None</i>) +<a NAME="Checker.handleChildren" ID="Checker.handleChildren"></a> +<h4>Checker.handleChildren</h4> +<b>handleChildren</b>(<i>tree</i>) +<a NAME="Checker.handleNode" ID="Checker.handleNode"></a> +<h4>Checker.handleNode</h4> +<b>handleNode</b>(<i>node, parent</i>) +<a NAME="Checker.handleNodeDelete" ID="Checker.handleNodeDelete"></a> +<h4>Checker.handleNodeDelete</h4> +<b>handleNodeDelete</b>(<i>node</i>) +<a NAME="Checker.handleNodeLoad" ID="Checker.handleNodeLoad"></a> +<h4>Checker.handleNodeLoad</h4> +<b>handleNodeLoad</b>(<i>node</i>) +<a NAME="Checker.handleNodeStore" ID="Checker.handleNodeStore"></a> +<h4>Checker.handleNodeStore</h4> +<b>handleNodeStore</b>(<i>node</i>) +<a NAME="Checker.hasParent" ID="Checker.hasParent"></a> +<h4>Checker.hasParent</h4> +<b>hasParent</b>(<i>node, kind</i>) +<a NAME="Checker.ignore" ID="Checker.ignore"></a> +<h4>Checker.ignore</h4> +<b>ignore</b>(<i>node</i>) +<a NAME="Checker.isDocstring" ID="Checker.isDocstring"></a> +<h4>Checker.isDocstring</h4> +<b>isDocstring</b>(<i>node</i>) +<p> + Determine if the given node is a docstring, as long as it is at the + correct place in the node tree. +</p><a NAME="Checker.onFork" ID="Checker.onFork"></a> +<h4>Checker.onFork</h4> +<b>onFork</b>(<i>parent, lnode, rnode, items</i>) +<a NAME="Checker.popScope" ID="Checker.popScope"></a> +<h4>Checker.popScope</h4> +<b>popScope</b>(<i></i>) +<a NAME="Checker.pushClassScope" ID="Checker.pushClassScope"></a> +<h4>Checker.pushClassScope</h4> +<b>pushClassScope</b>(<i></i>) +<a NAME="Checker.pushFunctionScope" ID="Checker.pushFunctionScope"></a> +<h4>Checker.pushFunctionScope</h4> +<b>pushFunctionScope</b>(<i></i>) +<a NAME="Checker.report" ID="Checker.report"></a> +<h4>Checker.report</h4> +<b>report</b>(<i>messageClass, *args, **kwargs</i>) +<a NAME="Checker.runDeferred" ID="Checker.runDeferred"></a> +<h4>Checker.runDeferred</h4> +<b>runDeferred</b>(<i>deferred</i>) +<p> + Run the callables in C{deferred} using their associated scope stack. +</p><a NAME="Checker.runFunction" ID="Checker.runFunction"></a> +<h4>Checker.runFunction</h4> +<b>runFunction</b>(<i></i>) +<a NAME="Checker.scope" ID="Checker.scope"></a> +<h4>Checker.scope</h4> +<b>scope</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ClassDefinition" ID="ClassDefinition"></a> +<h2>ClassDefinition</h2> + +<h3>Derived from</h3> +Definition +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ClassScope" ID="ClassScope"></a> +<h2>ClassScope</h2> + +<h3>Derived from</h3> +Scope +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Definition" ID="Definition"></a> +<h2>Definition</h2> +<p> + A binding that defines a function or a class. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ExportBinding" ID="ExportBinding"></a> +<h2>ExportBinding</h2> +<p> + A binding created by an C{__all__} assignment. If the names in the list + can be determined statically, they will be treated as names for export and + additional checking applied to them. +</p><p> + The only C{__all__} assignment that can be recognized is one which takes + the value of a literal list containing literal strings. For example:: +</p><p> + __all__ = ["foo", "bar"] +</p><p> + Names which are imported and not otherwise used but appear in the value of + C{__all__} will not have an unused import warning reported for them. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ExportBinding.names">names</a></td> +<td>Return a list of the names referenced by this binding.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ExportBinding.names" ID="ExportBinding.names"></a> +<h4>ExportBinding.names</h4> +<b>names</b>(<i></i>) +<p> + Return a list of the names referenced by this binding. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="FunctionDefinition" ID="FunctionDefinition"></a> +<h2>FunctionDefinition</h2> + +<h3>Derived from</h3> +Definition +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="FunctionScope" ID="FunctionScope"></a> +<h2>FunctionScope</h2> +<p> + I represent a name scope for a function. +</p> +<h3>Derived from</h3> +Scope +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#FunctionScope.__init__">FunctionScope</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="FunctionScope.__init__" ID="FunctionScope.__init__"></a> +<h4>FunctionScope (Constructor)</h4> +<b>FunctionScope</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Importation" ID="Importation"></a> +<h2>Importation</h2> +<p> + A binding created by an import statement. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Importation.__init__">Importation</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Importation.__init__" ID="Importation.__init__"></a> +<h4>Importation (Constructor)</h4> +<b>Importation</b>(<i>name, source</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ModuleScope" ID="ModuleScope"></a> +<h2>ModuleScope</h2> + +<h3>Derived from</h3> +Scope +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Scope" ID="Scope"></a> +<h2>Scope</h2> + +<h3>Derived from</h3> +dict +<h3>Class Attributes</h3> +<table> +<tr><td>importStarred</td></tr><tr><td>usesLocals</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Scope.__repr__">__repr__</a></td> +<td></td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Scope.__repr__" ID="Scope.__repr__"></a> +<h4>Scope.__repr__</h4> +<b>__repr__</b>(<i></i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UnBinding" ID="UnBinding"></a> +<h2>UnBinding</h2> +<p> +Created by the 'del' operator. +</p> +<h3>Derived from</h3> +Binding +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="getNodeName" ID="getNodeName"></a> +<h2>getNodeName</h2> +<b>getNodeName</b>(<i>node</i>) + +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="iter_child_nodes" ID="iter_child_nodes"></a> +<h2>iter_child_nodes</h2> +<b>iter_child_nodes</b>(<i>node, astcls=ast.AST</i>) +<p> + Yield all direct child nodes of *node*, that is, all fields that are nodes + and all items of fields that are lists of nodes. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric5.Utilities.py2flakes.messages.html Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,725 @@ +<!DOCTYPE html> +<html><head> +<title>eric5.Utilities.py2flakes.messages</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric5.Utilities.py2flakes.messages</h1> + +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#DuplicateArgument">DuplicateArgument</a></td> +<td>Class defining the "Duplicate Argument" message.</td> +</tr><tr> +<td><a href="#ImportShadowedByLoopVar">ImportShadowedByLoopVar</a></td> +<td>Class defining the "Import Shadowed By Loop Var" message.</td> +</tr><tr> +<td><a href="#ImportStarUsed">ImportStarUsed</a></td> +<td>Class defining the "Import Star Used" message.</td> +</tr><tr> +<td><a href="#LateFutureImport">LateFutureImport</a></td> +<td>Class defining the "Late Future Import" message.</td> +</tr><tr> +<td><a href="#Message">Message</a></td> +<td>Class defining the base for all specific message classes.</td> +</tr><tr> +<td><a href="#Redefined">Redefined</a></td> +<td>Class defining the "Redefined" message.</td> +</tr><tr> +<td><a href="#RedefinedInListComp">RedefinedInListComp</a></td> +<td></td> +</tr><tr> +<td><a href="#RedefinedWhileUnused">RedefinedWhileUnused</a></td> +<td>Class defining the "Redefined While Unused" message.</td> +</tr><tr> +<td><a href="#UndefinedExport">UndefinedExport</a></td> +<td>Class defining the "Undefined Export" message.</td> +</tr><tr> +<td><a href="#UndefinedLocal">UndefinedLocal</a></td> +<td>Class defining the "Undefined Local Variable" message.</td> +</tr><tr> +<td><a href="#UndefinedName">UndefinedName</a></td> +<td>Class defining the "Undefined Name" message.</td> +</tr><tr> +<td><a href="#UnusedImport">UnusedImport</a></td> +<td>Class defining the "Unused Import" message.</td> +</tr><tr> +<td><a href="#UnusedVariable">UnusedVariable</a></td> +<td>Class defining the "Unused Variable" message.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr> +<td><a href="#QT_TRANSLATE_NOOP">QT_TRANSLATE_NOOP</a></td> +<td>Function to tell 'lupdate' which strings to keep for translation.</td> +</tr> +</table> +<hr /><hr /> +<a NAME="DuplicateArgument" ID="DuplicateArgument"></a> +<h2>DuplicateArgument</h2> +<p> + Class defining the "Duplicate Argument" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#DuplicateArgument.__init__">DuplicateArgument</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="DuplicateArgument.__init__" ID="DuplicateArgument.__init__"></a> +<h4>DuplicateArgument (Constructor)</h4> +<b>DuplicateArgument</b>(<i>filename, lineno, name</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the duplicate argument (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ImportShadowedByLoopVar" ID="ImportShadowedByLoopVar"></a> +<h2>ImportShadowedByLoopVar</h2> +<p> + Class defining the "Import Shadowed By Loop Var" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ImportShadowedByLoopVar.__init__">ImportShadowedByLoopVar</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ImportShadowedByLoopVar.__init__" ID="ImportShadowedByLoopVar.__init__"></a> +<h4>ImportShadowedByLoopVar (Constructor)</h4> +<b>ImportShadowedByLoopVar</b>(<i>filename, lineno, name, orig_lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the shadowed import (string) +</dd><dt><i>orig_lineno</i></dt> +<dd> +line number of the import (integer) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="ImportStarUsed" ID="ImportStarUsed"></a> +<h2>ImportStarUsed</h2> +<p> + Class defining the "Import Star Used" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ImportStarUsed.__init__">ImportStarUsed</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="ImportStarUsed.__init__" ID="ImportStarUsed.__init__"></a> +<h4>ImportStarUsed (Constructor)</h4> +<b>ImportStarUsed</b>(<i>filename, lineno, modname</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>modname</i></dt> +<dd> +name of the module imported using star import (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="LateFutureImport" ID="LateFutureImport"></a> +<h2>LateFutureImport</h2> +<p> + Class defining the "Late Future Import" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#LateFutureImport.__init__">LateFutureImport</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="LateFutureImport.__init__" ID="LateFutureImport.__init__"></a> +<h4>LateFutureImport (Constructor)</h4> +<b>LateFutureImport</b>(<i>filename, lineno, names</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>names</i></dt> +<dd> +names of the imported futures (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Message" ID="Message"></a> +<h2>Message</h2> +<p> + Class defining the base for all specific message classes. +</p> +<h3>Derived from</h3> +object +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr><tr><td>message_args</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Message.__init__">Message</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#Message.__str__">__str__</a></td> +<td>Special method return a string representation of the instance object.</td> +</tr><tr> +<td><a href="#Message.getMessageData">getMessageData</a></td> +<td>Public method to get the individual message data elements.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Message.__init__" ID="Message.__init__"></a> +<h4>Message (Constructor)</h4> +<b>Message</b>(<i>filename, lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd> +</dl><a NAME="Message.__str__" ID="Message.__str__"></a> +<h4>Message.__str__</h4> +<b>__str__</b>(<i></i>) +<p> + Special method return a string representation of the instance object. +</p><dl> +<dt>Returns:</dt> +<dd> +string representation of the object (string) +</dd> +</dl><a NAME="Message.getMessageData" ID="Message.getMessageData"></a> +<h4>Message.getMessageData</h4> +<b>getMessageData</b>(<i></i>) +<p> + Public method to get the individual message data elements. +</p><dl> +<dt>Returns:</dt> +<dd> +tuple containing file name, line number and message + (string, integer, string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="Redefined" ID="Redefined"></a> +<h2>Redefined</h2> +<p> + Class defining the "Redefined" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#Redefined.__init__">Redefined</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="Redefined.__init__" ID="Redefined.__init__"></a> +<h4>Redefined (Constructor)</h4> +<b>Redefined</b>(<i>filename, lineno, name, orig_lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the redefined function (string) +</dd><dt><i>orig_lineno</i></dt> +<dd> +line number of the original definition (integer) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="RedefinedInListComp" ID="RedefinedInListComp"></a> +<h2>RedefinedInListComp</h2> + +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#RedefinedInListComp.__init__">RedefinedInListComp</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="RedefinedInListComp.__init__" ID="RedefinedInListComp.__init__"></a> +<h4>RedefinedInListComp (Constructor)</h4> +<b>RedefinedInListComp</b>(<i>filename, lineno, name, orig_lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the redefined object (string) +</dd><dt><i>orig_lineno</i></dt> +<dd> +line number of the original definition (integer) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="RedefinedWhileUnused" ID="RedefinedWhileUnused"></a> +<h2>RedefinedWhileUnused</h2> +<p> + Class defining the "Redefined While Unused" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#RedefinedWhileUnused.__init__">RedefinedWhileUnused</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="RedefinedWhileUnused.__init__" ID="RedefinedWhileUnused.__init__"></a> +<h4>RedefinedWhileUnused (Constructor)</h4> +<b>RedefinedWhileUnused</b>(<i>filename, lineno, name, orig_lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the redefined object (string) +</dd><dt><i>orig_lineno</i></dt> +<dd> +line number of the original definition (integer) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UndefinedExport" ID="UndefinedExport"></a> +<h2>UndefinedExport</h2> +<p> + Class defining the "Undefined Export" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#UndefinedExport.__init__">UndefinedExport</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UndefinedExport.__init__" ID="UndefinedExport.__init__"></a> +<h4>UndefinedExport (Constructor)</h4> +<b>UndefinedExport</b>(<i>filename, lineno, name</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +undefined exported name (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UndefinedLocal" ID="UndefinedLocal"></a> +<h2>UndefinedLocal</h2> +<p> + Class defining the "Undefined Local Variable" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#UndefinedLocal.__init__">UndefinedLocal</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UndefinedLocal.__init__" ID="UndefinedLocal.__init__"></a> +<h4>UndefinedLocal (Constructor)</h4> +<b>UndefinedLocal</b>(<i>filename, lineno, name, orig_lineno</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the prematurely referenced variable (string) +</dd><dt><i>orig_lineno</i></dt> +<dd> +line number of the variable definition (integer) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UndefinedName" ID="UndefinedName"></a> +<h2>UndefinedName</h2> +<p> + Class defining the "Undefined Name" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#UndefinedName.__init__">UndefinedName</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UndefinedName.__init__" ID="UndefinedName.__init__"></a> +<h4>UndefinedName (Constructor)</h4> +<b>UndefinedName</b>(<i>filename, lineno, name</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +undefined name (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UnusedImport" ID="UnusedImport"></a> +<h2>UnusedImport</h2> +<p> + Class defining the "Unused Import" message. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#UnusedImport.__init__">UnusedImport</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UnusedImport.__init__" ID="UnusedImport.__init__"></a> +<h4>UnusedImport (Constructor)</h4> +<b>UnusedImport</b>(<i>filename, lineno, name</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the unused import (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="UnusedVariable" ID="UnusedVariable"></a> +<h2>UnusedVariable</h2> +<p> + Class defining the "Unused Variable" message. +</p><p> + Indicates that a variable has been explicitly assigned to but not actually + used. +</p> +<h3>Derived from</h3> +Message +<h3>Class Attributes</h3> +<table> +<tr><td>message</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#UnusedVariable.__init__">UnusedVariable</a></td> +<td>Constructor</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="UnusedVariable.__init__" ID="UnusedVariable.__init__"></a> +<h4>UnusedVariable (Constructor)</h4> +<b>UnusedVariable</b>(<i>filename, lineno, names</i>) +<p> + Constructor +</p><dl> +<dt><i>filename</i></dt> +<dd> +name of the file (string) +</dd><dt><i>lineno</i></dt> +<dd> +line number (integer) +</dd><dt><i>name</i></dt> +<dd> +name of the unused variable (string) +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="QT_TRANSLATE_NOOP" ID="QT_TRANSLATE_NOOP"></a> +<h2>QT_TRANSLATE_NOOP</h2> +<b>QT_TRANSLATE_NOOP</b>(<i>mod, txt</i>) +<p> + Function to tell 'lupdate' which strings to keep for translation. +</p><dl> +<dt><i>mod</i></dt> +<dd> +module name +</dd><dt><i>txt</i></dt> +<dd> +translatable string +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +the untranslated! string +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/Documentation/Source/eric5.Utilities.py3flakes.messages.html Thu Mar 28 20:09:00 2013 +0100 +++ b/Documentation/Source/eric5.Utilities.py3flakes.messages.html Mon Apr 08 07:52:06 2013 +0200 @@ -67,7 +67,10 @@ </table> <h3>Functions</h3> <table> -<tr><td>None</td></tr> +<tr> +<td><a href="#QT_TRANSLATE_NOOP">QT_TRANSLATE_NOOP</a></td> +<td>Function to tell 'lupdate' which strings to keep for translation.</td> +</tr> </table> <hr /><hr /> <a NAME="DuplicateArgument" ID="DuplicateArgument"></a> @@ -648,5 +651,26 @@ </dd> </dl> <div align="right"><a href="#top">Up</a></div> +<hr /><hr /> +<a NAME="QT_TRANSLATE_NOOP" ID="QT_TRANSLATE_NOOP"></a> +<h2>QT_TRANSLATE_NOOP</h2> +<b>QT_TRANSLATE_NOOP</b>(<i>mod, txt</i>) +<p> + Function to tell 'lupdate' which strings to keep for translation. +</p><dl> +<dt><i>mod</i></dt> +<dd> +module name +</dd><dt><i>txt</i></dt> +<dd> +translatable string +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +the untranslated! string +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> <hr /> </body></html> \ No newline at end of file
--- a/Documentation/Source/index-eric5.Utilities.html Thu Mar 28 20:09:00 2013 +0100 +++ b/Documentation/Source/index-eric5.Utilities.html Mon Apr 08 07:52:06 2013 +0200 @@ -33,6 +33,9 @@ <td><a href="index-eric5.Utilities.crypto.html">crypto</a></td> <td>Package implementing cryptography related functionality.</td> </tr><tr> +<td><a href="index-eric5.Utilities.py2flakes.html">py2flakes</a></td> +<td>Package containg the pyflakes Python2 port adapted for Qt.</td> +</tr><tr> <td><a href="index-eric5.Utilities.py3flakes.html">py3flakes</a></td> <td>Package containg the pyflakes Python3 port adapted for Qt.</td> </tr> @@ -53,6 +56,9 @@ <td><a href="eric5.Utilities.PasswordChecker.html">PasswordChecker</a></td> <td>Module implementing a checker for password strength</td> </tr><tr> +<td><a href="eric5.Utilities.SyntaxCheck.html">SyntaxCheck</a></td> +<td>Module implementing the syntax check for Python 2/3.</td> +</tr><tr> <td><a href="eric5.Utilities.__init__.html">Utilities</a></td> <td>Package implementing various functions/classes needed everywhere within eric5.</td> </tr><tr>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/index-eric5.Utilities.py2flakes.html Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html><head> +<title>eric5.Utilities.py2flakes</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body> +<h1>eric5.Utilities.py2flakes</h1> +<p> +Package containg the pyflakes Python2 port adapted for Qt. +</p> + + +<h3>Modules</h3> +<table> +<tr> +<td><a href="eric5.Utilities.py2flakes.checker.html">checker</a></td> +<td></td> +</tr><tr> +<td><a href="eric5.Utilities.py2flakes.messages.html">messages</a></td> +<td></td> +</tr> +</table> +</body></html> \ No newline at end of file
--- a/Documentation/Source/index-eric5.UtilitiesPython2.html Thu Mar 28 20:09:00 2013 +0100 +++ b/Documentation/Source/index-eric5.UtilitiesPython2.html Mon Apr 08 07:52:06 2013 +0200 @@ -24,13 +24,6 @@ This package implements some utilities and tools for Python2 </p> -<h3>Packages</h3> -<table> -<tr> -<td><a href="index-eric5.UtilitiesPython2.py2flakes.html">py2flakes</a></td> -<td>Package containg pyflakes for Python2.</td> -</tr> -</table> <h3>Modules</h3> <table> @@ -38,9 +31,6 @@ <td><a href="eric5.UtilitiesPython2.Pep8Checker.html">Pep8Checker</a></td> <td>Class implementing the PEP 8 checker for Python2.</td> </tr><tr> -<td><a href="eric5.UtilitiesPython2.Py2SyntaxChecker.html">Py2SyntaxChecker</a></td> -<td>Module implementing the syntax check for Python 2.</td> -</tr><tr> <td><a href="eric5.UtilitiesPython2.PySideImporter.html">PySideImporter</a></td> <td>Module to check for the presence of PySide by importing it.</td> </tr><tr>
--- a/QScintilla/Editor.py Thu Mar 28 20:09:00 2013 +0100 +++ b/QScintilla/Editor.py Mon Apr 08 07:52:06 2013 +0200 @@ -4749,62 +4749,31 @@ return self.fileName is not None and \ not self.autosaveManuallyDisabled and \ not self.isReadOnly() - + + def __autoSyntaxCheck(self): """ Private method to perform an automatic syntax check of the file. """ + isPy2 = self.isPy2File() + if (isPy2 or self.isPy3File()) == False: + return + if Preferences.getEditor("AutoCheckSyntax"): self.clearSyntaxError() self.clearFlakesWarnings() - if self.isPy3File(): - syntaxError, _fn, errorline, errorindex, _code, _error = \ - Utilities.compile(self.fileName or "(Unnamed)", self.text()) - if syntaxError: - self.toggleSyntaxError( - int(errorline), int(errorindex), True, _error) - else: - if Preferences.getFlakes("IncludeInSyntaxCheck"): - from Utilities.py3flakes.checker import Checker - from Utilities.py3flakes.messages import ImportStarUsed - - ignoreStarImportWarnings = \ - Preferences.getFlakes("IgnoreStarImportWarnings") - try: - txt = self.text()\ - .replace("\r\n", "\n")\ - .replace("\r", "\n") - warnings = Checker(txt, self.fileName or "(Unnamed)") - warnings.messages.sort(key=lambda a: a.lineno) - for warning in warnings.messages: - if ignoreStarImportWarnings and \ - isinstance(warning, ImportStarUsed): - continue - - _fn, lineno, message = warning.getMessageData() - if "__IGNORE_WARNING__" not in Utilities.extractLineFlags( - self.text(lineno - 1).strip()): - self.toggleFlakesWarning( - lineno, True, message) - except SyntaxError as err: - if err.text.strip(): - msg = err.text.strip() - else: - msg = err.msg - self.toggleSyntaxError(err.lineno, True, msg) - elif self.isPy2File() and self.fileName is not None: - syntaxError, _fn, errorline, errorindex, _code, _error, \ - warnings = Utilities.py2compile( - self.fileName, - checkFlakes=Preferences.getFlakes("IncludeInSyntaxCheck")) - if syntaxError: - self.toggleSyntaxError( - int(errorline), int(errorindex), True, _error) - else: - for warning in warnings: - self.toggleFlakesWarning( - int(warning[1]), True, warning[2]) - + + syntaxError, _fn, errorline, errorindex, _code, _error, warnings = \ + Utilities.compile(self.fileName or "(Unnamed)", self.text(), isPy2) + if syntaxError: + self.toggleSyntaxError(errorline, errorindex, True, _error) + else: + for warning in warnings: + self.toggleFlakesWarning( + warning[2], True, warning[3]) + return + + def __initOnlineSyntaxCheck(self): """ Private slot to initialize the online syntax check.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Utilities/SyntaxCheck.py Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,350 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing the syntax check for Python 2/3. +""" + +import sys +if sys.version_info[0] >= 3: + if __name__ == '__main__': + from py3flakes.checker import Checker + from py3flakes.messages import ImportStarUsed + else: + from .py3flakes.checker import Checker #__IGNORE_WARNING__ + from .py3flakes.messages import ImportStarUsed #__IGNORE_WARNING__ +else: + str = unicode #__IGNORE_WARNING__ + if __name__ == '__main__': + from py2flakes.checker import Checker #__IGNORE_WARNING__ + from py2flakes.messages import ImportStarUsed #__IGNORE_WARNING__ + else: + from .py2flakes.checker import Checker #__IGNORE_WARNING__ + from .py2flakes.messages import ImportStarUsed #__IGNORE_WARNING__ + +import re +import traceback +from codecs import BOM_UTF8, BOM_UTF16, BOM_UTF32 + +try: + import Preferences +except (ImportError): + pass + +codingBytes_regexps = [ + (2, re.compile(br'''coding[:=]\s*([-\w_.]+)''')), + (1, re.compile(br'''<\?xml.*\bencoding\s*=\s*['"]([-\w_.]+)['"]\?>''')), +] + + +def get_codingBytes(text): + """ + Function to get the coding of a bytes text. + + @param text bytes text to inspect (bytes) + @return coding string + """ + lines = text.splitlines() + for coding in codingBytes_regexps: + coding_re = coding[1] + head = lines[:coding[0]] + for l in head: + m = coding_re.search(l) + if m: + return str(m.group(1), "ascii").lower() + return None + + +def decode(text): + """ + Function to decode some byte text into a string. + + @param text byte text to decode (bytes) + @return tuple of decoded text and encoding (string, string) + """ + try: + if text.startswith(BOM_UTF8): + # UTF-8 with BOM + return str(text[len(BOM_UTF8):], 'utf-8'), 'utf-8-bom' + elif text.startswith(BOM_UTF16): + # UTF-16 with BOM + return str(text[len(BOM_UTF16):], 'utf-16'), 'utf-16' + elif text.startswith(BOM_UTF32): + # UTF-32 with BOM + return str(text[len(BOM_UTF32):], 'utf-32'), 'utf-32' + coding = get_codingBytes(text) + if coding: + return str(text, coding), coding + except (UnicodeError, LookupError): + pass + + # Assume UTF-8 + try: + return str(text, 'utf-8'), 'utf-8-guessed' + except (UnicodeError, LookupError): + pass + + try: + guess = None + if Preferences.getEditor("AdvancedEncodingDetection"): + # Try the universal character encoding detector + try: + import ThirdParty.CharDet.chardet + guess = ThirdParty.CharDet.chardet.detect(text) + if guess and guess['confidence'] > 0.95 and guess['encoding'] is not None: + codec = guess['encoding'].lower() + return str(text, codec), '{0}-guessed'.format(codec) + except (UnicodeError, LookupError, ImportError): + pass + except (NameError): + pass + + # Try default encoding + try: + codec = Preferences.getEditor("DefaultEncoding") + return str(text, codec), '{0}-default'.format(codec) + except (UnicodeError, LookupError, NameError): + pass + + try: + if Preferences.getEditor("AdvancedEncodingDetection"): + # Use the guessed one even if confifence level is low + if guess and guess['encoding'] is not None: + try: + codec = guess['encoding'].lower() + return str(text, codec), '{0}-guessed'.format(codec) + except (UnicodeError, LookupError): + pass + except (NameError): + pass + + # Assume UTF-8 loosing information + return str(text, "utf-8", "ignore"), 'utf-8-ignore' + + +def readEncodedFile(filename): + """ + Function to read a file and decode it's contents into proper text. + + @param filename name of the file to read (string) + @return tuple of decoded text and encoding (string, string) + """ + try: + filename = filename.encode(sys.getfilesystemencoding()) + except (UnicodeDecodeError): + pass + f = open(filename, "rb") + text = f.read() + f.close() + return decode(text) + + +def normalizeCode(codestring): + """ + Function to normalize the given code. + + @param codestring code to be normalized (string) + @return normalized code (string) + """ + codestring = codestring.replace("\r\n", "\n").replace("\r", "\n") + + if codestring and codestring[-1] != '\n': + codestring = codestring + '\n' + + # Check type for py2: if not str it's unicode + if sys.version_info[0] == 2: + try: + codestring = codestring.encode('utf-8') + except: + pass + + return codestring + + +def extractLineFlags(line, startComment="#", endComment=""): + """ + Function to extract flags starting and ending with '__' from a line comment. + + @param line line to extract flags from (string) + @keyparam startComment string identifying the start of the comment (string) + @keyparam endComment string identifying the end of a comment (string) + @return list containing the extracted flags (list of strings) + """ + flags = [] + + pos = line.rfind(startComment) + if pos >= 0: + comment = line[pos + len(startComment):].strip() + if endComment: + comment = comment.replace("endComment", "") + flags = [f.strip() for f in comment.split() + if (f.startswith("__") and f.endswith("__"))] + return flags + + +def compile_and_check(file_, codestring="", checkFlakes=True, ignoreStarImportWarnings=False): + """ + Function to compile one Python source file to Python bytecode + and to perform a pyflakes check. + + @param file_ source filename (string) + @param codestring string containing the code to compile (string) + @keyparam checkFlakes flag indicating to do a pyflakes check (boolean) + @keyparam ignoreStarImportWarnings flag indicating to + ignore 'star import' warnings (boolean) + @return A tuple indicating status (True = an error was found), the + file name, the line number, the index number, the code string + and the error message (boolean, string, string, string, string, + string). If checkFlakes is True, a list of strings containing the + warnings (marker, file name, line number, message) + The values are only valid, if the status is True. + """ + + try: + import builtins + except ImportError: + import __builtin__ as builtins #__IGNORE_WARNING__ + + try: + if sys.version_info[0] == 2: + file_enc = file_.encode(sys.getfilesystemencoding()) + else: + file_enc = file_ + + if not codestring: + try: + codestring = readEncodedFile(file_)[0] + except (UnicodeDecodeError, IOError): + return (False, None, None, None, None, None, []) + + codestring = normalizeCode(codestring) + + if file_.endswith('.ptl'): + try: + import quixote.ptl_compile + except ImportError: + return (False, None, None, None, None, None, []) + template = quixote.ptl_compile.Template(codestring, file_enc) + template.compile() + + # ast.PyCF_ONLY_AST = 1024, speed optimisation + module = builtins.compile(codestring, file_enc, 'exec', 1024) + except SyntaxError as detail: + index = 0 + code = "" + error = "" + lines = traceback.format_exception_only(SyntaxError, detail) + match = re.match('\s*File "(.+)", line (\d+)', + lines[0].replace('<string>', '{0}'.format(file_))) + if match is not None: + fn, line = match.group(1, 2) + if lines[1].startswith('SyntaxError:'): + error = re.match('SyntaxError: (.+)', lines[1]).group(1) + else: + code = re.match('(.+)', lines[1]).group(1) + for seLine in lines[2:]: + if seLine.startswith('SyntaxError:'): + error = re.match('SyntaxError: (.+)', seLine).group(1) + elif seLine.rstrip().endswith('^'): + index = len(seLine.rstrip()) - 4 + else: + fn = detail.filename + line = detail.lineno or 1 + error = detail.msg + return (True, fn, int(line), index, code, error, []) + except ValueError as detail: + index = 0 + code = "" + try: + fn = detail.filename + line = detail.lineno + error = detail.msg + except AttributeError: + fn = file_ + line = 1 + error = str(detail) + return (True, fn, line, index, code, error, []) + except Exception as detail: + try: + fn = detail.filename + line = detail.lineno + index = 0 + code = "" + error = detail.msg + return (True, fn, line, index, code, error, []) + except: # this catchall is intentional + pass + + # pyflakes + if not checkFlakes: + return (False, "", -1, -1, "", "", []) + + strings = [] + lines = codestring.splitlines() + try: + warnings = Checker(module, file_) + warnings.messages.sort(key=lambda a: a.lineno) + for warning in warnings.messages: + if ignoreStarImportWarnings and \ + isinstance(warning, ImportStarUsed): + continue + + _fn, lineno, message, msg_args = warning.getMessageData() + if "__IGNORE_WARNING__" not in extractLineFlags(lines[lineno - 1].strip()): + strings.append(["FLAKES_WARNING", _fn, lineno, message, msg_args]) + except SyntaxError as err: + if err.text.strip(): + msg = err.text.strip() + else: + msg = err.msg + strings.append(["FLAKES_ERROR", file_, err.lineno, msg, ()]) + + return (False, "", -1, -1, "", "", strings) + + +if __name__ == "__main__": + if len(sys.argv) < 2 or \ + len(sys.argv) > 3 or \ + (len(sys.argv) == 3 and sys.argv[1] not in ["-fi", "-fs"]): + print("ERROR") + print("") + print("") + print("") + print("") + print("No file name given.") + else: + filename = sys.argv[-1] + checkFlakes = len(sys.argv) == 3 + ignoreStarImportWarnings = sys.argv[1] == "-fi" # Setting is ignored if checkFlakes is False + + try: + codestring = readEncodedFile(filename)[0] + + syntaxerror, fname, line, index, code, error, warnings = \ + compile_and_check(filename, codestring, checkFlakes, ignoreStarImportWarnings) + except IOError as msg: + # fake a syntax error + syntaxerror, fname, line, index, code, error, warnings = \ + True, filename, 1, 0, "", "I/O Error: %s" % str(msg), [] + + if syntaxerror: + print("ERROR") + else: + print("NO_ERROR") + print(fname) + print(line) + print(index) + print(code) + print(error) + + if not syntaxerror: + for warningLine in warnings: + msg_args = warningLine.pop() + for warning in warningLine: + print(warning) + msg_args = [str(x) for x in msg_args] + print('#'.join(msg_args)) + + sys.exit(0)
--- a/Utilities/__init__.py Thu Mar 28 20:09:00 2013 +0100 +++ b/Utilities/__init__.py Mon Apr 08 07:52:06 2013 +0200 @@ -9,12 +9,13 @@ from __future__ import unicode_literals # __IGNORE_WARNING__ try: - str = unicode + str = unicode # __IGNORE_WARNING__ except (NameError): pass import os import sys +import codecs import re import fnmatch import glob @@ -57,15 +58,12 @@ from UI.Info import Program, Version import Preferences +from .SyntaxCheck import * from eric5config import getConfig configDir = None -codingBytes_regexps = [ - (2, re.compile(br'''coding[:=]\s*([-\w_.]+)''')), - (1, re.compile(br'''<\?xml.*\bencoding\s*=\s*['"]([-\w_.]+)['"]\?>''')), -] coding_regexps = [ (2, re.compile(r'''coding[:=]\s*([-\w_.]+)''')), (1, re.compile(r'''<\?xml.*\bencoding\s*=\s*['"]([-\w_.]+)['"]\?>''')), @@ -117,24 +115,6 @@ return str(self.errorMessage) -def get_codingBytes(text): - """ - Function to get the coding of a bytes text. - - @param text bytes text to inspect (bytes) - @return coding string - """ - lines = text.splitlines() - for coding in codingBytes_regexps: - coding_re = coding[1] - head = lines[:coding[0]] - for l in head: - m = coding_re.search(l) - if m: - return str(m.group(1), "ascii").lower() - return None - - def get_coding(text): """ Function to get the coding of a text. @@ -153,19 +133,6 @@ return None -def readEncodedFile(filename): - """ - Function to read a file and decode it's contents into proper text. - - @param filename name of the file to read (string) - @return tuple of decoded text and encoding (string, string) - """ - f = open(filename, "rb") - text = f.read() - f.close() - return decode(text) - - def readEncodedFileWithHash(filename): """ Function to read a file, calculate a hash value and decode it's contents @@ -182,69 +149,6 @@ return decode(text) + (hash, ) -def decode(text): - """ - Function to decode some byte text into a string. - - @param text byte text to decode (bytes) - @return tuple of decoded text and encoding (string, string) - """ - try: - if text.startswith(BOM_UTF8): - # UTF-8 with BOM - return str(text[len(BOM_UTF8):], 'utf-8'), 'utf-8-bom' - elif text.startswith(BOM_UTF16): - # UTF-16 with BOM - return str(text[len(BOM_UTF16):], 'utf-16'), 'utf-16' - elif text.startswith(BOM_UTF32): - # UTF-32 with BOM - return str(text[len(BOM_UTF32):], 'utf-32'), 'utf-32' - coding = get_codingBytes(text) - if coding: - return str(text, coding), coding - except (UnicodeError, LookupError): - pass - - # Assume UTF-8 - try: - return str(text, 'utf-8'), 'utf-8-guessed' - except (UnicodeError, LookupError): - pass - - guess = None - if Preferences.getEditor("AdvancedEncodingDetection"): - # Try the universal character encoding detector - try: - import ThirdParty.CharDet.chardet - guess = ThirdParty.CharDet.chardet.detect(text) - if guess and guess['confidence'] > 0.95 and guess['encoding'] is not None: - codec = guess['encoding'].lower() - return str(text, codec), '{0}-guessed'.format(codec) - except (UnicodeError, LookupError): - pass - except ImportError: - pass - - # Try default encoding - try: - codec = Preferences.getEditor("DefaultEncoding") - return str(text, codec), '{0}-default'.format(codec) - except (UnicodeError, LookupError): - pass - - if Preferences.getEditor("AdvancedEncodingDetection"): - # Use the guessed one even if confifence level is low - if guess and guess['encoding'] is not None: - try: - codec = guess['encoding'].lower() - return str(text, codec), '{0}-guessed'.format(codec) - except (UnicodeError, LookupError): - pass - - # Assume UTF-8 loosing information - return str(text, "utf-8", "ignore"), 'utf-8-ignore' - - def writeEncodedFile(filename, text, orig_coding): """ Function to write a file with properly encoded text. @@ -391,7 +295,7 @@ data = stream.readString() if data is None: data = b"" - return data.decode() + return data.decode('utf-8') _escape = re.compile("[&<>\"'\u0080-\uffff]") @@ -596,27 +500,6 @@ return extractFlags(source) -def extractLineFlags(line, startComment="#", endComment=""): - """ - Function to extract flags starting and ending with '__' from a line comment. - - @param line line to extract flags from (string) - @keyparam startComment string identifying the start of the comment (string) - @keyparam endComment string identifying the end of a comment (string) - @return list containing the extracted flags (list of strings) - """ - flags = [] - - pos = line.rfind(startComment) - if pos >= 0: - comment = line[pos + len(startComment):].strip() - if endComment: - comment = comment.replace("endComment", "") - flags = [f.strip() for f in comment.split() - if (f.startswith("__") and f.endswith("__"))] - return flags - - def toNativeSeparators(path): """ Function returning a path, that is using native separator characters. @@ -801,7 +684,26 @@ return True return False + + +def samefilepath(f1, f2): + """ + Function to compare two paths. Strips the filename. + @param f1 first filepath for the compare (string) + @param f2 second filepath for the compare (string) + @return flag indicating whether the two paths represent the + same path on disk. + """ + if f1 is None or f2 is None: + return False + + if (normcaseabspath(os.path.dirname(os.path.realpath(f1))) == + normcaseabspath(os.path.dirname(os.path.realpath(f2)))): + return True + + return False + try: EXTSEP = os.extsep except AttributeError: @@ -1212,94 +1114,45 @@ return sys.hexversion >> 16 -def compile(file, codestring=""): +def compile(file, codestring="", isPy2=False): """ Function to compile one Python source file to Python bytecode. @param file source filename (string) @param codestring string containing the code to compile (string) + @param isPy2 shows which interperter to use (boolean) @return A tuple indicating status (True = an error was found), the file name, the line number, the index number, the code string and the error message (boolean, string, string, string, string, string). The values are only valid, if the status is True. """ - import builtins - if not codestring: - try: - codestring = readEncodedFile(file)[0] - except (UnicodeDecodeError, IOError): - return (False, None, None, None, None, None) - - codestring = codestring.replace("\r\n", "\n") - codestring = codestring.replace("\r", "\n") - - if codestring and codestring[-1] != '\n': - codestring = codestring + '\n' + from PyQt4.QtCore import QCoreApplication - try: - if file.endswith('.ptl'): - try: - import quixote.ptl_compile - except ImportError: - return (False, None, None, None, None, None) - template = quixote.ptl_compile.Template(codestring, file) - template.compile() - else: - builtins.compile(codestring, file, 'exec') - except SyntaxError as detail: - import traceback - import re - index = "0" - code = "" - error = "" - lines = traceback.format_exception_only(SyntaxError, detail) - match = re.match('\s*File "(.+)", line (\d+)', - lines[0].replace('<string>', '{0}'.format(file))) - if match is not None: - fn, line = match.group(1, 2) - if lines[1].startswith('SyntaxError:'): - error = re.match('SyntaxError: (.+)', lines[1]).group(1) - else: - code = re.match('(.+)', lines[1]).group(1) - for seLine in lines[2:]: - if seLine.startswith('SyntaxError:'): - error = re.match('SyntaxError: (.+)', seLine).group(1) - elif seLine.rstrip().endswith('^'): - index = len(seLine.rstrip()) - 4 - else: - fn = detail.filename - line = detail.lineno and detail.lineno or 1 - error = detail.msg - return (True, fn, line, index, code, error) - except ValueError as detail: - index = "0" - code = "" - try: - fn = detail.filename - line = detail.lineno - error = detail.msg - except AttributeError: - fn = file - line = "1" - error = str(detail) - return (True, fn, line, index, code, error) - except Exception as detail: - try: - fn = detail.filename - line = detail.lineno - index = "0" - code = "" - error = detail.msg - return (True, fn, line, index, code, error) - except: # this catchall is intentional - pass + interpreter_name = 'Python' if isPy2 else 'Python3' + interpreter = Preferences.getDebugger(interpreter_name+"Interpreter") + checkFlakes = Preferences.getFlakes("IncludeInSyntaxCheck") + ignoreStarImportWarnings = Preferences.getFlakes("IgnoreStarImportWarnings") + if samefilepath(interpreter, sys.executable): + ret = compile_and_check(file, codestring, checkFlakes, ignoreStarImportWarnings) + else: + #TODO: create temporary file if only a codestring is given + ret = compile_extern(file, isPy2, checkFlakes, ignoreStarImportWarnings) - return (False, None, None, None, None, None) + # Translate messages + for warning in ret[6]: + msg_args = warning.pop() + translated = QCoreApplication.translate('py3Flakes', warning[-1]).format(*msg_args) + # Avoid leading "u" at Python2 unicode strings + if translated.startswith("u'"): + translated = translated[1:] + warning[3] = translated.replace(" u'", " '") + + return ret -def py2compile(file, checkFlakes=False): +def compile_extern(file, isPy2, checkFlakes=True, ignoreStarImportWarnings=False): """ - Function to compile one Python 2 source file to Python 2 bytecode. + Function to compile one Python source file to Python bytecode. @param file source filename (string) @keyparam checkFlakes flag indicating to do a pyflakes check (boolean) @@ -1311,19 +1164,18 @@ values are only valid, if the status is True. The pyflakes list will be empty, if a syntax error was detected by the syntax checker. """ - interpreter = Preferences.getDebugger("PythonInterpreter") + interpreter_name = 'Python' if isPy2 else 'Python3' + interpreter = Preferences.getDebugger(interpreter_name+"Interpreter") if interpreter == "" or not isinpath(interpreter): - return (False, "", "", "", "", "", [( - file, "1", - QCoreApplication.translate("Utilities", - "Python2 interpreter not configured.") + return (False, "", -1, -1, "", "", [( + "", "", 1, QCoreApplication.translate("Utilities", + "{0} interpreter not configured.").format(interpreter_name) )]) - syntaxChecker = os.path.join(getConfig('ericDir'), - "UtilitiesPython2", "Py2SyntaxChecker.py") + "Utilities", "SyntaxCheck.py") args = [syntaxChecker] if checkFlakes: - if Preferences.getFlakes("IgnoreStarImportWarnings"): + if ignoreStarImportWarnings: args.append("-fi") else: args.append("-fs") @@ -1333,17 +1185,15 @@ proc.start(interpreter, args) finished = proc.waitForFinished(30000) if finished: - output = \ - str(proc.readAllStandardOutput(), - Preferences.getSystem("IOEncoding"), - 'replace').splitlines() + output = codecs.decode(proc.readAllStandardOutput(), + sys.getfilesystemencoding(), 'strict').splitlines() if output: syntaxerror = output[0] == "ERROR" if syntaxerror: fn = output[1] - line = output[2] - index = output[3] + line = int(output[2]) + index = int(output[3]) code = output[4] error = output[5] return (True, fn, line, index, code, error, []) @@ -1352,21 +1202,21 @@ warnings = [] while len(output) - index > 3: if output[index] == "FLAKES_ERROR": - return (True, output[index + 1], output[index + 2], "", - output[index + 3], []) + return (True, output[index + 1], int(output[index + 2]), -1, + '', output[index + 3], []) else: - warnings.append((output[index + 1], output[index + 2], - output[index + 3])) - index += 4 + msg_args = output[index + 4].split('#') + warnings.append([output[index], output[index + 1], + int(output[index + 2]), output[index + 3], msg_args]) + index += 5 return (False, None, None, None, None, None, warnings) else: - return (False, "", "", "", "", "", []) + return (False, "", -1, -1, "", "", []) - return (True, file, "1", "0", "", - QCoreApplication.translate("Utilities", - "Python2 interpreter did not finish within 30s."), - []) + return (True, file, 1, 0, "", QCoreApplication.translate("Utilities", + "{0} interpreter did not finish within 30s.").format( + interpreter_name), []) ################################################################################
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Utilities/py2flakes/__init__.py Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Package containg the pyflakes Python2 port adapted for Qt. +""" + +""" License +Copyright 2005-2011 Divmod, Inc. +Copyright 2013 Florent Xicluna + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +""" + +""" Changes +0.6.1 (2013-01-29): + - Fix detection of variables in augmented assignments. + +0.6.0 (2013-01-29): + - Support Python 3 up to 3.3, based on the pyflakes3k project. + - Preserve compatibility with Python 2.5 and all recent versions of Python. + - Support custom reporters in addition to the default Reporter. + - Allow function redefinition for modern property construction via + property.setter/deleter. + - Fix spurious redefinition warnings in conditionals. + - Do not report undefined name in __all__ if import * is used. + - Add WindowsError as a known built-in name on all platforms. + - Support specifying additional built-ins in the `Checker` constructor. + - Don't issue Unused Variable warning when using locals() in current scope. + - Handle problems with the encoding of source files. + - Remove dependency on Twisted for the tests. + - Support `python setup.py test` and `python setup.py develop`. + - Create script using setuptools `entry_points` to support all platforms, + including Windows. + +0.5.0 (2011-09-02): + - Convert pyflakes to use newer _ast infrastructure rather than compiler. + - Support for new syntax in 2.7 (including set literals, set comprehensions, + and dictionary comprehensions). + - Make sure class names don't get bound until after class definition. +""" + +__version__ = '0.6.1'
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Utilities/py2flakes/checker.py Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,711 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# +# Original (c) 2005-2010 Divmod, Inc. +# +# This module is based on pyflakes for Python2 but was modified to +# work with eric5 + +import os.path +try: + import builtins + PY2 = False +except ImportError: + import __builtin__ as builtins #__IGNORE_WARNING__ + PY2 = True + +try: + import ast + iter_child_nodes = ast.iter_child_nodes +except (ImportError, AttributeError): # Python 2.5 + import _ast as ast + + def iter_child_nodes(node, astcls=ast.AST): + """ + Yield all direct child nodes of *node*, that is, all fields that are nodes + and all items of fields that are lists of nodes. + """ + for name in node._fields: + field = getattr(node, name, None) + if isinstance(field, astcls): + yield field + elif isinstance(field, list): + for item in field: + yield item +# Python >= 3.3 uses ast.Try instead of (ast.TryExcept + ast.TryFinally) +if hasattr(ast, 'Try'): + ast_TryExcept = ast.Try + ast_TryFinally = () +else: + ast_TryExcept = ast.TryExcept + ast_TryFinally = ast.TryFinally + +from . import messages + + +class Binding(object): + """ + Represents the binding of a value to a name. + + The checker uses this to keep track of which names have been bound and + which names have not. See L{Assignment} for a special type of binding that + is checked with stricter rules. + """ + + def __init__(self, name, source): + self.name = name + self.source = source + self.used = False + + def __str__(self): + return self.name + + def __repr__(self): + return '<%s object %r from line %r at 0x%x>' % (self.__class__.__name__, + self.name, + self.source.lineno, + id(self)) + + +class UnBinding(Binding): + """Created by the 'del' operator.""" + + +class Importation(Binding): + """ + A binding created by an import statement. + """ + def __init__(self, name, source): + self.fullName = name + name = name.split('.')[0] + super(Importation, self).__init__(name, source) + + +class Argument(Binding): + """ + Represents binding a name as an argument. + """ + + +class Definition(Binding): + """ + A binding that defines a function or a class. + """ + + +class Assignment(Binding): + """ + Represents binding a name with an explicit assignment. + + The checker will raise warnings for any Assignment that isn't used. Also, + the checker does not consider assignments in tuple/list unpacking to be + Assignments, rather it treats them as simple Bindings. + """ + + +class FunctionDefinition(Definition): + pass + + +class ClassDefinition(Definition): + pass + + +class ExportBinding(Binding): + """ + A binding created by an C{__all__} assignment. If the names in the list + can be determined statically, they will be treated as names for export and + additional checking applied to them. + + The only C{__all__} assignment that can be recognized is one which takes + the value of a literal list containing literal strings. For example:: + + __all__ = ["foo", "bar"] + + Names which are imported and not otherwise used but appear in the value of + C{__all__} will not have an unused import warning reported for them. + """ + def names(self): + """ + Return a list of the names referenced by this binding. + """ + names = [] + if isinstance(self.source, ast.List): + for node in self.source.elts: + if isinstance(node, ast.Str): + names.append(node.s) + return names + + +class Scope(dict): + importStarred = False # set to True when import * is found + usesLocals = False + + def __repr__(self): + return '<%s at 0x%x %s>' % (self.__class__.__name__, id(self), dict.__repr__(self)) + + +class ClassScope(Scope): + pass + + +class FunctionScope(Scope): + """ + I represent a name scope for a function. + """ + def __init__(self): + super(FunctionScope, self).__init__() + self.globals = {} + + +class ModuleScope(Scope): + pass + + +# Globally defined names which are not attributes of the builtins module, or +# are only present on some platforms. +_MAGIC_GLOBALS = ['__file__', '__builtins__', 'WindowsError'] + + +def getNodeName(node): + # Returns node.id, or node.name, or None + if hasattr(node, 'id'): # One of the many nodes with an id + return node.id + if hasattr(node, 'name'): # a ExceptHandler node + return node.name + + +class Checker(object): + """ + I check the cleanliness and sanity of Python code. + """ + + nodeDepth = 0 + traceTree = False + builtIns = set(dir(builtins)) | set(_MAGIC_GLOBALS) + + def __init__(self, tree, filename='(none)', builtins=None): + self._deferredFunctions = [] + self._deferredAssignments = [] + self.deadScopes = [] + self.messages = [] + self.filename = filename + if builtins: + self.builtIns = self.builtIns.union(builtins) + self.scopeStack = [ModuleScope()] + self.futuresAllowed = True + self.root = tree + self.handleChildren(tree) + self.runDeferred(self._deferredFunctions) + # Set _deferredFunctions to None so that deferFunction will fail + # noisily if called after we've run through the deferred functions. + self._deferredFunctions = None + self.runDeferred(self._deferredAssignments) + # Set _deferredAssignments to None so that deferAssignment will fail + # noisily if called after we've run through the deferred assignments. + self._deferredAssignments = None + del self.scopeStack[1:] + self.popScope() + self.checkDeadScopes() + + def deferFunction(self, callable): + """ + Schedule a function handler to be called just before completion. + + This is used for handling function bodies, which must be deferred + because code later in the file might modify the global scope. When + `callable` is called, the scope at the time this is called will be + restored, however it will contain any new bindings added to it. + """ + self._deferredFunctions.append((callable, self.scopeStack[:])) + + def deferAssignment(self, callable): + """ + Schedule an assignment handler to be called just after deferred + function handlers. + """ + self._deferredAssignments.append((callable, self.scopeStack[:])) + + def runDeferred(self, deferred): + """ + Run the callables in C{deferred} using their associated scope stack. + """ + for handler, scope in deferred: + self.scopeStack = scope + handler() + + @property + def scope(self): + return self.scopeStack[-1] + + def popScope(self): + self.deadScopes.append(self.scopeStack.pop()) + + def checkDeadScopes(self): + """ + Look at scopes which have been fully examined and report names in them + which were imported but unused. + """ + for scope in self.deadScopes: + export = isinstance(scope.get('__all__'), ExportBinding) + if export: + all = scope['__all__'].names() + if not scope.importStarred and os.path.basename(self.filename) != '__init__.py': + # Look for possible mistakes in the export list + undefined = set(all) - set(scope) + for name in undefined: + self.report(messages.UndefinedExport, + scope['__all__'].source.lineno, name) + else: + all = [] + + # Look for imported names that aren't used. + for importation in scope.values(): + if isinstance(importation, Importation): + if not importation.used and importation.name not in all: + self.report(messages.UnusedImport, + importation.source.lineno, importation.name) + + def pushFunctionScope(self): + self.scopeStack.append(FunctionScope()) + + def pushClassScope(self): + self.scopeStack.append(ClassScope()) + + def report(self, messageClass, *args, **kwargs): + self.messages.append(messageClass(self.filename, *args, **kwargs)) + + def hasParent(self, node, kind): + while hasattr(node, 'parent'): + node = node.parent + if isinstance(node, kind): + return True + + def getCommonAncestor(self, lnode, rnode, stop=None): + if not stop: + stop = self.root + if lnode is rnode: + return lnode + if stop in (lnode, rnode): + return stop + + if not hasattr(lnode, 'parent') or not hasattr(rnode, 'parent'): + return + if (lnode.level > rnode.level): + return self.getCommonAncestor(lnode.parent, rnode, stop) + if (rnode.level > lnode.level): + return self.getCommonAncestor(lnode, rnode.parent, stop) + return self.getCommonAncestor(lnode.parent, rnode.parent, stop) + + def descendantOf(self, node, ancestors, stop=None): + for a in ancestors: + if self.getCommonAncestor(node, a, stop) not in (stop, None): + return True + return False + + def onFork(self, parent, lnode, rnode, items): + return (self.descendantOf(lnode, items, parent) ^ + self.descendantOf(rnode, items, parent)) + + def differentForks(self, lnode, rnode): + """True, if lnode and rnode are located on different forks of IF/TRY""" + ancestor = self.getCommonAncestor(lnode, rnode) + if isinstance(ancestor, ast.If): + for fork in (ancestor.body, ancestor.orelse): + if self.onFork(ancestor, lnode, rnode, fork): + return True + elif isinstance(ancestor, ast_TryExcept): + body = ancestor.body + ancestor.orelse + for fork in [body] + [[hdl] for hdl in ancestor.handlers]: + if self.onFork(ancestor, lnode, rnode, fork): + return True + elif isinstance(ancestor, ast_TryFinally): + if self.onFork(ancestor, lnode, rnode, ancestor.body): + return True + return False + + def addBinding(self, node, value, reportRedef=True): + """ + Called when a binding is altered. + + - `node` is the statement responsible for the change + - `value` is the optional new value, a Binding instance, associated + with the binding; if None, the binding is deleted if it exists. + - if `reportRedef` is True (default), rebinding while unused will be + reported. + """ + redefinedWhileUnused = False + if not isinstance(self.scope, ClassScope): + for scope in self.scopeStack[::-1]: + existing = scope.get(value.name) + if (isinstance(existing, Importation) + and not existing.used + and (not isinstance(value, Importation) or value.fullName == existing.fullName) + and reportRedef + and not self.differentForks(node, existing.source)): + redefinedWhileUnused = True + self.report(messages.RedefinedWhileUnused, + node.lineno, value.name, existing.source.lineno) + + existing = self.scope.get(value.name) + if not redefinedWhileUnused and self.hasParent(value.source, ast.ListComp): + if (existing and reportRedef + and not self.hasParent(existing.source, (ast.For, ast.ListComp))): + self.report(messages.RedefinedInListComp, + node.lineno, value.name, existing.source.lineno) + + if isinstance(value, UnBinding): + try: + del self.scope[value.name] + except KeyError: + self.report(messages.UndefinedName, node.lineno, value.name) + elif (isinstance(existing, Definition) + and not existing.used + and not self.differentForks(node, existing.source)): + self.report(messages.RedefinedWhileUnused, + node.lineno, value.name, existing.source.lineno) + else: + self.scope[value.name] = value + + def handleNodeLoad(self, node): + name = getNodeName(node) + if not name: + return + # try local scope + importStarred = self.scope.importStarred + try: + self.scope[name].used = (self.scope, node.lineno) + except KeyError: + pass + else: + return + + # try enclosing function scopes + for scope in self.scopeStack[-2:0:-1]: + importStarred = importStarred or scope.importStarred + if not isinstance(scope, FunctionScope): + continue + try: + scope[name].used = (self.scope, node.lineno) + except KeyError: + pass + else: + return + + # try global scope + importStarred = importStarred or self.scopeStack[0].importStarred + try: + self.scopeStack[0][name].used = (self.scope, node.lineno) + except KeyError: + if not importStarred and name not in self.builtIns: + if (os.path.basename(self.filename) == '__init__.py' and name == '__path__'): + # the special name __path__ is valid only in packages + pass + else: + self.report(messages.UndefinedName, node.lineno, name) + + def handleNodeStore(self, node): + name = getNodeName(node) + if not name: + return + # if the name hasn't already been defined in the current scope + if isinstance(self.scope, FunctionScope) and name not in self.scope: + # for each function or module scope above us + for scope in self.scopeStack[:-1]: + if not isinstance(scope, (FunctionScope, ModuleScope)): + continue + # if the name was defined in that scope, and the name has + # been accessed already in the current scope, and hasn't + # been declared global + if (name in scope and scope[name].used and scope[name].used[0] is self.scope + and name not in self.scope.globals): + # then it's probably a mistake + self.report(messages.UndefinedLocal, + scope[name].used[1], name, scope[name].source.lineno) + break + + parent = getattr(node, 'parent', None) + if isinstance(parent, (ast.For, ast.comprehension, ast.Tuple, ast.List)): + binding = Binding(name, node) + elif parent is not None and name == '__all__' and isinstance(self.scope, ModuleScope): + binding = ExportBinding(name, parent.value) + else: + binding = Assignment(name, node) + if name in self.scope: + binding.used = self.scope[name].used + self.addBinding(node, binding) + + def handleNodeDelete(self, node): + name = getNodeName(node) + if not name: + return + if isinstance(self.scope, FunctionScope) and name in self.scope.globals: + del self.scope.globals[name] + else: + self.addBinding(node, UnBinding(name, node)) + + def handleChildren(self, tree): + for node in iter_child_nodes(tree): + self.handleNode(node, tree) + + def isDocstring(self, node): + """ + Determine if the given node is a docstring, as long as it is at the + correct place in the node tree. + """ + return isinstance(node, ast.Str) or (isinstance(node, ast.Expr) and + isinstance(node.value, ast.Str)) + + def handleNode(self, node, parent): + if node is None: + return + node.parent = parent + if self.traceTree: + print(' ' * self.nodeDepth + node.__class__.__name__) + self.nodeDepth += 1 + if self.futuresAllowed and not (isinstance(node, ast.ImportFrom) or + self.isDocstring(node)): + self.futuresAllowed = False + nodeType = node.__class__.__name__.upper() + node.level = self.nodeDepth + try: + handler = getattr(self, nodeType) + handler(node) + finally: + self.nodeDepth -= 1 + if self.traceTree: + print(' ' * self.nodeDepth + 'end ' + node.__class__.__name__) + + def ignore(self, node): + pass + + # "stmt" type nodes + RETURN = DELETE = PRINT = WHILE = IF = WITH = WITHITEM = RAISE = \ + TRYEXCEPT = TRYFINALLY = TRY = ASSERT = EXEC = EXPR = handleChildren + + CONTINUE = BREAK = PASS = ignore + + # "expr" type nodes + BOOLOP = BINOP = UNARYOP = IFEXP = DICT = SET = YIELD = YIELDFROM = \ + COMPARE = CALL = REPR = ATTRIBUTE = SUBSCRIPT = LIST = TUPLE = \ + STARRED = handleChildren + + NUM = STR = BYTES = ELLIPSIS = ignore + + # "slice" type nodes + SLICE = EXTSLICE = INDEX = handleChildren + + # expression contexts are node instances too, though being constants + LOAD = STORE = DEL = AUGLOAD = AUGSTORE = PARAM = ignore + + # same for operators + AND = OR = ADD = SUB = MULT = DIV = MOD = POW = LSHIFT = RSHIFT = \ + BITOR = BITXOR = BITAND = FLOORDIV = INVERT = NOT = UADD = USUB = \ + EQ = NOTEQ = LT = LTE = GT = GTE = IS = ISNOT = IN = NOTIN = ignore + + # additional node types + COMPREHENSION = KEYWORD = handleChildren + + def GLOBAL(self, node): + """ + Keep track of globals declarations. + """ + if isinstance(self.scope, FunctionScope): + self.scope.globals.update(dict.fromkeys(node.names)) + + NONLOCAL = GLOBAL + + def LISTCOMP(self, node): + # handle generators before element + for gen in node.generators: + self.handleNode(gen, node) + self.handleNode(node.elt, node) + + GENERATOREXP = SETCOMP = LISTCOMP + + def DICTCOMP(self, node): + for gen in node.generators: + self.handleNode(gen, node) + self.handleNode(node.key, node) + self.handleNode(node.value, node) + + def FOR(self, node): + """ + Process bindings for loop variables. + """ + vars = [] + + def collectLoopVars(n): + if isinstance(n, ast.Name): + vars.append(n.id) + elif isinstance(n, ast.expr_context): + return + else: + for c in iter_child_nodes(n): + collectLoopVars(c) + + collectLoopVars(node.target) + for varn in vars: + if (isinstance(self.scope.get(varn), Importation) + # unused ones will get an unused import warning + and self.scope[varn].used): + self.report(messages.ImportShadowedByLoopVar, + node.lineno, varn, self.scope[varn].source.lineno) + + self.handleChildren(node) + + def NAME(self, node): + """ + Handle occurrence of Name (which can be a load/store/delete access.) + """ + if node.id == 'locals' and isinstance(node.parent, ast.Call): + # we are doing locals() call in current scope + self.scope.usesLocals = True + # Locate the name in locals / function / globals scopes. + if isinstance(node.ctx, (ast.Load, ast.AugLoad)): + self.handleNodeLoad(node) + elif isinstance(node.ctx, (ast.Store, ast.AugStore)): + self.handleNodeStore(node) + elif isinstance(node.ctx, ast.Del): + self.handleNodeDelete(node) + else: + # must be a Param context -- this only happens for names in function + # arguments, but these aren't dispatched through here + raise RuntimeError("Got impossible expression context: %r" % (node.ctx,)) + + def FUNCTIONDEF(self, node): + if not hasattr(node, 'decorator_list'): # Python 2.5 + node.decorator_list = node.decorators + for deco in node.decorator_list: + self.handleNode(deco, node) + self.addBinding(node, FunctionDefinition(node.name, node)) + self.LAMBDA(node) + + def LAMBDA(self, node): + args = [] + + if PY2: + def addArgs(arglist): + for arg in arglist: + if isinstance(arg, ast.Tuple): + addArgs(arg.elts) + else: + if arg.id in args: + self.report(messages.DuplicateArgument, + node.lineno, arg.id) + args.append(arg.id) + addArgs(node.args.args) + defaults = node.args.defaults + else: + for arg in node.args.args + node.args.kwonlyargs: + if arg.arg in args: + self.report(messages.DuplicateArgument, + node.lineno, arg.arg) + args.append(arg.arg) + self.handleNode(arg.annotation, node) + if hasattr(node, 'returns'): # Only for FunctionDefs + for annotation in (node.args.varargannotation, + node.args.kwargannotation, node.returns): + self.handleNode(annotation, node) + defaults = node.args.defaults + node.args.kw_defaults + + # vararg/kwarg identifiers are not Name nodes + for wildcard in (node.args.vararg, node.args.kwarg): + if not wildcard: + continue + if wildcard in args: + self.report(messages.DuplicateArgument, node.lineno, wildcard) + args.append(wildcard) + for default in defaults: + self.handleNode(default, node) + + def runFunction(): + + self.pushFunctionScope() + for name in args: + self.addBinding(node, Argument(name, node), reportRedef=False) + if isinstance(node.body, list): + # case for FunctionDefs + for stmt in node.body: + self.handleNode(stmt, node) + else: + # case for Lambdas + self.handleNode(node.body, node) + + def checkUnusedAssignments(): + """ + Check to see if any assignments have not been used. + """ + for name, binding in self.scope.items(): + if (not binding.used and name not in self.scope.globals + and not self.scope.usesLocals + and isinstance(binding, Assignment)): + self.report(messages.UnusedVariable, + binding.source.lineno, name) + self.deferAssignment(checkUnusedAssignments) + self.popScope() + + self.deferFunction(runFunction) + + def CLASSDEF(self, node): + """ + Check names used in a class definition, including its decorators, base + classes, and the body of its definition. Additionally, add its name to + the current scope. + """ + # no class decorator in Python 2.5 + for deco in getattr(node, 'decorator_list', ''): + self.handleNode(deco, node) + for baseNode in node.bases: + self.handleNode(baseNode, node) + if not PY2: + for keywordNode in node.keywords: + self.handleNode(keywordNode, node) + self.pushClassScope() + for stmt in node.body: + self.handleNode(stmt, node) + self.popScope() + self.addBinding(node, ClassDefinition(node.name, node)) + + def ASSIGN(self, node): + self.handleNode(node.value, node) + for target in node.targets: + self.handleNode(target, node) + + def AUGASSIGN(self, node): + self.handleNodeLoad(node.target) + self.handleNode(node.value, node) + self.handleNode(node.target, node) + + def IMPORT(self, node): + for alias in node.names: + name = alias.asname or alias.name + importation = Importation(name, node) + self.addBinding(node, importation) + + def IMPORTFROM(self, node): + if node.module == '__future__': + if not self.futuresAllowed: + self.report(messages.LateFutureImport, + node.lineno, [n.name for n in node.names]) + else: + self.futuresAllowed = False + + for alias in node.names: + if alias.name == '*': + self.scope.importStarred = True + self.report(messages.ImportStarUsed, node.lineno, node.module) + continue + name = alias.asname or alias.name + importation = Importation(name, node) + if node.module == '__future__': + importation.used = (self.scope, node.lineno) + self.addBinding(node, importation) + + def EXCEPTHANDLER(self, node): + # 3.x: in addition to handling children, we must handle the name of + # the exception, which is not a Name node, but a simple string. + if isinstance(node.name, str): + self.handleNodeStore(node) + self.handleChildren(node)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Utilities/py2flakes/messages.py Mon Apr 08 07:52:06 2013 +0200 @@ -0,0 +1,291 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> +# +# Original (c) 2005 Divmod, Inc. See LICENSE file for details +# +# This module is based on pyflakes for Python2 but was heavily hacked to +# work within Eric5 and Qt (translatable messages) + + +def QT_TRANSLATE_NOOP(mod, txt): + """ + Function to tell 'lupdate' which strings to keep for translation. + + @param mod module name + @param txt translatable string + @return the untranslated! string + """ + return txt + + +class Message(object): + """ + Class defining the base for all specific message classes. + """ + message = '' + message_args = () + + def __init__(self, filename, lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + """ + self.filename = filename + self.lineno = lineno + + def __str__(self): + """ + Special method return a string representation of the instance object. + + @return string representation of the object (string) + """ + return '%s:%s: %s' % ( + self.filename, self.lineno, self.message % self.message_args) + + def getMessageData(self): + """ + Public method to get the individual message data elements. + + @return tuple containing file name, line number and message + (string, integer, string) + """ + return (self.filename, self.lineno, self.message, self.message_args) + + +class UnusedImport(Message): + """ + Class defining the "Unused Import" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + '{0!r} imported but unused.') + + def __init__(self, filename, lineno, name): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the unused import (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name,) + + +class RedefinedWhileUnused(Message): + """ + Class defining the "Redefined While Unused" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Redefinition of unused {0!r} from line {1!r}.') + + def __init__(self, filename, lineno, name, orig_lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the redefined object (string) + @param orig_lineno line number of the original definition (integer) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name, orig_lineno) + + +class RedefinedInListComp(Message): + message = QT_TRANSLATE_NOOP('py3Flakes', + 'List comprehension redefines {0!r} from line {1!r}.') + + def __init__(self, filename, lineno, name, orig_lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the redefined object (string) + @param orig_lineno line number of the original definition (integer) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name, orig_lineno) + + +class ImportShadowedByLoopVar(Message): + """ + Class defining the "Import Shadowed By Loop Var" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Import {0!r} from line {1!r} shadowed by loop variable.') + + def __init__(self, filename, lineno, name, orig_lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the shadowed import (string) + @param orig_lineno line number of the import (integer) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name, orig_lineno) + + +class ImportStarUsed(Message): + """ + Class defining the "Import Star Used" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + "'from {0} import *' used; unable to detect undefined names.") + + def __init__(self, filename, lineno, modname): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param modname name of the module imported using star import (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (modname,) + + +class UndefinedName(Message): + """ + Class defining the "Undefined Name" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', 'Undefined name {0!r}.') + + def __init__(self, filename, lineno, name): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name undefined name (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name,) + + +class UndefinedExport(Message): + """ + Class defining the "Undefined Export" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Undefined name {0!r} in __all__.') + + def __init__(self, filename, lineno, name): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name undefined exported name (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name,) + + +class UndefinedLocal(Message): + """ + Class defining the "Undefined Local Variable" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + "Local variable {0!r} (defined in enclosing scope on line {1!r})" \ + " referenced before assignment.") + + def __init__(self, filename, lineno, name, orig_lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the prematurely referenced variable (string) + @param orig_lineno line number of the variable definition (integer) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name, orig_lineno) + + +class DuplicateArgument(Message): + """ + Class defining the "Duplicate Argument" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Duplicate argument {0!r} in function definition.') + + def __init__(self, filename, lineno, name): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the duplicate argument (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name,) + + +class Redefined(Message): + """ + Class defining the "Redefined" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Redefinition of {0!r} from line {1!r}.') + + def __init__(self, filename, lineno, name, orig_lineno): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the redefined function (string) + @param orig_lineno line number of the original definition (integer) + """ + Message.__init__(self, filename, lineno) + self.message_args = (name, orig_lineno) + + +class LateFutureImport(Message): + """ + Class defining the "Late Future Import" message. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Future import(s) {0!r} after other statements.') + + def __init__(self, filename, lineno, names): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param names names of the imported futures (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (names,) + + +class UnusedVariable(Message): + """ + Class defining the "Unused Variable" message. + + Indicates that a variable has been explicitly assigned to but not actually + used. + """ + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Local variable {0!r} is assigned to but never used.') + + def __init__(self, filename, lineno, names): + """ + Constructor + + @param filename name of the file (string) + @param lineno line number (integer) + @param name name of the unused variable (string) + """ + Message.__init__(self, filename, lineno) + self.message_args = (names,) + +# +# eflag: FileType = Python2
--- a/Utilities/py3flakes/messages.py Thu Mar 28 20:09:00 2013 +0100 +++ b/Utilities/py3flakes/messages.py Mon Apr 08 07:52:06 2013 +0200 @@ -7,7 +7,16 @@ # This module is based on pyflakes for Python2 but was heavily hacked to # work with Python3 and Qt (translatable messages) -from PyQt4.QtCore import QCoreApplication + +def QT_TRANSLATE_NOOP(mod, txt): + """ + Function to tell 'lupdate' which strings to keep for translation. + + @param mod module name + @param txt translatable string + @return the untranslated! string + """ + return txt class Message(object): @@ -43,14 +52,14 @@ @return tuple containing file name, line number and message (string, integer, string) """ - return (self.filename, self.lineno, self.message.format(*self.message_args)) + return (self.filename, self.lineno, self.message, self.message_args) class UnusedImport(Message): """ Class defining the "Unused Import" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', '{0!r} imported but unused.') def __init__(self, filename, lineno, name): @@ -69,9 +78,9 @@ """ Class defining the "Redefined While Unused" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Redefinition of unused {0!r} from line {1!r}.') - + def __init__(self, filename, lineno, name, orig_lineno): """ Constructor @@ -89,7 +98,7 @@ """ Class defining the "Import Shadowed By Loop Var" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Import {0!r} from line {1!r} shadowed by loop variable.') def __init__(self, filename, lineno, name, orig_lineno): @@ -109,7 +118,7 @@ """ Class defining the "Import Star Used" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', "'from {0} import *' used; unable to detect undefined names.") def __init__(self, filename, lineno, modname): @@ -128,7 +137,7 @@ """ Class defining the "Undefined Name" message. """ - message = QCoreApplication.translate('py3Flakes', 'Undefined name {0!r}.') + message = QT_TRANSLATE_NOOP('py3Flakes', 'Undefined name {0!r}.') def __init__(self, filename, lineno, name): """ @@ -146,7 +155,8 @@ """ Class defining the "Undefined Export" message. """ - message = QCoreApplication.translate('py3Flakes', 'Undefined name {0!r} in __all__.') + message = QT_TRANSLATE_NOOP('py3Flakes', + 'Undefined name {0!r} in __all__.') def __init__(self, filename, lineno, name): """ @@ -164,9 +174,9 @@ """ Class defining the "Undefined Local Variable" message. """ - message = QCoreApplication.translate('py3Flakes', - "Local variable {0!r} (defined in enclosing scope on line {1!r})" - " referenced before assignment.") + message = QT_TRANSLATE_NOOP('py3Flakes', + "Local variable {0!r} (defined in enclosing scope on line {1!r})" \ + " referenced before assignment.") def __init__(self, filename, lineno, name, orig_lineno): """ @@ -185,7 +195,7 @@ """ Class defining the "Duplicate Argument" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Duplicate argument {0!r} in function definition.') def __init__(self, filename, lineno, name): @@ -204,7 +214,7 @@ """ Class defining the "Redefined Function" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Redefinition of function {0!r} from line {1!r}.') def __init__(self, filename, lineno, name, orig_lineno): @@ -224,7 +234,7 @@ """ Class defining the "Late Future Import" message. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Future import(s) {0!r} after other statements.') def __init__(self, filename, lineno, names): @@ -246,7 +256,7 @@ Indicates that a variable has been explicitly assigned to but not actually used. """ - message = QCoreApplication.translate('py3Flakes', + message = QT_TRANSLATE_NOOP('py3Flakes', 'Local variable {0!r} is assigned to but never used.') def __init__(self, filename, lineno, name):
--- a/UtilitiesPython2/Py2SyntaxChecker.py Thu Mar 28 20:09:00 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,171 +0,0 @@ -#!/usr/bin/env python2 -# -*- coding: utf-8 -*- - -# Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> -# - -""" -Module implementing the syntax check for Python 2. -""" - -import sys -import re -import traceback - -from Tools import readEncodedFile, normalizeCode, extractLineFlags - - -def compile(file, codestring): - """ - Function to compile one Python source file to Python bytecode. - - @param file source filename (string) - @param codestring source code (string) - @return A tuple indicating status (True = an error was found), the - file name, the line number, the index number, the code string - and the error message (boolean, string, string, string, string, - string). The values are only valid, if the status equals 1. - """ - import __builtin__ - - try: - if type(file) == type(u""): - file = file.encode('utf-8') - - if file.endswith('.ptl'): - try: - import quixote.ptl_compile - except ImportError: - return (0, None, None, None, None) - template = quixote.ptl_compile.Template(codestring, file) - template.compile() - else: - __builtin__.compile(codestring, file, 'exec') - except SyntaxError, detail: - index = "0" - code = "" - error = "" - lines = traceback.format_exception_only(SyntaxError, detail) - match = re.match('\s*File "(.+)", line (\d+)', - lines[0].replace('<string>', '%s' % file)) - if match is not None: - fn, line = match.group(1, 2) - if lines[1].startswith('SyntaxError:'): - error = re.match('SyntaxError: (.+)', lines[1]).group(1) - else: - code = re.match('(.+)', lines[1]).group(1) - for seLine in lines[2:]: - if seLine.startswith('SyntaxError:'): - error = re.match('SyntaxError: (.+)', seLine).group(1) - elif seLine.rstrip().endswith('^'): - index = len(seLine.rstrip()) - 4 - else: - fn = detail.filename - line = detail.lineno and detail.lineno or 1 - error = detail.msg - return (1, fn, line, index, code, error) - except ValueError, detail: - index = "0" - code = "" - try: - fn = detail.filename - line = detail.lineno - error = detail.msg - except AttributeError: - fn = file - line = 1 - error = unicode(detail) - return (1, fn, line, index, code, error) - except StandardError, detail: - try: - fn = detail.filename - line = detail.lineno - index = "0" - code = "" - error = detail.msg - return (1, fn, line, index, code, error) - except: # this catchall is intentional - pass - - return (0, None, None, None, None, None) - - -def flakesCheck(fileName, codestring, ignoreStarImportWarnings): - """ - Function to perform a pyflakes check. - - @param fileName name of the file (string) - @param codestring source code to be checked (string) - @param ignoreStarImportWarnings flag indicating to - ignore 'star import' warnings (boolean) - @return list of strings containing the warnings - (marker, file name, line number, message) - """ - from py2flakes.checker import Checker - from py2flakes.messages import ImportStarUsed - - strings = [] - lines = codestring.splitlines() - try: - warnings = Checker(codestring, fileName) - warnings.messages.sort(key=lambda a: a.lineno) - for warning in warnings.messages: - if ignoreStarImportWarnings and \ - isinstance(warning, ImportStarUsed): - continue - - _fn, lineno, message = warning.getMessageData() - if "__IGNORE_WARNING__" not in extractLineFlags(lines[lineno - 1].strip()): - strings.extend(["FLAKES_WARNING", _fn, lineno, message]) - except SyntaxError as err: - if err.text.strip(): - msg = err.text.strip() - else: - msg = err.msg - strings.extend(["FLAKES_ERROR", fileName, err.lineno, msg]) - - return strings - -if __name__ == "__main__": - if len(sys.argv) < 2 or \ - len(sys.argv) > 3 or \ - (len(sys.argv) == 3 and sys.argv[1] not in ["-fi", "-fs"]): - print "ERROR" - print "" - print "" - print "" - print "" - print "No file name given." - else: - filename = sys.argv[-1] - try: - codestring = readEncodedFile(filename)[0] - codestring = normalizeCode(codestring) - - syntaxerror, fname, line, index, code, error = \ - compile(filename, codestring) - except IOError, msg: - # fake a syntax error - syntaxerror, fname, line, index, code, error = \ - 1, filename, "1", "0", "", "I/O Error: %s" % unicode(msg) - - if syntaxerror: - print "ERROR" - else: - print "NO_ERROR" - print fname - print line - print index - print code - print error - - if not syntaxerror and sys.argv[1] in ["-fi", "-fs"]: - # do pyflakes check - warningLines = flakesCheck(filename, codestring, sys.argv[1] == "-fi") - for warningLine in warningLines: - print warningLine - - sys.exit(0) - -# -# eflag: FileType = Python2
--- a/UtilitiesPython2/py2flakes/__init__.py Thu Mar 28 20:09:00 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> -# - -""" -Package containg pyflakes for Python2. -""" - -__version__ = '0.5.0' - -# -# eflag: FileType = Python2
--- a/UtilitiesPython2/py2flakes/checker.py Thu Mar 28 20:09:00 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,618 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright (c) 2011 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> -# -# Original (c) 2005-2010 Divmod, Inc. -# -# This module is based on pyflakes for Python2 but was heavily hacked to -# work within eric5 - -import __builtin__ -import os.path -import _ast - -from py2flakes import messages - - -# utility function to iterate over an AST node's children, adapted -# from Python 2.6's standard ast module -try: - import ast - iter_child_nodes = ast.iter_child_nodes -except (ImportError, AttributeError): - def iter_child_nodes(node, astcls=_ast.AST): - """ - Yield all direct child nodes of *node*, that is, all fields that are nodes - and all items of fields that are lists of nodes. - """ - for name in node._fields: - field = getattr(node, name, None) - if isinstance(field, astcls): - yield field - elif isinstance(field, list): - for item in field: - yield item - - -class Binding(object): - """ - Represents the binding of a value to a name. - - The checker uses this to keep track of which names have been bound and - which names have not. See L{Assignment} for a special type of binding that - is checked with stricter rules. - """ - def __init__(self, name, source): - self.name = name - self.source = source - self.used = False - - def __str__(self): - return self.name - - def __repr__(self): - return '<%s object %r from line %r at 0x%x>' % ( - self.__class__.__name__, - self.name, - self.source.lineno, - id(self)) - - -class UnBinding(Binding): - ''' - Created by the 'del' operator. - ''' - - -class Importation(Binding): - """ - A binding created by an import statement. - """ - def __init__(self, name, source): - self.fullName = name - name = name.split('.')[0] - super(Importation, self).__init__(name, source) - - -class Argument(Binding): - """ - Represents binding a name as an argument. - """ - - -class Assignment(Binding): - """ - Represents binding a name with an explicit assignment. - - The checker will raise warnings for any Assignment that isn't used. Also, - the checker does not consider assignments in tuple/list unpacking to be - Assignments, rather it treats them as simple Bindings. - """ - - -class FunctionDefinition(Binding): - """ - Represents a function definition. - """ - pass - - -class ExportBinding(Binding): - """ - A binding created by an __all__ assignment. If the names in the list - can be determined statically, they will be treated as names for export and - additional checking applied to them. - - The only __all__ assignment that can be recognized is one which takes - the value of a literal list containing literal strings. For example:: - - __all__ = ["foo", "bar"] - - Names which are imported and not otherwise used but appear in the value of - __all__ will not have an unused import warning reported for them. - """ - def names(self): - """ - Return a list of the names referenced by this binding. - """ - names = [] - if isinstance(self.source, _ast.List): - for node in self.source.elts: - if isinstance(node, _ast.Str): - names.append(node.s) - return names - - -class Scope(dict): - """ - Class defining the scope base class. - """ - importStarred = False # set to True when import * is found - - def __repr__(self): - return '<%s at 0x%x %s>' % ( - self.__class__.__name__, id(self), dict.__repr__(self)) - - def __init__(self): - super(Scope, self).__init__() - - -class ClassScope(Scope): - """ - Class representing a name scope for a class. - """ - pass - - -class FunctionScope(Scope): - """ - Class representing a name scope for a function. - """ - def __init__(self): - super(FunctionScope, self).__init__() - self.globals = {} - - -class ModuleScope(Scope): - """ - Class representing a name scope for a module. - """ - pass - -# Globally defined names which are not attributes of the __builtin__ module. -_MAGIC_GLOBALS = ['__file__', '__builtins__'] - - -class Checker(object): - """ - Class to check the cleanliness and sanity of Python code. - """ - nodeDepth = 0 - traceTree = False - - def __init__(self, module, filename='(none)'): - """ - Constructor - - @param module parsed module tree or module source code - @param filename name of the module file (string) - """ - self._deferredFunctions = [] - self._deferredAssignments = [] - self.dead_scopes = [] - self.messages = [] - self.filename = filename - self.scopeStack = [ModuleScope()] - self.futuresAllowed = True - - if isinstance(module, str): - module = ast.parse(module, filename, "exec") - self.handleChildren(module) - self._runDeferred(self._deferredFunctions) - # Set _deferredFunctions to None so that deferFunction will fail - # noisily if called after we've run through the deferred functions. - self._deferredFunctions = None - self._runDeferred(self._deferredAssignments) - # Set _deferredAssignments to None so that deferAssignment will fail - # noisly if called after we've run through the deferred assignments. - self._deferredAssignments = None - del self.scopeStack[1:] - self.popScope() - self.check_dead_scopes() - - def deferFunction(self, callable): - ''' - Schedule a function handler to be called just before completion. - - This is used for handling function bodies, which must be deferred - because code later in the file might modify the global scope. When - `callable` is called, the scope at the time this is called will be - restored, however it will contain any new bindings added to it. - ''' - self._deferredFunctions.append((callable, self.scopeStack[:])) - - def deferAssignment(self, callable): - """ - Schedule an assignment handler to be called just after deferred - function handlers. - """ - self._deferredAssignments.append((callable, self.scopeStack[:])) - - def _runDeferred(self, deferred): - """ - Run the callables in deferred using their associated scope stack. - """ - for handler, scope in deferred: - self.scopeStack = scope - handler() - - def scope(self): - return self.scopeStack[-1] - scope = property(scope) - - def popScope(self): - self.dead_scopes.append(self.scopeStack.pop()) - - def check_dead_scopes(self): - """ - Look at scopes which have been fully examined and report names in them - which were imported but unused. - """ - for scope in self.dead_scopes: - export = isinstance(scope.get('__all__'), ExportBinding) - if export: - all = scope['__all__'].names() - if os.path.split(self.filename)[1] != '__init__.py': - # Look for possible mistakes in the export list - undefined = set(all) - set(scope) - for name in undefined: - self.report( - messages.UndefinedExport, - scope['__all__'].source.lineno, - name) - else: - all = [] - - # Look for imported names that aren't used. - for importation in scope.itervalues(): - if isinstance(importation, Importation): - if not importation.used and importation.name not in all: - self.report( - messages.UnusedImport, - importation.source.lineno, - importation.name) - - def pushFunctionScope(self): - self.scopeStack.append(FunctionScope()) - - def pushClassScope(self): - self.scopeStack.append(ClassScope()) - - def report(self, messageClass, *args, **kwargs): - self.messages.append(messageClass(self.filename, *args, **kwargs)) - - def handleChildren(self, tree): - for node in iter_child_nodes(tree): - self.handleNode(node, tree) - - def isDocstring(self, node): - """ - Determine if the given node is a docstring, as long as it is at the - correct place in the node tree. - """ - return isinstance(node, _ast.Str) or \ - (isinstance(node, _ast.Expr) and - isinstance(node.value, _ast.Str)) - - def handleNode(self, node, parent): - if node: - node.parent = parent - if self.traceTree: - print ' ' * self.nodeDepth + node.__class__.__name__ - self.nodeDepth += 1 - if self.futuresAllowed and not \ - (isinstance(node, _ast.ImportFrom) or self.isDocstring(node)): - self.futuresAllowed = False - nodeType = node.__class__.__name__.upper() - try: - handler = getattr(self, nodeType) - handler(node) - except AttributeError: - print nodeType, "not supported yet. Please report this." - finally: - self.nodeDepth -= 1 - if self.traceTree: - print ' ' * self.nodeDepth + 'end ' + node.__class__.__name__ - - def ignore(self, node): - pass - - # "stmt" type nodes - RETURN = DELETE = PRINT = WHILE = IF = WITH = RAISE = TRYEXCEPT = \ - TRYFINALLY = ASSERT = EXEC = EXPR = handleChildren - - CONTINUE = BREAK = PASS = ignore - - # "expr" type nodes - BOOLOP = BINOP = UNARYOP = IFEXP = DICT = SET = YIELD = COMPARE = \ - CALL = REPR = ATTRIBUTE = SUBSCRIPT = LIST = TUPLE = handleChildren - - NUM = STR = ELLIPSIS = ignore - - # "slice" type nodes - SLICE = EXTSLICE = INDEX = handleChildren - - # expression contexts are node instances too, though being constants - LOAD = STORE = DEL = AUGLOAD = AUGSTORE = PARAM = ignore - - # same for operators - AND = OR = ADD = SUB = MULT = DIV = MOD = POW = LSHIFT = RSHIFT = \ - BITOR = BITXOR = BITAND = FLOORDIV = INVERT = NOT = UADD = USUB = \ - EQ = NOTEQ = LT = LTE = GT = GTE = IS = ISNOT = IN = NOTIN = ignore - - # additional node types - COMPREHENSION = EXCEPTHANDLER = KEYWORD = handleChildren - - def addBinding(self, lineno, value, reportRedef=True): - ''' - Called when a binding is altered. - - @param lineno line of the statement responsible for the change (integer) - @param value the optional new value, a Binding instance, associated - with the binding; if None, the binding is deleted if it exists - @param reportRedef flag indicating if rebinding while unused will be - reported (boolean) - ''' - if (isinstance(self.scope.get(value.name), FunctionDefinition) - and isinstance(value, FunctionDefinition)): - self.report(messages.RedefinedFunction, - lineno, value.name, self.scope[value.name].source.lineno) - - if not isinstance(self.scope, ClassScope): - for scope in self.scopeStack[::-1]: - existing = scope.get(value.name) - if (isinstance(existing, Importation) - and not existing.used - and (not isinstance(value, Importation) or - value.fullName == existing.fullName) - and reportRedef): - - self.report(messages.RedefinedWhileUnused, - lineno, value.name, scope[value.name].source.lineno) - - if isinstance(value, UnBinding): - try: - del self.scope[value.name] - except KeyError: - self.report(messages.UndefinedName, lineno, value.name) - else: - self.scope[value.name] = value - - def GLOBAL(self, node): - """ - Keep track of globals declarations. - """ - if isinstance(self.scope, FunctionScope): - self.scope.globals.update(dict.fromkeys(node.names)) - - def LISTCOMP(self, node): - # handle generators before element - for gen in node.generators: - self.handleNode(gen, node) - self.handleNode(node.elt, node) - - GENERATOREXP = SETCOMP = LISTCOMP - - # dictionary comprehensions; introduced in Python 2.7 - def DICTCOMP(self, node): - for gen in node.generators: - self.handleNode(gen, node) - self.handleNode(node.key, node) - self.handleNode(node.value, node) - - def FOR(self, node): - """ - Process bindings for loop variables. - """ - vars = [] - - def collectLoopVars(n): - if isinstance(n, _ast.Name): - vars.append(n.id) - elif isinstance(n, _ast.expr_context): - return - else: - for c in iter_child_nodes(n): - collectLoopVars(c) - - collectLoopVars(node.target) - for varn in vars: - if (isinstance(self.scope.get(varn), Importation) - # unused ones will get an unused import warning - and self.scope[varn].used): - self.report(messages.ImportShadowedByLoopVar, - node.lineno, varn, self.scope[varn].source.lineno) - - self.handleChildren(node) - - def NAME(self, node): - """ - Locate the name in locals / function / globals scopes. - """ - if isinstance(node.ctx, (_ast.Load, _ast.AugLoad)): - # try local scope - importStarred = self.scope.importStarred - try: - self.scope[node.id].used = (self.scope, node.lineno) - except KeyError: - pass - else: - return - - # try enclosing function scopes - - for scope in self.scopeStack[-2:0:-1]: - importStarred = importStarred or scope.importStarred - if not isinstance(scope, FunctionScope): - continue - try: - scope[node.id].used = (self.scope, node.lineno) - except KeyError: - pass - else: - return - - # try global scope - - importStarred = importStarred or self.scopeStack[0].importStarred - try: - self.scopeStack[0][node.id].used = (self.scope, node.lineno) - except KeyError: - if ((not hasattr(__builtin__, node.id)) - and node.id not in _MAGIC_GLOBALS - and not importStarred): - if (os.path.basename(self.filename) == '__init__.py' and - node.id == '__path__'): - # the special name __path__ is valid only in packages - pass - else: - self.report(messages.UndefinedName, node.lineno, node.id) - elif isinstance(node.ctx, (_ast.Store, _ast.AugStore)): - # if the name hasn't already been defined in the current scope - if isinstance(self.scope, FunctionScope) and node.id not in self.scope: - # for each function or module scope above us - for scope in self.scopeStack[:-1]: - if not isinstance(scope, (FunctionScope, ModuleScope)): - continue - # if the name was defined in that scope, and the name has - # been accessed already in the current scope, and hasn't - # been declared global - if (node.id in scope - and scope[node.id].used - and scope[node.id].used[0] is self.scope - and node.id not in self.scope.globals): - # then it's probably a mistake - self.report(messages.UndefinedLocal, - scope[node.id].used[1], - node.id, - scope[node.id].source.lineno) - break - - if isinstance(node.parent, - (_ast.For, _ast.comprehension, _ast.Tuple, _ast.List)): - binding = Binding(node.id, node) - elif (node.id == '__all__' and - isinstance(self.scope, ModuleScope)): - binding = ExportBinding(node.id, node.parent.value) - else: - binding = Assignment(node.id, node) - if node.id in self.scope: - binding.used = self.scope[node.id].used - self.addBinding(node.lineno, binding) - elif isinstance(node.ctx, _ast.Del): - if isinstance(self.scope, FunctionScope) and \ - node.id in self.scope.globals: - del self.scope.globals[node.id] - else: - self.addBinding(node.lineno, UnBinding(node.id, node)) - else: - # must be a Param context -- this only happens for names in function - # arguments, but these aren't dispatched through here - raise RuntimeError( - "Got impossible expression context: %r" % (node.ctx,)) - - def FUNCTIONDEF(self, node): - if hasattr(node, 'decorators'): - for deco in node.decorators: - self.handleNode(deco, node) - else: - for deco in node.decorator_list: - self.handleNode(deco, node) - self.addBinding(node.lineno, FunctionDefinition(node.name, node)) - self.LAMBDA(node) - - def LAMBDA(self, node): - for default in node.args.defaults: - self.handleNode(default, node) - - def runFunction(): - args = [] - - def addArgs(arglist): - for arg in arglist: - if isinstance(arg, _ast.Tuple): - addArgs(arg.elts) - else: - if arg.id in args: - self.report(messages.DuplicateArgument, node.lineno, arg.id) - args.append(arg.id) - - self.pushFunctionScope() - addArgs(node.args.args) - # vararg/kwarg identifiers are not Name nodes - if node.args.vararg: - args.append(node.args.vararg) - if node.args.kwarg: - args.append(node.args.kwarg) - for name in args: - self.addBinding(node.lineno, Argument(name, node), reportRedef=False) - if isinstance(node.body, list): - # case for FunctionDefs - for stmt in node.body: - self.handleNode(stmt, node) - else: - # case for Lambdas - self.handleNode(node.body, node) - - def checkUnusedAssignments(): - """ - Check to see if any assignments have not been used. - """ - for name, binding in self.scope.iteritems(): - if (not binding.used and not name in self.scope.globals - and isinstance(binding, Assignment)): - self.report(messages.UnusedVariable, - binding.source.lineno, name) - self.deferAssignment(checkUnusedAssignments) - self.popScope() - - self.deferFunction(runFunction) - - def CLASSDEF(self, node): - """ - Check names used in a class definition, including its decorators, base - classes, and the body of its definition. Additionally, add its name to - the current scope. - """ - # decorator_list is present as of Python 2.6 - for deco in getattr(node, 'decorator_list', []): - self.handleNode(deco, node) - for baseNode in node.bases: - self.handleNode(baseNode, node) - self.pushClassScope() - for stmt in node.body: - self.handleNode(stmt, node) - self.popScope() - self.addBinding(node.lineno, Binding(node.name, node)) - - def ASSIGN(self, node): - self.handleNode(node.value, node) - for target in node.targets: - self.handleNode(target, node) - - def AUGASSIGN(self, node): - # AugAssign is awkward: must set the context explicitly and visit twice, - # once with AugLoad context, once with AugStore context - node.target.ctx = _ast.AugLoad() - self.handleNode(node.target, node) - self.handleNode(node.value, node) - node.target.ctx = _ast.AugStore() - self.handleNode(node.target, node) - - def IMPORT(self, node): - for alias in node.names: - name = alias.asname or alias.name - importation = Importation(name, node) - self.addBinding(node.lineno, importation) - - def IMPORTFROM(self, node): - if node.module == '__future__': - if not self.futuresAllowed: - self.report(messages.LateFutureImport, node.lineno, - [n.name for n in node.names]) - else: - self.futuresAllowed = False - - for alias in node.names: - if alias.name == '*': - self.scope.importStarred = True - self.report(messages.ImportStarUsed, node.lineno, node.module) - continue - name = alias.asname or alias.name - importation = Importation(name, node) - if node.module == '__future__': - importation.used = (self.scope, node.lineno) - self.addBinding(node.lineno, importation) - -# -# eflag: FileType = Python2
--- a/UtilitiesPython2/py2flakes/messages.py Thu Mar 28 20:09:00 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,253 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright (c) 2010 - 2013 Detlev Offenbach <detlev@die-offenbachs.de> -# -# Original (c) 2005 Divmod, Inc. See LICENSE file for details -# -# This module is based on pyflakes for Python2 but was heavily hacked to -# work within eric5 - - -class Message(object): - """ - Class defining the base for all specific message classes. - """ - message = '' - message_args = () - - def __init__(self, filename, lineno): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - """ - self.filename = filename - self.lineno = lineno - - def __str__(self): - """ - Special method return a string representation of the instance object. - - @return string representation of the object (string) - """ - return '%s:%s: %s' % ( - self.filename, self.lineno, self.message % self.message_args) - - def getMessageData(self): - """ - Public method to get the individual message data elements. - - @return tuple containing file name, line number and message - (string, integer, string) - """ - return (self.filename, self.lineno, self.message % self.message_args) - - -class UnusedImport(Message): - """ - Class defining the "Unused Import" message. - """ - message = '%r imported but unused' - - def __init__(self, filename, lineno, name): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the unused import (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name,) - - -class RedefinedWhileUnused(Message): - """ - Class defining the "Redefined While Unused" message. - """ - message = 'redefinition of unused %r from line %r' - - def __init__(self, filename, lineno, name, orig_lineno): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the redefined object (string) - @param orig_lineno line number of the original definition (integer) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name, orig_lineno) - - -class ImportShadowedByLoopVar(Message): - """ - Class defining the "Import Shadowed By Loop Var" message. - """ - message = 'import %r from line %r shadowed by loop variable' - - def __init__(self, filename, lineno, name, orig_lineno): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the shadowed import (string) - @param orig_lineno line number of the import (integer) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name, orig_lineno) - - -class ImportStarUsed(Message): - """ - Class defining the "Import Star Used" message. - """ - message = "'from %s import *' used; unable to detect undefined names" - - def __init__(self, filename, lineno, modname): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param modname name of the module imported using star import (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (modname,) - - -class UndefinedName(Message): - """ - Class defining the "Undefined Name" message. - """ - message = 'undefined name %r' - - def __init__(self, filename, lineno, name): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name undefined name (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name,) - - -class UndefinedExport(Message): - """ - Class defining the "Undefined Export" message. - """ - message = 'undefined name %r in __all__' - - def __init__(self, filename, lineno, name): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name undefined exported name (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name,) - - -class UndefinedLocal(Message): - """ - Class defining the "Undefined Local Variable" message. - """ - message = "local variable %r (defined in enclosing scope on line %r)" \ - " referenced before assignment" - - def __init__(self, filename, lineno, name, orig_lineno): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the prematurely referenced variable (string) - @param orig_lineno line number of the variable definition (integer) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name, orig_lineno) - - -class DuplicateArgument(Message): - """ - Class defining the "Duplicate Argument" message. - """ - message = 'duplicate argument %r in function definition' - - def __init__(self, filename, lineno, name): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the duplicate argument (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name,) - - -class RedefinedFunction(Message): - """ - Class defining the "Redefined Function" message. - """ - message = 'redefinition of function %r from line %r' - - def __init__(self, filename, lineno, name, orig_lineno): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the redefined function (string) - @param orig_lineno line number of the original definition (integer) - """ - Message.__init__(self, filename, lineno) - self.message_args = (name, orig_lineno) - - -class LateFutureImport(Message): - """ - Class defining the "Late Future Import" message. - """ - message = 'future import(s) %r after other statements' - - def __init__(self, filename, lineno, names): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param names names of the imported futures (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (names,) - - -class UnusedVariable(Message): - """ - Class defining the "Unused Variable" message. - - Indicates that a variable has been explicitly assigned to but not actually - used. - """ - message = 'local variable %r is assigned to but never used' - - def __init__(self, filename, lineno, names): - """ - Constructor - - @param filename name of the file (string) - @param lineno line number (integer) - @param name name of the unused variable (string) - """ - Message.__init__(self, filename, lineno) - self.message_args = (names,) - -# -# eflag: FileType = Python2
--- a/eric5.e4p Thu Mar 28 20:09:00 2013 +0100 +++ b/eric5.e4p Mon Apr 08 07:52:06 2013 +0200 @@ -1,6 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Project SYSTEM "Project-5.1.dtd"> <!-- eric5 project file for project eric5 --> +<!-- Saved: 2013-04-08, 07:48:51 --> +<!-- Copyright (C) 2013 Detlev Offenbach, detlev@die-offenbachs.de --> <Project version="5.1"> <Language>en_US</Language> <ProjectWordList>Dictionaries/words.dic</ProjectWordList> @@ -801,10 +803,6 @@ <Source>ThirdParty/Pygments/pygments/styles/monokai.py</Source> <Source>Preferences/ConfigurationPages/TrayStarterPage.py</Source> <Source>UtilitiesPython2/__init__.py</Source> - <Source>UtilitiesPython2/Py2SyntaxChecker.py</Source> - <Source>UtilitiesPython2/py2flakes/__init__.py</Source> - <Source>UtilitiesPython2/py2flakes/checker.py</Source> - <Source>UtilitiesPython2/py2flakes/messages.py</Source> <Source>UtilitiesPython2/Tools.py</Source> <Source>UtilitiesPython2/Tabnanny.py</Source> <Source>UtilitiesPython2/TabnannyChecker.py</Source> @@ -1076,6 +1074,10 @@ <Source>E5Network/E5SslCertificatesInfoDialog.py</Source> <Source>E5Network/E5SslInfoWidget.py</Source> <Source>Utilities/compatibility_fixes.py</Source> + <Source>Utilities/SyntaxCheck.py</Source> + <Source>Utilities/py2flakes/checker.py</Source> + <Source>Utilities/py2flakes/messages.py</Source> + <Source>Utilities/py2flakes/__init__.py</Source> </Sources> <Forms> <Form>PyUnit/UnittestDialog.ui</Form>
--- a/i18n/eric5_de.ts Thu Mar 28 20:09:00 2013 +0100 +++ b/i18n/eric5_de.ts Mon Apr 08 07:52:06 2013 +0200 @@ -29,7 +29,7 @@ <translation>&Lizenz Vereinbarung</translation> </message> <message> - <location filename="Plugins/AboutPlugin/AboutDialog.py" line="22"/> + <location filename="Plugins/AboutPlugin/AboutDialog.py" line="24"/> <source><p>{0} is an Integrated Development Environment for the Python programming language. It is written using the PyQt Python bindings for the Qt GUI toolkit and the QScintilla editor widget.</p><p>For more information see <a href="{1}">{1}</a>.</p><p>Please send bug reports to <a href="mailto:{2}">{2}</a>.</p><p>To request a new feature please send an email to <a href="mailto:{3}">{3}</a>.</p><p>{0} uses third party software which is copyrighted by it's respective copyright holder. For details see the copyright notice of the individual package.</p></source> <translation><p>{0} ist eine Integrierte Entwicklungsumgebung für die Python Programmiersprache. Sie wurde unter Verwendung der PyQt Python Bindings für das Qt GUI Toolkit und unter Verwendung des QScintilla Editor Widgets erstellt.</p><p>Weitergehende Informationen erhalten Sie unter <a href="{1}">{1}</a>.</p><p>Bitte senden Sie Fehlerberichte an <a href="mailto:{2}">{2}</a>.</p><p>Um eine neue Funktion anzufragen, senden sie bitte eine Email an <a href="mailto:{3}">{3}</a>.</p><p>{0} benutzt Fremdsoftware, deren Copyright bei den entsprechend Copyright Haltern liegt. Details können der Copyright Notiz des entsprechenden Paketes entnommen werden.</p></translation> </message> @@ -37,42 +37,42 @@ <context> <name>AboutPlugin</name> <message> - <location filename="Plugins/PluginAbout.py" line="76"/> + <location filename="Plugins/PluginAbout.py" line="78"/> <source>About {0}</source> <translation>Über {0}</translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="76"/> + <location filename="Plugins/PluginAbout.py" line="78"/> <source>&About {0}</source> <translation>&Über {0}</translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="80"/> + <location filename="Plugins/PluginAbout.py" line="82"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="81"/> + <location filename="Plugins/PluginAbout.py" line="83"/> <source><b>About {0}</b><p>Display some information about this software.</p></source> <translation><b>Über {0}</b><p>Zeige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="89"/> + <location filename="Plugins/PluginAbout.py" line="91"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="89"/> + <location filename="Plugins/PluginAbout.py" line="91"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="Plugins/PluginAbout.py" line="92"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> <location filename="Plugins/PluginAbout.py" line="94"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="Plugins/PluginAbout.py" line="96"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> @@ -80,12 +80,12 @@ <context> <name>AdBlockAccessHandler</name> <message> - <location filename="Helpviewer/AdBlock/AdBlockAccessHandler.py" line="43"/> + <location filename="Helpviewer/AdBlock/AdBlockAccessHandler.py" line="45"/> <source>Subscribe?</source> <translation>Abonieren?</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockAccessHandler.py" line="43"/> + <location filename="Helpviewer/AdBlock/AdBlockAccessHandler.py" line="45"/> <source><p>Subscribe to this AdBlock subscription?</p><p>{0}</p></source> <translation><p>Soll dieses AdBlock Abonnement gebucht werden?</p><p>{0}</p></translation> </message> @@ -108,22 +108,22 @@ <translation>Aktionen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="139"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="141"/> <source>Learn more about writing rules...</source> <translation>Mehr über das Schreiben von Regeln lernen...</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="134"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="136"/> <source>Update Subscription</source> <translation>Abonnement aktualisieren</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="123"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="125"/> <source>Browse Subscriptions...</source> <translation>Abonnements anschauen...</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="212"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="214"/> <source>Remove Subscription</source> <translation>Abonnement löschen</translation> </message> @@ -138,42 +138,42 @@ <translation>Gib die Aktualisierungsperiode ein (1 bis 14 Tage)</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="36"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="38"/> <source>Search...</source> <translation>Suchen...</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="118"/> - <source>Add Rule</source> - <translation>Regel hinzufügen</translation> - </message> - <message> <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="120"/> + <source>Add Rule</source> + <translation>Regel hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="122"/> <source>Remove Rule</source> <translation>Regel löschen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="129"/> - <source>Disable Subscription</source> - <translation>Abonnement deaktivieren</translation> - </message> - <message> <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="131"/> + <source>Disable Subscription</source> + <translation>Abonnement deaktivieren</translation> + </message> + <message> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="133"/> <source>Enable Subscription</source> <translation>Abonnement aktivieren</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="136"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="138"/> <source>Update All Subscriptions</source> <translation>Alle Abonnements aktualisieren</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="204"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="206"/> <source><p>Do you really want to remove subscription <b>{0}</b> and all subscriptions requiring it?</p><ul><li>{1}</li></ul></source> <translation><p>Soll das Abonnement <b>{0}</b> und alle abhängigen Abonnements wirklich gelöscht werden?</p><ul><li>{1}</li></ul></translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="210"/> + <location filename="Helpviewer/AdBlock/AdBlockDialog.py" line="212"/> <source><p>Do you really want to remove subscription <b>{0}</b>?</p></source> <translation><p>Soll das Abonnement <b>{0}</b> wirklich gelöscht werden?</p></translation> </message> @@ -216,7 +216,7 @@ <translation>&Löschen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockExceptionsDialog.py" line="33"/> + <location filename="Helpviewer/AdBlock/AdBlockExceptionsDialog.py" line="35"/> <source>Enter host to be added...</source> <translation>Gib einen hinzuzufügenden Host ein...</translation> </message> @@ -224,57 +224,57 @@ <context> <name>AdBlockIcon</name> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="36"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="38"/> <source>AdBlock lets you block unwanted content on web pages.</source> <translation>AdBlock lässt sie ungewünschten Webinhalt blockieren.</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="70"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="72"/> <source>Disable AdBlock</source> <translation>AdBlock deaktivieren</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="73"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="75"/> <source>Enable AdBlock</source> <translation>AdBlock aktivieren</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="95"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="97"/> <source>Blocked URL (AdBlock Rule) - click to edit rule</source> <translation>Blockierte URL (AdBlock Regel) - klicken, um Regel anzuzeigen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="100"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="102"/> <source>{0} with ({1})</source> <translation>{0} mit ({1})</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="105"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="107"/> <source>No content blocked</source> <translation>Kein blockierter Inhalt</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="114"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="116"/> <source>AdBlock</source> <translation>AdBlock</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="79"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="81"/> <source>Remove AdBlock Exception</source> <translation>AdBlock Ausnahme löschen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="83"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="85"/> <source>Add AdBlock Exception</source> <translation>AdBlock Ausnahme hinzufügen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="86"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="88"/> <source>AdBlock Exceptions...</source> <translation>AdBlock Ausnahmen...</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="89"/> + <location filename="Helpviewer/AdBlock/AdBlockIcon.py" line="91"/> <source>AdBlock Configuration...</source> <translation>AdBlock Konfiguration...</translation> </message> @@ -282,7 +282,7 @@ <context> <name>AdBlockManager</name> <message> - <location filename="Helpviewer/AdBlock/AdBlockManager.py" line="136"/> + <location filename="Helpviewer/AdBlock/AdBlockManager.py" line="138"/> <source>Custom Rules</source> <translation>Spezifische Regel</translation> </message> @@ -290,47 +290,47 @@ <context> <name>AdBlockSubscription</name> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="273"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="275"/> <source>Load subscription rules</source> <translation>Abonnementregeln laden</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="265"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="267"/> <source>Unable to open adblock file '{0}' for reading.</source> <translation>Adblock Datei '{0}' konnte nicht zum Lesen geöffnet werden.</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="434"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="436"/> <source>Downloading subscription rules</source> <translation>Lade Abonnementregeln herunter</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="366"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="368"/> <source><p>Subscription rules could not be downloaded.</p><p>Error: {0}</p></source> <translation><p>Abonnementregeln konnten nicht heruntergeladen werden.</p><p>Fehler: {0}</p></translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="376"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="378"/> <source>Got empty subscription rules.</source> <translation>Habe leere Abonnementregeln erhalten.</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="454"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="456"/> <source>Unable to open adblock file '{0}' for writing.</source> <translation>Adblock Datei '{0}' konnte nicht zum Schreiben geöffnet werden.</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="454"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="456"/> <source>Saving subscription rules</source> <translation>Speichern der Abonnementregeln</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="273"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="275"/> <source>AdBlock file '{0}' does not start with [Adblock.</source> <translation>AdBlock Datei '{0}' startet nicht mit [Adblock.</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="434"/> + <location filename="Helpviewer/AdBlock/AdBlockSubscription.py" line="436"/> <source><p>AdBlock subscription <b>{0}</b> has a wrong checksum.<br/>Found: {1}<br/>Calculated: {2}<br/>Use it anyway?</p></source> <translation><p>AdBlock Abonnement <b>{0}</b> hat eine falsche Prüfsumme.<br/>Gefunden: {1}<br/>Berechnet: {2}<br/>Trotzdem verwenden?</p></translation> </message> @@ -338,27 +338,27 @@ <context> <name>AdBlockTreeWidget</name> <message> - <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="116"/> + <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="118"/> <source>Add Custom Rule</source> <translation>Spezifische Regel hinzufügen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="116"/> + <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="118"/> <source>Write your rule here:</source> <translation>Schreibe die Regel hier:</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="167"/> - <source>Add Rule</source> - <translation>Regel hinzufügen</translation> - </message> - <message> <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="169"/> + <source>Add Rule</source> + <translation>Regel hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="171"/> <source>Remove Rule</source> <translation>Regel löschen</translation> </message> <message> - <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="221"/> + <location filename="Helpviewer/AdBlock/AdBlockTreeWidget.py" line="223"/> <source>{0} (recently updated)</source> <translation>{0} (kürzlich aktualisiert)</translation> </message> @@ -366,7 +366,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="195"/> + <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="197"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> @@ -381,17 +381,17 @@ <translation>Gib die Adresse ein</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="109"/> + <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="111"/> <source>Url</source> <translation>URL</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="110"/> + <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="112"/> <source>Title</source> <translation>Titel</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="192"/> + <location filename="Helpviewer/Bookmarks/AddBookmarkDialog.py" line="194"/> <source>Add Folder</source> <translation>Ordner hinzufügen</translation> </message> @@ -424,7 +424,7 @@ <context> <name>AddDirectoryDialog</name> <message> - <location filename="Project/AddDirectoryDialog.py" line="96"/> + <location filename="Project/AddDirectoryDialog.py" line="98"/> <source>Select directory</source> <translation>Wähle ein Verzeichnis</translation> </message> @@ -521,27 +521,27 @@ <translation>&Dateityp:</translation> </message> <message> - <location filename="Project/AddDirectoryDialog.py" line="60"/> + <location filename="Project/AddDirectoryDialog.py" line="62"/> <source>Source Files</source> <translation>Quelldateien</translation> </message> <message> - <location filename="Project/AddDirectoryDialog.py" line="61"/> - <source>Forms Files</source> - <translation>Formulare</translation> - </message> - <message> <location filename="Project/AddDirectoryDialog.py" line="63"/> + <source>Forms Files</source> + <translation>Formulare</translation> + </message> + <message> + <location filename="Project/AddDirectoryDialog.py" line="65"/> <source>Interface Files</source> <translation>Corba IDL Dateien</translation> </message> <message> + <location filename="Project/AddDirectoryDialog.py" line="66"/> + <source>Other Files (*)</source> + <translation>Andere Dateien (*)</translation> + </message> + <message> <location filename="Project/AddDirectoryDialog.py" line="64"/> - <source>Other Files (*)</source> - <translation>Andere Dateien (*)</translation> - </message> - <message> - <location filename="Project/AddDirectoryDialog.py" line="62"/> <source>Resource Files</source> <translation>Resource Dateien</translation> </message> @@ -549,37 +549,37 @@ <context> <name>AddFileDialog</name> <message> - <location filename="Project/AddFileDialog.py" line="62"/> + <location filename="Project/AddFileDialog.py" line="64"/> <source>Select target directory</source> <translation>Wähle das Zielverzeichnis</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="146"/> + <location filename="Project/AddFileDialog.py" line="148"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="104"/> + <location filename="Project/AddFileDialog.py" line="106"/> <source>Select Files</source> <translation>Dateien auswählen</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="112"/> + <location filename="Project/AddFileDialog.py" line="114"/> <source>Select user-interface files</source> <translation>Qt-Formulardateien auswählen</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="128"/> + <location filename="Project/AddFileDialog.py" line="130"/> <source>Select source files</source> <translation>Quellcodedateien auswählen</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="136"/> + <location filename="Project/AddFileDialog.py" line="138"/> <source>Select interface files</source> <translation>Corba IDL Dateien auswählen</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="147"/> + <location filename="Project/AddFileDialog.py" line="149"/> <source>Select files</source> <translation>Dateien auswählen</translation> </message> @@ -671,42 +671,42 @@ <translation>Alt+T</translation> </message> <message> - <location filename="Project/AddFileDialog.py" line="120"/> + <location filename="Project/AddFileDialog.py" line="122"/> <source>Select resource files</source> <translation>Resourcedatei auswählen</translation> </message> <message> + <location filename="Project/AddFileDialog.py" line="146"/> + <source>Select translation files</source> + <translation>Wähle Übersetzungsdateien</translation> + </message> + <message> + <location filename="Project/AddFileDialog.py" line="112"/> + <source>Forms Files ({0})</source> + <translation>Formulare ({0})</translation> + </message> + <message> + <location filename="Project/AddFileDialog.py" line="120"/> + <source>Resource Files ({0})</source> + <translation>Resource Dateien ({0})</translation> + </message> + <message> + <location filename="Project/AddFileDialog.py" line="128"/> + <source>Source Files ({0});;All Files (*)</source> + <translation>Quelldateien ({0});;Alle Dateien (*)</translation> + </message> + <message> + <location filename="Project/AddFileDialog.py" line="136"/> + <source>Interface Files ({0})</source> + <translation>Corba IDL Dateien ({0})</translation> + </message> + <message> + <location filename="Project/AddFileDialog.py" line="94"/> + <source>Source Files ({0});;Forms Files ({1});;Resource Files ({2});;Interface Files ({3});;Translation Files ({4});;All Files (*)</source> + <translation>Quelldateien ({0});;Formulare ({1});;Resource Dateien ({2});;Corba IDL Dateien ({3});;Übersetzungs-Dateien ({4});;Alle Dateien (*)</translation> + </message> + <message> <location filename="Project/AddFileDialog.py" line="144"/> - <source>Select translation files</source> - <translation>Wähle Übersetzungsdateien</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="110"/> - <source>Forms Files ({0})</source> - <translation>Formulare ({0})</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="118"/> - <source>Resource Files ({0})</source> - <translation>Resource Dateien ({0})</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="126"/> - <source>Source Files ({0});;All Files (*)</source> - <translation>Quelldateien ({0});;Alle Dateien (*)</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="134"/> - <source>Interface Files ({0})</source> - <translation>Corba IDL Dateien ({0})</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="92"/> - <source>Source Files ({0});;Forms Files ({1});;Resource Files ({2});;Interface Files ({3});;Translation Files ({4});;All Files (*)</source> - <translation>Quelldateien ({0});;Formulare ({1});;Resource Dateien ({2});;Corba IDL Dateien ({3});;Übersetzungs-Dateien ({4});;Alle Dateien (*)</translation> - </message> - <message> - <location filename="Project/AddFileDialog.py" line="142"/> <source>Translation Files ({0})</source> <translation>Übersetzungs-Dateien ({0})</translation> </message> @@ -729,22 +729,22 @@ <translation>Liste der gefundenen Dateien.</translation> </message> <message> - <location filename="Project/AddFoundFilesDialog.py" line="41"/> + <location filename="Project/AddFoundFilesDialog.py" line="43"/> <source>Add all files.</source> <translation>Alle Datein hinzufügen.</translation> </message> <message> + <location filename="Project/AddFoundFilesDialog.py" line="46"/> + <source>Add selected files only.</source> + <translation>Ausgewählte Dateien hinzufügen.</translation> + </message> + <message> + <location filename="Project/AddFoundFilesDialog.py" line="41"/> + <source>Add All</source> + <translation>Alle hinzufügen</translation> + </message> + <message> <location filename="Project/AddFoundFilesDialog.py" line="44"/> - <source>Add selected files only.</source> - <translation>Ausgewählte Dateien hinzufügen.</translation> - </message> - <message> - <location filename="Project/AddFoundFilesDialog.py" line="39"/> - <source>Add All</source> - <translation>Alle hinzufügen</translation> - </message> - <message> - <location filename="Project/AddFoundFilesDialog.py" line="42"/> <source>Add Selected</source> <translation>Auswahl hinzufügen</translation> </message> @@ -1084,7 +1084,7 @@ <context> <name>AddProjectDialog</name> <message> - <location filename="MultiProject/AddProjectDialog.py" line="62"/> + <location filename="MultiProject/AddProjectDialog.py" line="64"/> <source>Add Project</source> <translation>Projekt hinzufügen</translation> </message> @@ -1139,12 +1139,12 @@ <translation>&Beschreibung:</translation> </message> <message> - <location filename="MultiProject/AddProjectDialog.py" line="44"/> + <location filename="MultiProject/AddProjectDialog.py" line="46"/> <source>Project Properties</source> <translation>Projekteigenschaften</translation> </message> <message> - <location filename="MultiProject/AddProjectDialog.py" line="62"/> + <location filename="MultiProject/AddProjectDialog.py" line="64"/> <source>Project Files (*.e4p)</source> <translation>Projektdateien (*.e4p)</translation> </message> @@ -1152,32 +1152,32 @@ <context> <name>ApplicationDiagramBuilder</name> <message> - <location filename="Graphics/ApplicationDiagramBuilder.py" line="42"/> + <location filename="Graphics/ApplicationDiagramBuilder.py" line="44"/> <source>Application Diagram {0}</source> <translation>Applikations-Diagramm {0}</translation> </message> <message> - <location filename="Graphics/ApplicationDiagramBuilder.py" line="62"/> + <location filename="Graphics/ApplicationDiagramBuilder.py" line="64"/> <source>Parsing modules...</source> <translation>Module werden gelesen...</translation> </message> <message> - <location filename="Graphics/ApplicationDiagramBuilder.py" line="185"/> - <source><<Application>></source> - <translation><<Applikation>></translation> - </message> - <message> <location filename="Graphics/ApplicationDiagramBuilder.py" line="187"/> + <source><<Application>></source> + <translation><<Applikation>></translation> + </message> + <message> + <location filename="Graphics/ApplicationDiagramBuilder.py" line="189"/> <source><<Others>></source> <translation><<Sonstige>></translation> </message> <message> - <location filename="Graphics/ApplicationDiagramBuilder.py" line="270"/> + <location filename="Graphics/ApplicationDiagramBuilder.py" line="272"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="Graphics/ApplicationDiagramBuilder.py" line="270"/> + <location filename="Graphics/ApplicationDiagramBuilder.py" line="272"/> <source><p>The diagram belongs to the project <b>{0}</b>. Shall this project be opened?</p></source> <translation><p>Das Diagramm gehört zum Projekt <b>{0}</b>. Soll dieses Projekt geöffnet werden?</p></translation> </message> @@ -1401,22 +1401,22 @@ <translation><b>Lesezeichen hinzufügen/bearbeiten</b></translation> </message> <message> - <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="47"/> + <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="49"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> <message> - <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="50"/> + <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="52"/> <source>Edit Bookmark</source> <translation>Lesezeichen bearbeiten</translation> </message> <message> - <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="54"/> + <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="56"/> <source>Remove from Speed Dial</source> <translation>Von Schnellwahl löschen</translation> </message> <message> - <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="57"/> + <location filename="Helpviewer/UrlBar/BookmarkActionSelectionDialog.py" line="59"/> <source>Add to Speed Dial</source> <translation>Zur Schnellwahl hinzufügen</translation> </message> @@ -1636,62 +1636,62 @@ <context> <name>Bookmarks</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="126"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="132"/> <source>Mercurial Bookmark</source> <translation>Mercurial Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="144"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="150"/> <source>Delete Bookmark</source> <translation>Lesezeichen löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="144"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="150"/> <source>Select the bookmark to be deleted:</source> <translation>Wähle das zu löschende Lesezeichen aus:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="156"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="162"/> <source>Delete Mercurial Bookmark</source> <translation>Mercurial Lesezeichen löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="185"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="191"/> <source>Rename Mercurial Bookmark</source> <translation>Mercurial Lesezeichen umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="219"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="225"/> <source>Move Mercurial Bookmark</source> <translation>Mercurial Lesezeichen verschieben</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="305"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="311"/> <source>Pull Bookmark</source> <translation>Lesezeichen herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="305"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="311"/> <source>Select the bookmark to be pulled:</source> <translation>Wähle das herunterzuladende Lesezeichen:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="317"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="323"/> <source>Pulling bookmark from a remote Mercurial repository</source> <translation>Lade Lesezeichen von einem entfernten Mercurial Repository herunter</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="339"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="345"/> <source>Push Bookmark</source> <translation>Lesezeichen hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="339"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="345"/> <source>Select the bookmark to be push:</source> <translation>Wähle das hochzuladende Lesezeichen:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="351"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/bookmarks.py" line="357"/> <source>Pushing bookmark to a remote Mercurial repository</source> <translation>Lade Lesezeichen zu einem entfernten Mercurial Repository hoch</translation> </message> @@ -1719,32 +1719,32 @@ <translation>&Ordner hinzufügen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="138"/> + <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="140"/> <source>&Open</source> <translation>Ö&ffnen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="139"/> - <source>Open in New &Tab</source> - <translation>In neuem &Register öffnen</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="141"/> + <source>Open in New &Tab</source> + <translation>In neuem &Register öffnen</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="143"/> <source>Edit &Name</source> <translation>&Namen editieren</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="144"/> - <source>Edit &Address</source> - <translation>&Adresse editieren</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="146"/> + <source>Edit &Address</source> + <translation>&Adresse editieren</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="148"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="252"/> + <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="254"/> <source>New Folder</source> <translation>Neuer Ordner</translation> </message> @@ -1754,7 +1754,7 @@ <translation>Drücken, um die ausgwählten Einträge zu löschen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="149"/> + <location filename="Helpviewer/Bookmarks/BookmarksDialog.py" line="151"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> @@ -1782,27 +1782,27 @@ <translation>Abbrechen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="85"/> + <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="87"/> <source>Choose Directory ...</source> <translation>Wähle Verzeichnis ...</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="95"/> + <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="97"/> <source>Choose File ...</source> <translation>Wähle Datei ...</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="119"/> + <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="121"/> <source><b>Importing from {0}</b></source> <translation><b>Imprtiere von {0}</b></translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="125"/> + <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="127"/> <source>Finish</source> <translation>Abschließen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="140"/> + <location filename="Helpviewer/Bookmarks/BookmarksImportDialog.py" line="142"/> <source>Error importing bookmarks</source> <translation>Fehler beim Importieren von Lesezeichen</translation> </message> @@ -1820,12 +1820,12 @@ <context> <name>BookmarksImporters</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/__init__.py" line="42"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/__init__.py" line="44"/> <source>XBEL File</source> <translation>XBEL Datei</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/__init__.py" line="46"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/__init__.py" line="48"/> <source>HTML File</source> <translation>HTML Datei</translation> </message> @@ -1833,89 +1833,89 @@ <context> <name>BookmarksManager</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="24"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="26"/> <source>Bookmarks Bar</source> <translation>Lesezeichenleiste</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="25"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="27"/> <source>Bookmarks Menu</source> <translation>Lesezeichenmenü</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="132"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="134"/> <source>Loading Bookmarks</source> <translation>Lesezeichen laden</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="144"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="146"/> <source>Toolbar Bookmarks</source> <translation>Lesezeichenleiste</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="150"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="152"/> <source>Menu</source> <translation>Menü</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="194"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="196"/> <source>Saving Bookmarks</source> <translation>Lesezeichen speichern</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="194"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="196"/> <source>Error saving bookmarks to <b>{0}</b>.</source> <translation>Fehler beim Speichern der Lesezeichen in <b>{0}</b>.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="350"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="352"/> <source>Export Bookmarks</source> <translation>Lesezeichen exportieren</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="374"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="376"/> <source>Exporting Bookmarks</source> <translation>Lesezeichen exportieren</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="374"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="376"/> <source>Error exporting bookmarks to <b>{0}</b>.</source> <translation>Fehler beim Exportieren der Lesezeichen in <b>{0}</b>.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="389"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="391"/> <source>Converted {0}</source> <translation>Umgewandelt {0}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="509"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="511"/> <source>Remove Bookmark</source> <translation>Lesezeichen löschen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="549"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="551"/> <source>Insert Bookmark</source> <translation>Lesezeichen einfügen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="588"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="590"/> <source>Name Change</source> <translation>Namensänderung</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="591"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="593"/> <source>Address Change</source> <translation>Adressenänderung</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="132"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="134"/> <source>Error when loading bookmarks on line {0}, column {1}: {2}</source> <translation>Fehler beim Laden der Lesezeichen in Zeile {0}, Spalte {1}: {2}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="350"/> + <location filename="Helpviewer/Bookmarks/BookmarksManager.py" line="352"/> <source>XBEL bookmarks (*.xbel);;XBEL bookmarks (*.xml);;HTML Bookmarks (*.html)</source> <translation>XBEL Lesezeichen (*.xbel);;XBEL Lesezeichen (*.xml);;HTML Lesezeichen (*.html)</translation> </message> @@ -1923,27 +1923,27 @@ <context> <name>BookmarksMenu</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="95"/> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="97"/> <source>Open all in Tabs</source> <translation>Alle in Tabs öffnen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="137"/> - <source>&Open</source> - <translation>Ö&ffnen</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="144"/> - <source>&Remove</source> - <translation>&Entfernen</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="148"/> - <source>&Properties...</source> - <translation>&Eigenschaften...</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="139"/> + <source>&Open</source> + <translation>Ö&ffnen</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="146"/> + <source>&Remove</source> + <translation>&Entfernen</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="150"/> + <source>&Properties...</source> + <translation>&Eigenschaften...</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="141"/> <source>Open in New &Tab Ctrl+LMB</source> <translation>In neuem &Register öffnen Strg+LMK</translation> </message> @@ -1951,17 +1951,17 @@ <context> <name>BookmarksMenuBarMenu</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="270"/> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="272"/> <source>Default Home Page</source> <translation>Stadard Startseite</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="273"/> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="275"/> <source>Speed Dial</source> <translation>Schnellwahl</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="277"/> + <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="279"/> <source>Open all in Tabs</source> <translation>Alle in Tabs öffnen</translation> </message> @@ -1969,12 +1969,12 @@ <context> <name>BookmarksModel</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksModel.py" line="44"/> + <location filename="Helpviewer/Bookmarks/BookmarksModel.py" line="46"/> <source>Title</source> <translation>Titel</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksModel.py" line="45"/> + <location filename="Helpviewer/Bookmarks/BookmarksModel.py" line="47"/> <source>Address</source> <translation>Adresse</translation> </message> @@ -1982,167 +1982,167 @@ <context> <name>BookmarksProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="33"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="35"/> <source>List bookmarks</source> <translation>Lesezeichen listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="33"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="35"/> <source>List bookmarks...</source> <translation>Lesezeichen listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="37"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="39"/> <source>List bookmarks of the project</source> <translation>Listet Lesezeichen des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="40"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="42"/> <source><b>List bookmarks</b><p>This lists the bookmarks of the project.</p></source> <translation><b>Lesezeichen listen</b><p>Dies listet die Lesezeichen des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="47"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="49"/> <source>Define bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="47"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="49"/> <source>Define bookmark...</source> <translation>Lesezeichen hinzufügen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="53"/> <source>Define a bookmark for the project</source> <translation>Fügt dem Projekt ein Lesezeichen hinzu</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="56"/> <source><b>Define bookmark</b><p>This defines a bookmark for the project.</p></source> <translation><b>Lesezeichen hinzufügen</b><p>Dies fügt dem Projekt ein Lesezeichen hinzu.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="63"/> <source>Delete bookmark</source> <translation>Lesezeichen löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="63"/> <source>Delete bookmark...</source> <translation>Lesezeichen löschen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="67"/> <source>Delete a bookmark of the project</source> <translation>Löscht ein Lesezeichen aus dem Projekt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="68"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="70"/> <source><b>Delete bookmark</b><p>This deletes a bookmark of the project.</p></source> <translation><b>Lesezeichen löschen</b><p>Dies löscht ein Lesezeichen aus dem Projekt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="75"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="77"/> <source>Rename bookmark</source> <translation>Lesezeichen umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="75"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="77"/> <source>Rename bookmark...</source> <translation>Lesezeichen umbenennen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="79"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="81"/> <source>Rename a bookmark of the project</source> <translation>Benennt ein Lesezeichen des Projektes um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="84"/> <source><b>Rename bookmark</b><p>This renames a bookmark of the project.</p></source> <translation><b>Lesezeichen umbenennen</b><p>Dies benennt ein Lesezeichen des Projektes um</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="91"/> <source>Move bookmark</source> <translation>Lesezeichen verschieben</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="91"/> <source>Move bookmark...</source> <translation>Lesezeichen verschieben...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="93"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="95"/> <source>Move a bookmark of the project</source> <translation>Verschiebt ein Lesezeichen des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="96"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="98"/> <source><b>Move bookmark</b><p>This moves a bookmark of the project to another changeset.</p></source> <translation><b>Lesezeichen verschieben</b><p>Dies verschiebt ein Lesezeichen des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="103"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="105"/> <source>Show incoming bookmarks</source> <translation>Zeige eingehende Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="107"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="109"/> <source>Show a list of incoming bookmarks</source> <translation>Zeigt eine Liste eingehender Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="110"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="112"/> <source><b>Show incoming bookmarks</b><p>This shows a list of new bookmarks available at the remote repository.</p></source> <translation><b>Zeige eingehende Lesezeichen</b><p>Dies zeigt eine Liste neuer Lesezeichen, die in einem entfernten Repository verfügbar sind, an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="118"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="120"/> <source>Pull bookmark</source> <translation>Lesezeichen herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="122"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="124"/> <source>Pull a bookmark from a remote repository</source> <translation>Ein Lesezeichen von einem entfernten Repository herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="125"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="127"/> <source><b>Pull bookmark</b><p>This pulls a bookmark from a remote repository into the local repository.</p></source> <translation><b>Lesezeichen herunterladen</b><p>Dies lädt ein Lesezeichen von einem entfernten Repository in das lokale Repository herunter.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="133"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="135"/> <source>Show outgoing bookmarks</source> <translation>Zeige ausgehende Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="137"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="139"/> <source>Show a list of outgoing bookmarks</source> <translation>Zeigt eine Liste ausgehender Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="140"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="142"/> <source><b>Show outgoing bookmarks</b><p>This shows a list of new bookmarks available at the local repository.</p></source> <translation><b>Zeige ausgehende Lesezeichen</b><p>Dies zeigt eine Liste neuer Lesezeichen, die im lokalen Repository verfügbar sind, an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="148"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="150"/> <source>Push bookmark</source> <translation>Lesezeichen hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="152"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="154"/> <source>Push a bookmark to a remote repository</source> <translation>Ein Lesezeichen an ein entferntes Repository hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="155"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="157"/> <source><b>Push bookmark</b><p>This pushes a bookmark from the local repository to a remote repository.</p></source> <translation><b>Lesezeichen hochladen</b><p>Dies lädt ein Lesezeichen vom lokalen Repository an ein entferntes Repository hoch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="195"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/ProjectHelper.py" line="197"/> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> @@ -2150,37 +2150,37 @@ <context> <name>BookmarksToolBar</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="39"/> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="41"/> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="85"/> - <source>&Open</source> - <translation>Ö&ffnen</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="92"/> - <source>&Remove</source> - <translation>&Entfernen</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="100"/> - <source>Add &Bookmark...</source> - <translation>&Lesezeichen hinzufügen...</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="101"/> - <source>Add &Folder...</source> - <translation>&Ordner hinzufügen...</translation> - </message> - <message> - <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="96"/> - <source>&Properties...</source> - <translation>&Eigenschaften...</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="87"/> + <source>&Open</source> + <translation>Ö&ffnen</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="94"/> + <source>&Remove</source> + <translation>&Entfernen</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="102"/> + <source>Add &Bookmark...</source> + <translation>&Lesezeichen hinzufügen...</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="103"/> + <source>Add &Folder...</source> + <translation>&Ordner hinzufügen...</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="98"/> + <source>&Properties...</source> + <translation>&Eigenschaften...</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="89"/> <source>Open in New &Tab Ctrl+LMB</source> <translation>In neuem &Register öffnen Strg+LMK</translation> </message> @@ -2188,32 +2188,32 @@ <context> <name>BreakPointModel</name> <message> - <location filename="Debugger/BreakPointModel.py" line="29"/> + <location filename="Debugger/BreakPointModel.py" line="31"/> <source>Filename</source> <translation>Dateiname</translation> </message> <message> - <location filename="Debugger/BreakPointModel.py" line="30"/> - <source>Line</source> - <translation>Zeile</translation> - </message> - <message> - <location filename="Debugger/BreakPointModel.py" line="31"/> - <source>Condition</source> - <translation>Bedingung</translation> - </message> - <message> <location filename="Debugger/BreakPointModel.py" line="32"/> - <source>Temporary</source> - <translation>Temporär</translation> + <source>Line</source> + <translation>Zeile</translation> </message> <message> <location filename="Debugger/BreakPointModel.py" line="33"/> - <source>Enabled</source> - <translation>Aktiv</translation> + <source>Condition</source> + <translation>Bedingung</translation> </message> <message> <location filename="Debugger/BreakPointModel.py" line="34"/> + <source>Temporary</source> + <translation>Temporär</translation> + </message> + <message> + <location filename="Debugger/BreakPointModel.py" line="35"/> + <source>Enabled</source> + <translation>Aktiv</translation> + </message> + <message> + <location filename="Debugger/BreakPointModel.py" line="36"/> <source>Ignore Count</source> <translation># Ignorierungen</translation> </message> @@ -2221,72 +2221,72 @@ <context> <name>BreakPointViewer</name> <message> - <location filename="Debugger/BreakPointViewer.py" line="45"/> + <location filename="Debugger/BreakPointViewer.py" line="47"/> <source>Breakpoints</source> <translation>Haltepunkte</translation> </message> <message> - <location filename="Debugger/BreakPointViewer.py" line="143"/> - <source>Edit...</source> - <translation>Bearbeiten...</translation> - </message> - <message> <location filename="Debugger/BreakPointViewer.py" line="145"/> + <source>Edit...</source> + <translation>Bearbeiten...</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="147"/> <source>Enable</source> <translation>Aktivieren</translation> </message> <message> + <location filename="Debugger/BreakPointViewer.py" line="178"/> + <source>Enable all</source> + <translation>Alle aktivieren</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="150"/> + <source>Disable</source> + <translation>Deaktivieren</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="182"/> + <source>Disable all</source> + <translation>Alle deaktivieren</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="153"/> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="186"/> + <source>Delete all</source> + <translation>Alle löschen</translation> + </message> + <message> + <location filename="Debugger/BreakPointViewer.py" line="156"/> + <source>Goto</source> + <translation>Gehe zu</translation> + </message> + <message> <location filename="Debugger/BreakPointViewer.py" line="176"/> - <source>Enable all</source> - <translation>Alle aktivieren</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="148"/> - <source>Disable</source> - <translation>Deaktivieren</translation> + <source>Enable selected</source> + <translation>Ausgewählte aktivieren</translation> </message> <message> <location filename="Debugger/BreakPointViewer.py" line="180"/> - <source>Disable all</source> - <translation>Alle deaktivieren</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="151"/> - <source>Delete</source> - <translation>Löschen</translation> + <source>Disable selected</source> + <translation>Ausgewählte deaktivieren</translation> </message> <message> <location filename="Debugger/BreakPointViewer.py" line="184"/> - <source>Delete all</source> - <translation>Alle löschen</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="154"/> - <source>Goto</source> - <translation>Gehe zu</translation> + <source>Delete selected</source> + <translation>Ausgewählte löschen</translation> </message> <message> <location filename="Debugger/BreakPointViewer.py" line="174"/> - <source>Enable selected</source> - <translation>Ausgewählte aktivieren</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="178"/> - <source>Disable selected</source> - <translation>Ausgewählte deaktivieren</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="182"/> - <source>Delete selected</source> - <translation>Ausgewählte löschen</translation> - </message> - <message> - <location filename="Debugger/BreakPointViewer.py" line="172"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Debugger/BreakPointViewer.py" line="186"/> + <location filename="Debugger/BreakPointViewer.py" line="188"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> @@ -2294,82 +2294,82 @@ <context> <name>Browser</name> <message> - <location filename="UI/Browser.py" line="89"/> + <location filename="UI/Browser.py" line="91"/> <source><b>The Browser Window</b><p>This allows you to easily navigate the hierachy of directories and files on your system, identify the Python programs and open them up in a Source Viewer window. The window displays several separate hierachies.</p><p>The first hierachy is only shown if you have opened a program for debugging and it's root is the directory containing that program. Usually all of the separate files that make up a Python application are held in the same directory, so this hierachy gives you easy access to most of what you will need.</p><p>The next hierachy is used to easily navigate the directories that are specified in the Python <tt>sys.path</tt> variable.</p><p>The remaining hierachies allow you navigate your system as a whole. On a UNIX system there will be a hierachy with <tt>/</tt> at its root and another with the user home directory. On a Windows system there will be a hierachy for each drive on the system.</p><p>Python programs (i.e. those with a <tt>.py</tt> file name suffix) are identified in the hierachies with a Python icon. The right mouse button will popup a menu which lets you open the file in a Source Viewer window, open the file for debugging or use it for a unittest run.</p><p>The context menu of a class, function or method allows you to open the file defining this class, function or method and will ensure, that the correct source line is visible.</p><p>Qt-Designer files (i.e. those with a <tt>.ui</tt> file name suffix) are shown with a Designer icon. The context menu of these files allows you to start Qt-Designer with that file.</p><p>Qt-Linguist files (i.e. those with a <tt>.ts</tt> file name suffix) are shown with a Linguist icon. The context menu of these files allows you to start Qt-Linguist with that file.</p></source> <translation><b>Das Browser Fenster</b><p>Dies erlaubt es ihnen, sich leicht in der Verzeichnishierarchie ihres Systems zu bewegen, Python Programme zu identifizieren und diese in einem Quelltextfenster zu öffnen. Das Fenster stellt verschiedene Hierarchien dar.</p><p>Die erste wird nur angezeigt, wenn ein Programm zum debuggen geöffnet ist. Gewöhnlich werden alle zum Programm zugehörigen Python Dateien im selben Verzeichnis gespeichert, so dass sie über diese Hierarchie Zugriff auf das am meisten Benötigte haben.</p><p>Die nächste Hierarchie wird verwendet, um sich in den in der Python Variablen <tt>sys.path</tt> gespeicherten Verzeichnissen zu bewegen.</p><p>Die restlichen Hierachien erlauben die Navigation im gesamten System. Unter UNIX wird gewöhnlich ein Verzeichnis mit <tt>/</tt> als Wurzel und eines mit dem Home-Verzeichnis des Nutzers angezeigt. Auf einem Windows System wird eine Hierarchie pro Laufwerk angezeigt.</p><p>Python Programme (Dateien mit der Endung <tt>.py</tt>) werden mit einem Python Sinnbild dargestellt. Ein Rechtsklick bringt ein Kontextmenü, über das die Datei in einem Editor, zum Debuggen oder für einen Modultest geöffnet werden kann.</p><p>Das Kontextmenü einer Klasse, einer Funktion oder einer Methode öffnet die Datei, in der diese Klasse, Funktion oder Methode definiert ist, und stellt sicher, dass die richtige Codezeile sichtbar ist.</p><p>Qt-Designer Dateien (Dateien mit der Endung <tt>.ui</tt>) werden mit einem Designer Sinnbild dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt-Designer zu öffnen.</p><p>Qt-Linguist Dateien (Dateien mit der Endung <tt>.ts</tt>) werden mit eine Linguist Sinnbild dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt-Linguist zu öffnen.</p></translation> </message> <message> - <location filename="UI/Browser.py" line="207"/> + <location filename="UI/Browser.py" line="209"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="UI/Browser.py" line="185"/> + <location filename="UI/Browser.py" line="187"/> <source>Run unittest...</source> <translation>Modultest...</translation> </message> <message> - <location filename="UI/Browser.py" line="69"/> + <location filename="UI/Browser.py" line="71"/> <source>File-Browser</source> <translation>Datei-Browser</translation> </message> <message> - <location filename="UI/Browser.py" line="263"/> + <location filename="UI/Browser.py" line="265"/> <source>New toplevel directory...</source> <translation>Neuer übergeordneter Ordner...</translation> </message> <message> - <location filename="UI/Browser.py" line="222"/> + <location filename="UI/Browser.py" line="224"/> <source>Remove from toplevel</source> <translation>Vom Anfang entfernen</translation> </message> <message> - <location filename="UI/Browser.py" line="219"/> + <location filename="UI/Browser.py" line="221"/> <source>Add as toplevel directory</source> <translation>Als übergeordneten Ordner hinzufügen</translation> </message> <message> - <location filename="UI/Browser.py" line="466"/> + <location filename="UI/Browser.py" line="468"/> <source>New toplevel directory</source> <translation>Neuer übergeordneter Ordner</translation> </message> <message> - <location filename="UI/Browser.py" line="230"/> + <location filename="UI/Browser.py" line="232"/> <source>Find in this directory</source> <translation>In diesem Verzeichnis suchen</translation> </message> <message> - <location filename="UI/Browser.py" line="233"/> + <location filename="UI/Browser.py" line="235"/> <source>Find&&Replace in this directory</source> <translation>In diesem Verzeichnis suchen&&ersetzen</translation> </message> <message> - <location filename="UI/Browser.py" line="268"/> + <location filename="UI/Browser.py" line="270"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="UI/Browser.py" line="195"/> + <location filename="UI/Browser.py" line="197"/> <source>Open in Icon Editor</source> <translation>Mit Icon Editor öffnen</translation> </message> <message> - <location filename="UI/Browser.py" line="236"/> + <location filename="UI/Browser.py" line="238"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="UI/Browser.py" line="226"/> + <location filename="UI/Browser.py" line="228"/> <source>Refresh directory</source> <translation>Verzeichnis aktualisieren</translation> </message> <message> - <location filename="UI/Browser.py" line="245"/> + <location filename="UI/Browser.py" line="247"/> <source>Goto</source> <translation>Gehe zu</translation> </message> <message> - <location filename="UI/Browser.py" line="347"/> + <location filename="UI/Browser.py" line="349"/> <source>Line {0}</source> <translation>Zeile {0}</translation> </message> @@ -2377,27 +2377,27 @@ <context> <name>BrowserModel</name> <message> - <location filename="UI/BrowserModel.py" line="44"/> + <location filename="UI/BrowserModel.py" line="46"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="UI/BrowserModel.py" line="602"/> + <location filename="UI/BrowserModel.py" line="604"/> <source>Attributes</source> <translation>Attribute</translation> </message> <message> - <location filename="UI/BrowserModel.py" line="556"/> + <location filename="UI/BrowserModel.py" line="558"/> <source>Coding: {0}</source> <translation>Kodierung: {0}</translation> </message> <message> - <location filename="UI/BrowserModel.py" line="561"/> + <location filename="UI/BrowserModel.py" line="563"/> <source>Globals</source> <translation>Globale Variablen</translation> </message> <message> - <location filename="UI/BrowserModel.py" line="612"/> + <location filename="UI/BrowserModel.py" line="614"/> <source>Class Attributes</source> <translation>Klassenattribute</translation> </message> @@ -2435,37 +2435,37 @@ <translation>Drücken, um die Aufrufverfolgung in eine Textdatei zu speichern</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="48"/> + <location filename="Debugger/CallTraceViewer.py" line="50"/> <source>From</source> <translation>Von</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="48"/> + <location filename="Debugger/CallTraceViewer.py" line="50"/> <source>To</source> <translation>Nach</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="130"/> + <location filename="Debugger/CallTraceViewer.py" line="132"/> <source>Save Call Trace Info</source> <translation>Aufrufinformation speichern</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="116"/> + <location filename="Debugger/CallTraceViewer.py" line="118"/> <source>Text Files (*.txt);;All Files (*)</source> <translation>Text Dateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="130"/> + <location filename="Debugger/CallTraceViewer.py" line="132"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="153"/> + <location filename="Debugger/CallTraceViewer.py" line="155"/> <source>Error saving Call Trace Info</source> <translation>Fehler beim Speichern der Aufrufinformation</translation> </message> <message> - <location filename="Debugger/CallTraceViewer.py" line="153"/> + <location filename="Debugger/CallTraceViewer.py" line="155"/> <source><p>The call trace info could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Die Aufrufinformationen konnten nicht nach <b>{0}</b> geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> @@ -2523,50 +2523,50 @@ <translation>Zeigt den Status des Servers</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="296"/> + <location filename="Cooperation/ChatWidget.py" line="298"/> <source>Start Server</source> <translation>Server starten</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="150"/> + <location filename="Cooperation/ChatWidget.py" line="152"/> <source>! Unknown command: {0} </source> <translation>! Unbekannter Befehl: {0} </translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="171"/> + <location filename="Cooperation/ChatWidget.py" line="173"/> <source>* {0} has joined. </source> <translation>* {0} ist beigetreten. </translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="204"/> + <location filename="Cooperation/ChatWidget.py" line="206"/> <source>* {0} has left. </source> <translation>* {0} hat die Sitzung verlassen. </translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="304"/> + <location filename="Cooperation/ChatWidget.py" line="306"/> <source>Stop Server</source> <translation>Server anhalten</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="309"/> + <location filename="Cooperation/ChatWidget.py" line="311"/> <source>! Server Error: {0} </source> <translation>! Serverfehler: {0} </translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="321"/> + <location filename="Cooperation/ChatWidget.py" line="323"/> <source>Disconnect</source> <translation>Unterbrechen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="325"/> + <location filename="Cooperation/ChatWidget.py" line="327"/> <source>Connect</source> <translation>Verbinden</translation> </message> @@ -2601,37 +2601,37 @@ <translation>Drücken, um eine verteilte Änderungssitzung abzubrechen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="494"/> + <location filename="Cooperation/ChatWidget.py" line="496"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="499"/> + <location filename="Cooperation/ChatWidget.py" line="501"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="553"/> + <location filename="Cooperation/ChatWidget.py" line="555"/> <source>Save Chat</source> <translation>Chat speichern</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="539"/> + <location filename="Cooperation/ChatWidget.py" line="541"/> <source>Text Files (*.txt);;All Files (*)</source> <translation>Text Dateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="567"/> + <location filename="Cooperation/ChatWidget.py" line="569"/> <source>Error saving Chat</source> <translation>Fehlr beim Speichern</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="567"/> + <location filename="Cooperation/ChatWidget.py" line="569"/> <source><p>The chat contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Der Inhalt des Chats konnte nicht nach <b>{0}</b> geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="480"/> + <location filename="Cooperation/ChatWidget.py" line="482"/> <source>Copy</source> <translation>Kopieren</translation> </message> @@ -2651,75 +2651,75 @@ <translation>Drücken, um die Hostsliste zu löschen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="485"/> + <location filename="Cooperation/ChatWidget.py" line="487"/> <source>Cut all</source> <translation>Alles ausschneiden</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="489"/> + <location filename="Cooperation/ChatWidget.py" line="491"/> <source>Copy all</source> <translation>Alles kopieren</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="604"/> + <location filename="Cooperation/ChatWidget.py" line="606"/> <source>Kick User</source> <translation>Nutzer ausschließen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="608"/> + <location filename="Cooperation/ChatWidget.py" line="610"/> <source>Ban User</source> <translation>Nutzer bannen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="612"/> + <location filename="Cooperation/ChatWidget.py" line="614"/> <source>Ban and Kick User</source> <translation>Nutzer bannen und ausschließen</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="640"/> + <location filename="Cooperation/ChatWidget.py" line="642"/> <source>* {0} has been kicked. </source> <translation>* {0} wurde ausgeschlossen.</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="655"/> + <location filename="Cooperation/ChatWidget.py" line="657"/> <source>* {0} has been banned. </source> <translation>* {0} wurde gebannt.</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="670"/> + <location filename="Cooperation/ChatWidget.py" line="672"/> <source>* {0} has been banned and kicked. </source> <translation>* {0} wurde gebannt und ausgeschlossen.</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="553"/> + <location filename="Cooperation/ChatWidget.py" line="555"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="183"/> + <location filename="Cooperation/ChatWidget.py" line="185"/> <source>New User</source> <translation>Neuer Nutzer</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="183"/> + <location filename="Cooperation/ChatWidget.py" line="185"/> <source>{0} has joined.</source> <translation>{0} ist beigetreten.</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="211"/> + <location filename="Cooperation/ChatWidget.py" line="213"/> <source>User Left</source> <translation>Nutzer abgemeldet</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="211"/> + <location filename="Cooperation/ChatWidget.py" line="213"/> <source>{0} has left.</source> <translation>{0} hat die Sitzung verlassen.</translation> </message> <message> - <location filename="Cooperation/ChatWidget.py" line="232"/> + <location filename="Cooperation/ChatWidget.py" line="234"/> <source>Message from <{0}></source> <translation>Nachricht von <{0}></translation> </message> @@ -2732,44 +2732,44 @@ <context> <name>ChromeImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="38"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="40"/> <source>Google Chrome stores its bookmarks in the <b>Bookmarks</b> text file. This file is usually located in</source> <translation>Google Chrome speichert die Lesezeichen in der Datei <b>Bookmarks</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="55"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="57"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="55"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="57"/> <source>Chromium stores its bookmarks in the <b>Bookmarks</b> text file. This file is usually located in</source> <translation>Chromium speichert die Lesezeichen in der Datei <b>Bookmarks</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="101"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="103"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="118"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="120"/> <source>File '{0}' cannot be read. Reason: {1}</source> <translation>Datei '{0}' kann nicht gelesen werden. Ursache: {1}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="128"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="130"/> <source>Google Chrome Import</source> <translation>Google Chrome Import</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="130"/> - <source>Chromium Import</source> - <translation>Chromium Import</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="132"/> + <source>Chromium Import</source> + <translation>Chromium Import</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/ChromeImporter.py" line="134"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> @@ -2782,57 +2782,57 @@ <translation>Drücken, um den Inhalt zu aktivieren; Kontextmenu für weitere Optionen</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="94"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="96"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="88"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="90"/> <source>Object blocked by ClickToFlash</source> <translation>Objekt durch ClickToFlash blockiert</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="92"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="94"/> <source>Show information about object</source> <translation>Informationen über das Objekt anzeigen</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="95"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="97"/> <source>Delete object</source> <translation>Objekt löschen</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="98"/> - <source>Add '{0}' to Whitelist</source> - <translation>'{0}' zur Whitelist hinzufügen</translation> - </message> - <message> <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="100"/> + <source>Add '{0}' to Whitelist</source> + <translation>'{0}' zur Whitelist hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="102"/> <source>Remove '{0}' from Whitelist</source> <translation>'{0}' von der Whitelist löschen</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="106"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="108"/> <source>Configure Whitelist</source> <translation>Whitelist konfigurieren</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="252"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="254"/> <source>Flash Object</source> <translation>Flash Objekt</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="255"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="257"/> <source><b>Attribute Name</b></source> <translation><b>Attributname</b></translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="255"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="257"/> <source><b>Value</b></source> <translation><b>Wert</b></translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="270"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlash.py" line="272"/> <source>No information available.</source> <translation>Keine Informationen verfügbar.</translation> </message> @@ -2840,7 +2840,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="52"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> <source>ClickToFlash Whitelist</source> <translation>ClickToFlash Whitelist</translation> </message> @@ -2875,7 +2875,7 @@ <translation>&Alle entfernen</translation> </message> <message> - <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="52"/> + <location filename="Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> <source>Enter host name to add to whitelist:</source> <translation>Gib den hinzuzufügenden Hostnamen ein:</translation> </message> @@ -2888,37 +2888,37 @@ <context> <name>CodeMetricsDialog</name> <message> - <location filename="DataViews/CodeMetricsDialog.py" line="191"/> + <location filename="DataViews/CodeMetricsDialog.py" line="193"/> <source>non-commentary lines</source> <translation>Quelltextzeilen</translation> </message> <message> + <location filename="DataViews/CodeMetricsDialog.py" line="191"/> + <source>empty lines</source> + <translation>Leerzeilen</translation> + </message> + <message> + <location filename="DataViews/CodeMetricsDialog.py" line="190"/> + <source>comments</source> + <translation>Kommentarzeilen</translation> + </message> + <message> <location filename="DataViews/CodeMetricsDialog.py" line="189"/> - <source>empty lines</source> - <translation>Leerzeilen</translation> + <source>bytes</source> + <translation>Bytes</translation> </message> <message> <location filename="DataViews/CodeMetricsDialog.py" line="188"/> - <source>comments</source> - <translation>Kommentarzeilen</translation> + <source>lines</source> + <translation>Zeilen</translation> </message> <message> <location filename="DataViews/CodeMetricsDialog.py" line="187"/> - <source>bytes</source> - <translation>Bytes</translation> - </message> - <message> - <location filename="DataViews/CodeMetricsDialog.py" line="186"/> - <source>lines</source> - <translation>Zeilen</translation> - </message> - <message> - <location filename="DataViews/CodeMetricsDialog.py" line="185"/> <source>files</source> <translation>Dateien</translation> </message> <message> - <location filename="DataViews/CodeMetricsDialog.py" line="193"/> + <location filename="DataViews/CodeMetricsDialog.py" line="195"/> <source>documentation lines</source> <translation>Dokumentationszeilen</translation> </message> @@ -2999,12 +2999,12 @@ <translation>Zeigt den Fortschritt der Quelltext Metriken Ermittlung an</translation> </message> <message> - <location filename="DataViews/CodeMetricsDialog.py" line="48"/> + <location filename="DataViews/CodeMetricsDialog.py" line="50"/> <source>Collapse all</source> <translation>Alle einklappen</translation> </message> <message> - <location filename="DataViews/CodeMetricsDialog.py" line="49"/> + <location filename="DataViews/CodeMetricsDialog.py" line="51"/> <source>Expand all</source> <translation>Alle aufklappen</translation> </message> @@ -3027,7 +3027,7 @@ <context> <name>CodingError</name> <message> - <location filename="Utilities/__init__.py" line="94"/> + <location filename="Utilities/__init__.py" line="98"/> <source>The coding '{0}' is wrong for the given text.</source> <translation>Die Kodierung '{0}' ist für den übergebenen Text falsch.</translation> </message> @@ -3035,27 +3035,27 @@ <context> <name>ColorDialogWizard</name> <message> - <location filename="Plugins/PluginWizardQColorDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQColorDialog.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQColorDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQColorDialog.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQColorDialog.py" line="73"/> + <location filename="Plugins/PluginWizardQColorDialog.py" line="75"/> <source>QColorDialog Wizard</source> <translation>QColorDialog Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQColorDialog.py" line="70"/> + <location filename="Plugins/PluginWizardQColorDialog.py" line="72"/> <source>Q&ColorDialog Wizard...</source> <translation>Q&ColorDialog Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQColorDialog.py" line="74"/> + <location filename="Plugins/PluginWizardQColorDialog.py" line="76"/> <source><b>QColorDialog Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QColorDialog. The generated code is inserted at the current cursor position.</p></source> <translation><b>QColorDialog Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QColorDialog benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -3063,12 +3063,12 @@ <context> <name>ColorDialogWizardDialog</name> <message> - <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="67"/> + <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="69"/> <source>QColorDialog Wizard Error</source> <translation>QColorDialog Autopilot Fehler</translation> </message> <message> - <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="67"/> + <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="69"/> <source><p>The colour <b>{0}</b> is not valid.</p></source> <translation><p>Die Farbe <b>{0}</b> is ungültig.</p></translation> </message> @@ -3258,7 +3258,7 @@ <translation>Grün</translation> </message> <message> - <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="37"/> + <location filename="Plugins/WizardPlugins/ColorDialogWizard/ColorDialogWizardDialog.py" line="39"/> <source>Test</source> <translation>Test</translation> </message> @@ -3276,17 +3276,17 @@ <context> <name>CompareDialog</name> <message> - <location filename="UI/CompareDialog.py" line="240"/> + <location filename="UI/CompareDialog.py" line="242"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="UI/CompareDialog.py" line="389"/> + <location filename="UI/CompareDialog.py" line="391"/> <source>Select file to compare</source> <translation>Wähle eine zu vergleichende Datei</translation> </message> <message> - <location filename="UI/CompareDialog.py" line="240"/> + <location filename="UI/CompareDialog.py" line="242"/> <source><p>The file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> @@ -3331,7 +3331,7 @@ <translation>Alt+R</translation> </message> <message> - <location filename="UI/CompareDialog.py" line="99"/> + <location filename="UI/CompareDialog.py" line="101"/> <source>Press to perform the comparison of the two files</source> <translation>Drücken, um den Dateivergleich durchzuführen</translation> </message> @@ -3356,27 +3356,27 @@ <translation>Drücken, um zum ersten Unterschied zu springen</translation> </message> <message> - <location filename="UI/CompareDialog.py" line="98"/> + <location filename="UI/CompareDialog.py" line="100"/> <source>Compare</source> <translation>Vergleichen</translation> </message> <message> - <location filename="UI/CompareDialog.py" line="302"/> - <source>Total: {0}</source> - <translation>Gesamt: {0}</translation> - </message> - <message> <location filename="UI/CompareDialog.py" line="304"/> - <source>Changed: {0}</source> - <translation>Geändert: {0}</translation> - </message> - <message> - <location filename="UI/CompareDialog.py" line="305"/> - <source>Added: {0}</source> - <translation>Hinzugefügt: {0}</translation> + <source>Total: {0}</source> + <translation>Gesamt: {0}</translation> </message> <message> <location filename="UI/CompareDialog.py" line="306"/> + <source>Changed: {0}</source> + <translation>Geändert: {0}</translation> + </message> + <message> + <location filename="UI/CompareDialog.py" line="307"/> + <source>Added: {0}</source> + <translation>Hinzugefügt: {0}</translation> + </message> + <message> + <location filename="UI/CompareDialog.py" line="308"/> <source>Deleted: {0}</source> <translation>Gelöscht: {0}</translation> </message> @@ -3394,289 +3394,289 @@ <context> <name>ConfigurationWidget</name> <message> - <location filename="Preferences/ConfigurationDialog.py" line="119"/> + <location filename="Preferences/ConfigurationDialog.py" line="121"/> <source>Application</source> <translation>Applikation</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="125"/> + <location filename="Preferences/ConfigurationDialog.py" line="127"/> <source>CORBA</source> <translation>CORBA</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="128"/> + <location filename="Preferences/ConfigurationDialog.py" line="130"/> <source>Email</source> <translation>Email</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="131"/> + <location filename="Preferences/ConfigurationDialog.py" line="133"/> <source>Graphics</source> <translation>Grafiken</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="134"/> + <location filename="Preferences/ConfigurationDialog.py" line="136"/> <source>Icons</source> <translation>Symbole</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="146"/> + <location filename="Preferences/ConfigurationDialog.py" line="148"/> <source>Plugin Manager</source> <translation>Plugin Manager</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="318"/> + <location filename="Preferences/ConfigurationDialog.py" line="320"/> <source>Printer</source> <translation>Drucker</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="186"/> + <location filename="Preferences/ConfigurationDialog.py" line="188"/> <source>Python</source> <translation>Python</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="158"/> + <location filename="Preferences/ConfigurationDialog.py" line="160"/> <source>Qt</source> <translation>Qt</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="164"/> + <location filename="Preferences/ConfigurationDialog.py" line="166"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="167"/> + <location filename="Preferences/ConfigurationDialog.py" line="169"/> <source>Tasks</source> <translation>Aufgaben</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="170"/> + <location filename="Preferences/ConfigurationDialog.py" line="172"/> <source>Templates</source> <translation>Vorlagen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="176"/> + <location filename="Preferences/ConfigurationDialog.py" line="178"/> <source>Version Control Systems</source> <translation>Versionskontrollsysteme</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="180"/> + <location filename="Preferences/ConfigurationDialog.py" line="182"/> <source>Debugger</source> <translation>Debugger</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="192"/> + <location filename="Preferences/ConfigurationDialog.py" line="194"/> <source>Ruby</source> <translation>Ruby</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="196"/> + <location filename="Preferences/ConfigurationDialog.py" line="198"/> <source>Editor</source> <translation>Editor</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="199"/> + <location filename="Preferences/ConfigurationDialog.py" line="201"/> <source>APIs</source> <translation>APIs</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="202"/> + <location filename="Preferences/ConfigurationDialog.py" line="204"/> <source>Autocompletion</source> <translation>Autom. Vervollständigung</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="209"/> + <location filename="Preferences/ConfigurationDialog.py" line="211"/> <source>Calltips</source> <translation>Calltips</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="215"/> + <location filename="Preferences/ConfigurationDialog.py" line="217"/> <source>General</source> <translation>Allgemein</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="233"/> + <location filename="Preferences/ConfigurationDialog.py" line="235"/> <source>Typing</source> <translation>Eingabe</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="236"/> + <location filename="Preferences/ConfigurationDialog.py" line="238"/> <source>Exporters</source> <translation>Exporter</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="240"/> + <location filename="Preferences/ConfigurationDialog.py" line="242"/> <source>Highlighters</source> <translation>Syntax-Hervorhebung</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="243"/> + <location filename="Preferences/ConfigurationDialog.py" line="245"/> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="247"/> + <location filename="Preferences/ConfigurationDialog.py" line="249"/> <source>Styles</source> <translation>Stile</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="325"/> + <location filename="Preferences/ConfigurationDialog.py" line="327"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="331"/> + <location filename="Preferences/ConfigurationDialog.py" line="333"/> <source>Help Documentation</source> <translation>Hilfe Dokumentation</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="268"/> + <location filename="Preferences/ConfigurationDialog.py" line="270"/> <source>Help Viewers</source> <translation>Hilfeanzeiger</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="284"/> + <location filename="Preferences/ConfigurationDialog.py" line="286"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="281"/> + <location filename="Preferences/ConfigurationDialog.py" line="283"/> <source>Project Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="287"/> + <location filename="Preferences/ConfigurationDialog.py" line="289"/> <source>Multiproject</source> <translation>Mehrfachprojekt</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="312"/> + <location filename="Preferences/ConfigurationDialog.py" line="314"/> <source>Interface</source> <translation>Oberfläche</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="297"/> + <location filename="Preferences/ConfigurationDialog.py" line="299"/> <source>Viewmanager</source> <translation>Ansichtenmanager</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="543"/> + <location filename="Preferences/ConfigurationDialog.py" line="545"/> <source>Configuration Page Error</source> <translation>Konfigurationsseitenfehler</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="543"/> + <location filename="Preferences/ConfigurationDialog.py" line="545"/> <source><p>The configuration page <b>{0}</b> could not be loaded.</p></source> <translation><p>Die Konfigurationsseite <b>{0}</b> konnte nicht geladen werden.</p></translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="218"/> + <location filename="Preferences/ConfigurationDialog.py" line="220"/> <source>Filehandling</source> <translation>Dateibehandlung</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="221"/> + <location filename="Preferences/ConfigurationDialog.py" line="223"/> <source>Searching</source> <translation>Suchen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="328"/> + <location filename="Preferences/ConfigurationDialog.py" line="330"/> <source>Appearance</source> <translation>Erscheinung</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="212"/> + <location filename="Preferences/ConfigurationDialog.py" line="214"/> <source>QScintilla</source> <translation>QScintilla</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="227"/> + <location filename="Preferences/ConfigurationDialog.py" line="229"/> <source>Style</source> <translation>Stil</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="254"/> + <location filename="Preferences/ConfigurationDialog.py" line="256"/> <source>Properties</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="468"/> + <location filename="Preferences/ConfigurationDialog.py" line="470"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="473"/> + <location filename="Preferences/ConfigurationDialog.py" line="475"/> <source>Please select an entry of the list to display the configuration page.</source> <translation>Wähle einen Listeneintrag aus, um die Konfigurationsseite anzuzeigen.</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="315"/> + <location filename="Preferences/ConfigurationDialog.py" line="317"/> <source>Network</source> <translation>Netzwerk</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="224"/> + <location filename="Preferences/ConfigurationDialog.py" line="226"/> <source>Spell checking</source> <translation>Rechtschreibprüfung</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="189"/> + <location filename="Preferences/ConfigurationDialog.py" line="191"/> <source>Python3</source> <translation>Python3</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="251"/> + <location filename="Preferences/ConfigurationDialog.py" line="253"/> <source>Keywords</source> <translation>Schlüsselwörter</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="122"/> + <location filename="Preferences/ConfigurationDialog.py" line="124"/> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="350"/> + <location filename="Preferences/ConfigurationDialog.py" line="352"/> <source>Tray Starter</source> <translation>Systemstarter</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="152"/> + <location filename="Preferences/ConfigurationDialog.py" line="154"/> <source>PyFlakes</source> <translation>PyFlakes</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="335"/> + <location filename="Preferences/ConfigurationDialog.py" line="337"/> <source>VirusTotal Interface</source> <translation>VirusTotal Schnittstelle</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="321"/> + <location filename="Preferences/ConfigurationDialog.py" line="323"/> <source>Security</source> <translation>Sicherheit</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="338"/> + <location filename="Preferences/ConfigurationDialog.py" line="340"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="230"/> + <location filename="Preferences/ConfigurationDialog.py" line="232"/> <source>Syntax Checker</source> <translation>Syntaxprüfer</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="409"/> + <location filename="Preferences/ConfigurationDialog.py" line="411"/> <source>Enter filter text...</source> <translation>Filtertext...</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="143"/> + <location filename="Preferences/ConfigurationDialog.py" line="145"/> <source>Notifications</source> <translation>Benachrichtigungen</translation> </message> <message> - <location filename="Preferences/ConfigurationDialog.py" line="137"/> + <location filename="Preferences/ConfigurationDialog.py" line="139"/> <source>IRC</source> <translation>IRC</translation> </message> @@ -3684,32 +3684,32 @@ <context> <name>Connection</name> <message> - <location filename="Cooperation/Connection.py" line="72"/> + <location filename="Cooperation/Connection.py" line="78"/> <source>undefined</source> <translation>unbestimmt</translation> </message> <message> - <location filename="Cooperation/Connection.py" line="73"/> + <location filename="Cooperation/Connection.py" line="79"/> <source>unknown</source> <translation>unbekannt</translation> </message> <message> - <location filename="Cooperation/Connection.py" line="207"/> + <location filename="Cooperation/Connection.py" line="213"/> <source>New Connection</source> <translation>Neue Verbindung</translation> </message> <message> - <location filename="Cooperation/Connection.py" line="207"/> + <location filename="Cooperation/Connection.py" line="213"/> <source><p>Accept connection from <strong>{0}@{1}</strong>?</p></source> <translation><p>Verbindungswunsch von <strong>{0}@{1}</strong> annehmen?</p></translation> </message> <message> - <location filename="Cooperation/Connection.py" line="432"/> + <location filename="Cooperation/Connection.py" line="438"/> <source>* Connection to {0}:{1} refused.</source> <translation>* Verbindung zu {0}:{1} abgelehnt.</translation> </message> <message> - <location filename="Cooperation/Connection.py" line="197"/> + <location filename="Cooperation/Connection.py" line="203"/> <source>* Connection attempted by banned user '{0}'.</source> <translation>* Verbindungsversuch durch gebannten Nutzer '{0}'.</translation> </message> @@ -3755,27 +3755,27 @@ <context> <name>CookieExceptionsModel</name> <message> - <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="33"/> + <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="35"/> <source>Website</source> <translation>Website</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="34"/> + <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="36"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="78"/> + <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="80"/> <source>Allow</source> <translation>Erlauben</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="87"/> + <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="89"/> <source>Block</source> <translation>Blocken</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="96"/> + <location filename="Helpviewer/CookieJar/CookieExceptionsModel.py" line="98"/> <source>Allow For Session</source> <translation>Für diese Sitzung erlauben</translation> </message> @@ -3783,32 +3783,32 @@ <context> <name>CookieModel</name> <message> - <location filename="Helpviewer/CookieJar/CookieModel.py" line="28"/> + <location filename="Helpviewer/CookieJar/CookieModel.py" line="30"/> <source>Website</source> <translation>Website</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookieModel.py" line="29"/> - <source>Name</source> - <translation>Name</translation> - </message> - <message> - <location filename="Helpviewer/CookieJar/CookieModel.py" line="30"/> - <source>Path</source> - <translation>Pfad</translation> - </message> - <message> <location filename="Helpviewer/CookieJar/CookieModel.py" line="31"/> - <source>Secure</source> - <translation>Sicher</translation> + <source>Name</source> + <translation>Name</translation> </message> <message> <location filename="Helpviewer/CookieJar/CookieModel.py" line="32"/> - <source>Expires</source> - <translation>Läuft ab am</translation> + <source>Path</source> + <translation>Pfad</translation> </message> <message> <location filename="Helpviewer/CookieJar/CookieModel.py" line="33"/> + <source>Secure</source> + <translation>Sicher</translation> + </message> + <message> + <location filename="Helpviewer/CookieJar/CookieModel.py" line="34"/> + <source>Expires</source> + <translation>Läuft ab am</translation> + </message> + <message> + <location filename="Helpviewer/CookieJar/CookieModel.py" line="35"/> <source>Contents</source> <translation>Inhalt</translation> </message> @@ -4032,7 +4032,7 @@ <translation>&Alle entfernen</translation> </message> <message> - <location filename="Helpviewer/CookieJar/CookiesExceptionsDialog.py" line="59"/> + <location filename="Helpviewer/CookieJar/CookiesExceptionsDialog.py" line="61"/> <source>Allow For Session</source> <translation>Für diese Sitzung erlauben</translation> </message> @@ -4040,19 +4040,19 @@ <context> <name>CooperationClient</name> <message> - <location filename="Cooperation/CooperationClient.py" line="83"/> + <location filename="Cooperation/CooperationClient.py" line="85"/> <source>unknown</source> <translation>unbekannt</translation> </message> <message> - <location filename="Cooperation/CooperationClient.py" line="286"/> + <location filename="Cooperation/CooperationClient.py" line="288"/> <source>Illegal address: {0}@{1} </source> <translation>Ungültige Adresse: {0}@{1} </translation> </message> <message> - <location filename="Cooperation/CooperationClient.py" line="377"/> + <location filename="Cooperation/CooperationClient.py" line="379"/> <source>No servers present.</source> <translation>Keine Server vorhanden.</translation> </message> @@ -4183,7 +4183,7 @@ <translation><b>Hinweis:</b> Lasse diesen Eintrag leer, um den Standardwert (omniidl bzw. omniidl.exe) zu verwenden.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/CorbaPage.py" line="50"/> + <location filename="Preferences/ConfigurationPages/CorbaPage.py" line="52"/> <source>Select IDL compiler</source> <translation>Wähle IDL Compiler</translation> </message> @@ -4241,42 +4241,42 @@ <translation>&Filtere mit:</translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="467"/> + <location filename="Project/CreateDialogCodeDialog.py" line="469"/> <source>Code Generation</source> <translation>Code Erzeugung</translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="361"/> + <location filename="Project/CreateDialogCodeDialog.py" line="363"/> <source><p>Could not open the code template file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Codevorlagedatei "{0}" konnte nicht geöffnet werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="394"/> + <location filename="Project/CreateDialogCodeDialog.py" line="396"/> <source><p>Could not open the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Quelltextdatei "{0}" konnte nicht geöffnet werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="467"/> + <location filename="Project/CreateDialogCodeDialog.py" line="469"/> <source><p>Could not write the source file "{0}".</p><p>Reason: {1}</p></source> <translation><p>Die Quelltextdatei "{0}" konnte nicht geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="306"/> + <location filename="Project/CreateDialogCodeDialog.py" line="308"/> <source>uic error</source> <translation>uic Fehler</translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="306"/> + <location filename="Project/CreateDialogCodeDialog.py" line="308"/> <source><p>There was an error loading the form <b>{0}</b>.</p><p>{1}</p></source> <translation><p>Es gab einen Fehler beim Laden des Formulars <b>{0}</b>.</p><p>{1}</p></translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="110"/> + <location filename="Project/CreateDialogCodeDialog.py" line="112"/> <source>Create Dialog Code</source> <translation>Formularcode Generator</translation> </message> <message> - <location filename="Project/CreateDialogCodeDialog.py" line="110"/> + <location filename="Project/CreateDialogCodeDialog.py" line="112"/> <source>The file <b>{0}</b> exists but does not contain any classes.</source> <translation>Die datei <b>{0}</b> existiert, enthält jedoch keine Klassen.</translation> </message> @@ -4284,22 +4284,22 @@ <context> <name>Crypto</name> <message> - <location filename="Utilities/crypto/__init__.py" line="87"/> + <location filename="Utilities/crypto/__init__.py" line="89"/> <source>Master Password</source> <translation>Master-Kennwort</translation> </message> <message> - <location filename="Utilities/crypto/__init__.py" line="64"/> + <location filename="Utilities/crypto/__init__.py" line="66"/> <source>Enter the master password:</source> <translation>Gib das Master-Kennwort ein:</translation> </message> <message> - <location filename="Utilities/crypto/__init__.py" line="77"/> + <location filename="Utilities/crypto/__init__.py" line="79"/> <source>The given password is incorrect.</source> <translation>Das eingegebene Kennwort ist falsch.</translation> </message> <message> - <location filename="Utilities/crypto/__init__.py" line="82"/> + <location filename="Utilities/crypto/__init__.py" line="84"/> <source>There is no master password registered.</source> <translation>Es wurde kein Master-Kennwort registriert.</translation> </message> @@ -4307,34 +4307,34 @@ <context> <name>DebugServer</name> <message> - <location filename="Debugger/DebugServer.py" line="1354"/> + <location filename="Debugger/DebugServer.py" line="1368"/> <source>Passive debug connection received</source> <translation>Verbindung für passives Debuggen empfangen</translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="1368"/> + <location filename="Debugger/DebugServer.py" line="1382"/> <source>Passive debug connection closed</source> <translation>Verbindung für passives Debuggen geschlossen</translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="146"/> + <location filename="Debugger/DebugServer.py" line="152"/> <source>created</source> <comment>must be same as in EditWatchpointDialog</comment> <translation>erzeugt</translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="148"/> + <location filename="Debugger/DebugServer.py" line="154"/> <source>changed</source> <comment>must be same as in EditWatchpointDialog</comment> <translation>geändert</translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="605"/> + <location filename="Debugger/DebugServer.py" line="619"/> <source>Connection from illegal host</source> <translation>Verbindung von ungültigem Rechner</translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="1175"/> + <location filename="Debugger/DebugServer.py" line="1189"/> <source> Not connected </source> @@ -4343,7 +4343,7 @@ </translation> </message> <message> - <location filename="Debugger/DebugServer.py" line="605"/> + <location filename="Debugger/DebugServer.py" line="619"/> <source><p>A connection was attempted by the illegal host <b>{0}</b>. Accept this connection?</p></source> <translation><p>Es wurde versucht, eine Verbindung von dem nicht zugelassenen Rechner <b>{0}</b> aufzubauen. Soll die Verbindung angenommen werden?</p></translation> </message> @@ -4351,666 +4351,666 @@ <context> <name>DebugUI</name> <message> - <location filename="Debugger/DebugUI.py" line="1606"/> + <location filename="Debugger/DebugUI.py" line="1608"/> <source>Run Script</source> <translation>Skript ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="161"/> + <location filename="Debugger/DebugUI.py" line="163"/> <source>&Run Script...</source> <translation>&Skript ausführen...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="164"/> + <location filename="Debugger/DebugUI.py" line="166"/> <source>Run the current Script</source> <translation>Das aktuelle Skript ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1619"/> + <location filename="Debugger/DebugUI.py" line="1621"/> <source>Run Project</source> <translation>Projekt ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="173"/> + <location filename="Debugger/DebugUI.py" line="175"/> <source>Run &Project...</source> <translation>Projekt &ausführen...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="177"/> + <location filename="Debugger/DebugUI.py" line="179"/> <source>Run the current Project</source> <translation>Das aktuelle Projekt ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="297"/> + <location filename="Debugger/DebugUI.py" line="299"/> <source>Continue</source> <translation>Weiter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="297"/> + <location filename="Debugger/DebugUI.py" line="299"/> <source>&Continue</source> <translation>&Weiter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="301"/> - <source>Continue running the program from the current line</source> - <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="303"/> + <source>Continue running the program from the current line</source> + <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="305"/> <source><b>Continue</b><p>Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.</p></source> <translation><b>Weiter</b><p>Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="325"/> + <location filename="Debugger/DebugUI.py" line="327"/> <source>Single Step</source> <translation>Einzelschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="329"/> + <location filename="Debugger/DebugUI.py" line="331"/> <source>Execute a single Python statement</source> <translation>Führe eine einzelne Python Anweisung aus</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="330"/> + <location filename="Debugger/DebugUI.py" line="332"/> <source><b>Single Step</b><p>Execute a single Python statement. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.</p></source> <translation><b>Einzelschritt</b><p>Führe eine einzelne Python Anweisung aus. Ist die Anweisung eine <tt>import</tt> Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="340"/> + <location filename="Debugger/DebugUI.py" line="342"/> <source>Step Over</source> <translation>Prozedurschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="340"/> + <location filename="Debugger/DebugUI.py" line="342"/> <source>Step &Over</source> <translation>&Prozedurschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="344"/> - <source>Execute a single Python statement staying in the current frame</source> - <translation>Führe eine einzelne Python Anweisung aus, bleibe aber in der aktuellen Ebene</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="346"/> + <source>Execute a single Python statement staying in the current frame</source> + <translation>Führe eine einzelne Python Anweisung aus, bleibe aber in der aktuellen Ebene</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="348"/> <source><b>Step Over</b><p>Execute a single Python statement staying in the same frame. If the statement is an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.</p></source> <translation><b>Prozedurschritt</b><p>Führe eine einzelne Python Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine <tt>import</tt> Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="356"/> + <location filename="Debugger/DebugUI.py" line="358"/> <source>Step Out</source> <translation>Rückschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="356"/> + <location filename="Debugger/DebugUI.py" line="358"/> <source>Step Ou&t</source> <translation>&Rückschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="360"/> - <source>Execute Python statements until leaving the current frame</source> - <translation>Führe Python Anweisung bis zum Rücksprung aus</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="362"/> + <source>Execute Python statements until leaving the current frame</source> + <translation>Führe Python Anweisung bis zum Rücksprung aus</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="364"/> <source><b>Step Out</b><p>Execute Python statements until leaving the current frame. If the statements are inside an <tt>import</tt> statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.</p></source> <translation><b>Rücksprung</b><p>Führe Python Anweisungen bis zum Rücksprung aus. Ist die Anweisung innerhalbe einer <tt>import</tt> Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="372"/> + <location filename="Debugger/DebugUI.py" line="374"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="376"/> + <location filename="Debugger/DebugUI.py" line="378"/> <source>Stop debugging</source> <translation>Beende das Debuggen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="377"/> + <location filename="Debugger/DebugUI.py" line="379"/> <source><b>Stop</b><p>Stop the running debugging session.</p></source> <translation><b>Anhalten</b><p>Beende das Debuggen des laufenden Programms.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="389"/> + <location filename="Debugger/DebugUI.py" line="391"/> <source>Evaluate in current context</source> <translation>Auswerten im aktuellen Kontext</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="402"/> - <source>Execute a one line statement in the current context</source> - <translation>Ausführen einer einzelnen Anweisung im aktuellen Kontext</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="404"/> + <source>Execute a one line statement in the current context</source> + <translation>Ausführen einer einzelnen Anweisung im aktuellen Kontext</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="406"/> <source><b>Execute</b><p>Execute a one line statement in the current context of the debugged program.</p></source> <translation><b>Einzelanweisung ausführen</b><p>Führe eine einzelne Anweisung im aktuellen Kontext des debuggten Programmes aus.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="989"/> + <location filename="Debugger/DebugUI.py" line="991"/> <source>The program being debugged contains an unspecified syntax error.</source> <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1019"/> + <location filename="Debugger/DebugUI.py" line="1021"/> <source>An unhandled exception occured. See the shell window for details.</source> <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1102"/> + <location filename="Debugger/DebugUI.py" line="1104"/> <source>The program being debugged has terminated unexpectedly.</source> <translation>Das untersuchte Programm wurde unerwartet beendet.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1731"/> + <location filename="Debugger/DebugUI.py" line="1733"/> <source>Debug Project</source> <translation>Projekt debuggen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1731"/> + <location filename="Debugger/DebugUI.py" line="1733"/> <source>There is no main script defined for the current project. No debugging possible.</source> <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1992"/> + <location filename="Debugger/DebugUI.py" line="1994"/> <source>Evaluate</source> <translation>Auswerten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1992"/> + <location filename="Debugger/DebugUI.py" line="1994"/> <source>Enter the statement to evaluate</source> <translation>Gebe die auszuwertende Anweisung ein</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2021"/> + <location filename="Debugger/DebugUI.py" line="2023"/> <source>Execute</source> <translation>Einzelanweisung ausführen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="2021"/> + <location filename="Debugger/DebugUI.py" line="2023"/> <source>Enter the statement to execute</source> <translation>Gebe die auszuführende Anweisung ein</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="325"/> + <location filename="Debugger/DebugUI.py" line="327"/> <source>Sin&gle Step</source> <translation>&Einzelschritt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="372"/> + <location filename="Debugger/DebugUI.py" line="374"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="386"/> + <location filename="Debugger/DebugUI.py" line="388"/> <source>E&valuate...</source> <translation>Auswer&ten...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="399"/> + <location filename="Debugger/DebugUI.py" line="401"/> <source>E&xecute...</source> <translation>E&inzelanweisung ausführen...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="270"/> + <location filename="Debugger/DebugUI.py" line="272"/> <source>Restart Script</source> <translation>Skript neu starten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="273"/> + <location filename="Debugger/DebugUI.py" line="275"/> <source>Restart the last debugged script</source> <translation>Das zuletzt untersuchte Skript neu starten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="274"/> + <location filename="Debugger/DebugUI.py" line="276"/> <source><b>Restart Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.</p></source> <translation><b>Skript neu starten</b><p>Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="425"/> - <source>&Exceptions Filter...</source> - <translation>&Ausnahmen Filter...</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="427"/> + <source>&Exceptions Filter...</source> + <translation>&Ausnahmen Filter...</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="429"/> <source>Configure exceptions filter</source> <translation>Konfiguriert den Ausnahmenfilter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="428"/> + <location filename="Debugger/DebugUI.py" line="430"/> <source><b>Exceptions Filter</b><p>Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.</p><p>Please note, that all unhandled exceptions are highlighted indepent from the filter list.</p></source> <translation><b>Ausnahmen Filter</b><p>Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="165"/> + <location filename="Debugger/DebugUI.py" line="167"/> <source><b>Run Script</b><p>Set the command line arguments and run the script outside the debugger. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Skript auserhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1718"/> + <location filename="Debugger/DebugUI.py" line="1720"/> <source>Debug Script</source> <translation>Debug Skript</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="242"/> + <location filename="Debugger/DebugUI.py" line="244"/> <source>&Debug Script...</source> <translation>&Debug Skript...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="245"/> + <location filename="Debugger/DebugUI.py" line="247"/> <source>Debug the current Script</source> <translation>Das aktuelle Skript debuggen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="246"/> + <location filename="Debugger/DebugUI.py" line="248"/> <source><b>Debug Script</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skript debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="255"/> + <location filename="Debugger/DebugUI.py" line="257"/> <source>Debug &Project...</source> <translation>Debug &Projekt...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="259"/> + <location filename="Debugger/DebugUI.py" line="261"/> <source>Debug the current Project</source> <translation>Das aktuelle Projekt debuggen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="260"/> + <location filename="Debugger/DebugUI.py" line="262"/> <source><b>Debug Project</b><p>Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt debuggen</b><p>Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1619"/> + <location filename="Debugger/DebugUI.py" line="1621"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="178"/> + <location filename="Debugger/DebugUI.py" line="180"/> <source><b>Run Project</b><p>Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projekt ausführen</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes auserhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="188"/> + <location filename="Debugger/DebugUI.py" line="190"/> <source>Coverage run of Script</source> <translation>Abdeckungslauf des Skriptes</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="188"/> + <location filename="Debugger/DebugUI.py" line="190"/> <source>Coverage run of Script...</source> <translation>Abdeckungslauf des Skriptes...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="191"/> - <source>Perform a coverage run of the current Script</source> - <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="193"/> + <source>Perform a coverage run of the current Script</source> + <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="195"/> <source><b>Coverage run of Script</b><p>Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Abdeckungslauf des Skriptes</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="202"/> + <location filename="Debugger/DebugUI.py" line="204"/> <source>Coverage run of Project</source> <translation>Abdeckungslauf des Projektes</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="202"/> + <location filename="Debugger/DebugUI.py" line="204"/> <source>Coverage run of Project...</source> <translation>Abdeckungslauf des Projektes...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="205"/> - <source>Perform a coverage run of the current Project</source> - <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="207"/> + <source>Perform a coverage run of the current Project</source> + <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="209"/> <source><b>Coverage run of Project</b><p>Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Abdeckungslauf des Projektes</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1399"/> + <location filename="Debugger/DebugUI.py" line="1401"/> <source>Coverage of Project</source> <translation>Abdeckung des Projektes</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1389"/> + <location filename="Debugger/DebugUI.py" line="1391"/> <source>Coverage of Script</source> <translation>Abdeckung des Skriptes</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="217"/> + <location filename="Debugger/DebugUI.py" line="219"/> <source>Profile Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="217"/> + <location filename="Debugger/DebugUI.py" line="219"/> <source>Profile Script...</source> <translation>Skriptprofil...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="220"/> + <location filename="Debugger/DebugUI.py" line="222"/> <source>Profile the current Script</source> <translation>Profil des aktuellen Skriptes erstellen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="221"/> + <location filename="Debugger/DebugUI.py" line="223"/> <source><b>Profile Script</b><p>Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.</p></source> <translation><b>Skriptprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="229"/> + <location filename="Debugger/DebugUI.py" line="231"/> <source>Profile Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="229"/> + <location filename="Debugger/DebugUI.py" line="231"/> <source>Profile Project...</source> <translation>Projektprofil...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="232"/> + <location filename="Debugger/DebugUI.py" line="234"/> <source>Profile the current Project</source> <translation>Profil des aktuellen Projektes erstellen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="233"/> + <location filename="Debugger/DebugUI.py" line="235"/> <source><b>Profile Project</b><p>Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.</p></source> <translation><b>Projektprofil</b><p>Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1508"/> + <location filename="Debugger/DebugUI.py" line="1510"/> <source>Profile of Project</source> <translation>Projektprofil</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1497"/> + <location filename="Debugger/DebugUI.py" line="1499"/> <source>Profile of Script</source> <translation>Skriptprofil</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="425"/> + <location filename="Debugger/DebugUI.py" line="427"/> <source>Exceptions Filter</source> <translation>Ausnahmen Filter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="458"/> + <location filename="Debugger/DebugUI.py" line="460"/> <source>Toggle Breakpoint</source> <translation>Haltepunkt setzen/löschen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="459"/> + <location filename="Debugger/DebugUI.py" line="461"/> <source><b>Toggle Breakpoint</b><p>Toggles a breakpoint at the current line of the current editor.</p></source> <translation><b>Haltepunkt setzen/löschen</b><p>Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="486"/> + <location filename="Debugger/DebugUI.py" line="488"/> <source>Next Breakpoint</source> <translation>Nächster Haltepunkt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="487"/> + <location filename="Debugger/DebugUI.py" line="489"/> <source><b>Next Breakpoint</b><p>Go to next breakpoint of the current editor.</p></source> <translation><b>Nächster Haltepunkt</b><p>Gehe zum nächsten Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="499"/> + <location filename="Debugger/DebugUI.py" line="501"/> <source>Previous Breakpoint</source> <translation>Vorheriger Haltepunkt</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="500"/> + <location filename="Debugger/DebugUI.py" line="502"/> <source><b>Previous Breakpoint</b><p>Go to previous breakpoint of the current editor.</p></source> <translation><b>Vorheriger Haltepunkt</b><p>Gehe zum vorherigen Haltepunkt des aktuellen Editors.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="511"/> + <location filename="Debugger/DebugUI.py" line="513"/> <source>Clear Breakpoints</source> <translation>Haltepunkte löschen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="512"/> + <location filename="Debugger/DebugUI.py" line="514"/> <source><b>Clear Breakpoints</b><p>Clear breakpoints of all editors.</p></source> <translation><b>Haltepunkte löschen</b><p>Haltepunkte aller Editoren löschen.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="543"/> + <location filename="Debugger/DebugUI.py" line="545"/> <source>&Breakpoints</source> <translation>&Haltepunkte</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="472"/> + <location filename="Debugger/DebugUI.py" line="474"/> <source>Edit Breakpoint</source> <translation>Haltepunkt bearbeiten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="473"/> + <location filename="Debugger/DebugUI.py" line="475"/> <source><b>Edit Breakpoint</b><p>Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.</p></source> <translation><b>Haltepunkt bearbeiten</b><p>Öffnet einen Dialog zum Bearbeiten der Haltepunkt Eigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="311"/> + <location filename="Debugger/DebugUI.py" line="313"/> <source>Continue to Cursor</source> <translation>Weiter bis Einfügemarke</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="311"/> + <location filename="Debugger/DebugUI.py" line="313"/> <source>Continue &To Cursor</source> <translation>Weiter bis Einfüge&marke</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="315"/> - <source>Continue running the program from the current line to the current cursor position</source> - <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="317"/> + <source>Continue running the program from the current line to the current cursor position</source> + <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="319"/> <source><b>Continue To Cursor</b><p>Continue running the program from the current line to the current cursor position.</p></source> <translation><b>Weiter bis Einfügemarke</b><p>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="412"/> + <location filename="Debugger/DebugUI.py" line="414"/> <source>Variables Type Filter</source> <translation>Variablentypen Filter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="412"/> + <location filename="Debugger/DebugUI.py" line="414"/> <source>Varia&bles Type Filter...</source> <translation>&Variablentypen Filter...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="415"/> + <location filename="Debugger/DebugUI.py" line="417"/> <source>Configure variables type filter</source> <translation>Konfiguriert die Variablentypenfilter</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="416"/> + <location filename="Debugger/DebugUI.py" line="418"/> <source><b>Variables Type Filter</b><p>Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.</p></source> <translation><b>Variablenfilter</b><p>Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im Globalen oder Lokalen Variablen Fenster während einer Debuggingsitzung angezeigt.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="949"/> + <location filename="Debugger/DebugUI.py" line="951"/> <source><p><b>{0}</b> has terminated with an exit status of {1}.</p></source> <translation><p><b>{0}</b> wurde mit dem Status {1} beendet.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1068"/> + <location filename="Debugger/DebugUI.py" line="1070"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>"<b>{1}</b>"</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="945"/> + <location filename="Debugger/DebugUI.py" line="947"/> <source><p>The program has terminated with an exit status of {0}.</p></source> <translation><p>Das Programm wurde mit dem Status {0} beendet.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1171"/> + <location filename="Debugger/DebugUI.py" line="1173"/> <source>Breakpoint Condition Error</source> <translation>Fehler in Haltepunkt Bedingung</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1171"/> + <location filename="Debugger/DebugUI.py" line="1173"/> <source><p>The condition of the breakpoint <b>{0}, {1}</b> contains a syntax error.</p></source> <translation><p>Die Bedingung des Haltepunktes <b>{0}, {1}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="481"/> + <location filename="Debugger/DebugUI.py" line="483"/> <source>Ctrl+Shift+PgDown</source> <comment>Debug|Next Breakpoint</comment> <translation>Ctrl+Shift+PgDown</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="494"/> + <location filename="Debugger/DebugUI.py" line="496"/> <source>Ctrl+Shift+PgUp</source> <comment>Debug|Previous Breakpoint</comment> <translation>Ctrl+Shift+PgUp</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="507"/> + <location filename="Debugger/DebugUI.py" line="509"/> <source>Ctrl+Shift+C</source> <comment>Debug|Clear Breakpoints</comment> <translation>Ctrl+Shift+C</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="539"/> - <source>&Debug</source> - <translation>Debu&g</translation> - </message> - <message> <location filename="Debugger/DebugUI.py" line="541"/> + <source>&Debug</source> + <translation>Debu&g</translation> + </message> + <message> + <location filename="Debugger/DebugUI.py" line="543"/> <source>&Start</source> <translation>&Start</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="587"/> + <location filename="Debugger/DebugUI.py" line="589"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="601"/> + <location filename="Debugger/DebugUI.py" line="603"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1057"/> + <location filename="Debugger/DebugUI.py" line="1059"/> <source><p>The debugged program raised the exception <b>{0}</b><br>"<b>{1}</b>"<br>File: <b>{2}</b>, Line: <b>{3}</b></p><p>Break here?</p></source> <translation><p>Das untersuchte Programm erzeugte die Ausnahme <b>{0}</b><br>"<b>{1}</b>"<br>Datei: <b>{2}</b>, Zeile: <b>{3}</b></p><p>Anhalten?</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1002"/> + <location filename="Debugger/DebugUI.py" line="1004"/> <source><p>The file <b>{0}</b> contains the syntax error <b>{1}</b> at line <b>{2}</b>, character <b>{3}</b>.</p></source> <translation><p>Die Datei <b>{0}</b> enthält den Syntaxfehler <b>{1}</b> in Zeile <b>{2}</b>, Position <b>{3}</b>.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="283"/> + <location filename="Debugger/DebugUI.py" line="285"/> <source>Stop Script</source> <translation>Skript anhalten</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="287"/> + <location filename="Debugger/DebugUI.py" line="289"/> <source>Stop the running script.</source> <translation>Halte das laufende Skript an.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="288"/> + <location filename="Debugger/DebugUI.py" line="290"/> <source><b>Stop Script</b><p>This stops the script running in the debugger backend.</p></source> <translation><b>Skript anhalten</b><p>Dies hält das Skript, das im Debugger läuft, an.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="390"/> + <location filename="Debugger/DebugUI.py" line="392"/> <source><b>Evaluate</b><p>Evaluate an expression in the current context of the debugged program. The result is displayed in the shell window.</p></source> <translation><b>Auswerten</b><p>Wertet einen Ausdruck im aktuellen Kontext des debuggten Programmes aus. Das Resultat wird im Shell-Fenster angezeigt.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1203"/> + <location filename="Debugger/DebugUI.py" line="1205"/> <source>Watch Expression Error</source> <translation>Fehler in Beobachtungsausdruck</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1203"/> + <location filename="Debugger/DebugUI.py" line="1205"/> <source><p>The watch expression <b>{0}</b> contains a syntax error.</p></source> <translation><p>Der Beobachtungsausdrucks <b>{0}</b> enthält einen Syntaxfehler.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1231"/> + <location filename="Debugger/DebugUI.py" line="1233"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Ein Beobachtungsausdruck '<b>{0}</b>' existiert bereits.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1235"/> + <location filename="Debugger/DebugUI.py" line="1237"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Ein Beobachtungsausdruck '<b>{0}</b>' für die Variable <b>{1}</b> existiert bereits.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="1239"/> + <location filename="Debugger/DebugUI.py" line="1241"/> <source>Watch expression already exists</source> <translation>Beaobachtungsausdruck existiert bereits</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="438"/> + <location filename="Debugger/DebugUI.py" line="440"/> <source>Ignored Exceptions</source> <translation>Ignorierte Ausnahmen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="438"/> + <location filename="Debugger/DebugUI.py" line="440"/> <source>&Ignored Exceptions...</source> <translation>&Ignorierte Ausnahmen...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="441"/> + <location filename="Debugger/DebugUI.py" line="443"/> <source>Configure ignored exceptions</source> <translation>Konfiguriert ignorierte Ausnahmen</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="442"/> + <location filename="Debugger/DebugUI.py" line="444"/> <source><b>Ignored Exceptions</b><p>Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.</p><p>Please note, that unhandled exceptions cannot be ignored.</p></source> <translation><b>Ignorierte Ausnahmen</b><p>Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.</p><p>Bitte beachten sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.</p></translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="453"/> + <location filename="Debugger/DebugUI.py" line="455"/> <source>Shift+F11</source> <comment>Debug|Toggle Breakpoint</comment> <translation>Shift+F11</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="467"/> + <location filename="Debugger/DebugUI.py" line="469"/> <source>Shift+F12</source> <comment>Debug|Edit Breakpoint</comment> <translation>Shift+F12</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="467"/> + <location filename="Debugger/DebugUI.py" line="469"/> <source>Edit Breakpoint...</source> <translation>Haltepunkt bearbeiten...</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="966"/> + <location filename="Debugger/DebugUI.py" line="968"/> <source>The program has terminated with an exit status of {0}. </source> <translation>Das Programm wurde mit dem Status {0} beendet. </translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="970"/> + <location filename="Debugger/DebugUI.py" line="972"/> <source>"{0}" has terminated with an exit status of {1}. </source> <translation>"{0}" wurde mit dem Status {1} beendet. </translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="962"/> + <location filename="Debugger/DebugUI.py" line="964"/> <source>Program terminated</source> <translation>Programm beendet</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="956"/> + <location filename="Debugger/DebugUI.py" line="958"/> <source>The program has terminated with an exit status of {0}.</source> <translation>Das Programm wurde mit dem Status {0} beendet.</translation> </message> <message> - <location filename="Debugger/DebugUI.py" line="959"/> + <location filename="Debugger/DebugUI.py" line="961"/> <source>"{0}" has terminated with an exit status of {1}.</source> <translation>"{0}" wurde mit dem Status {1} beendet.</translation> </message> @@ -5018,52 +5018,52 @@ <context> <name>DebugViewer</name> <message> - <location filename="Debugger/DebugViewer.py" line="162"/> + <location filename="Debugger/DebugViewer.py" line="164"/> <source>Enter regular expression patterns separated by ';' to define variable filters. </source> <translation>Gib reguläre Ausdrücke getrennt durch ';' ein, um Variablenfilter zu definieren.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="165"/> + <location filename="Debugger/DebugViewer.py" line="167"/> <source>Enter regular expression patterns separated by ';' to define variable filters. All variables and class attributes matched by one of the expressions are not shown in the list above.</source> <translation>Gib reguläre Ausdrücke getrennt durch ';' ein, um Variablenfilter zu definieren. Alle Variablen und Klassenattribute, auf die einer der Ausdrücke passt, werden in der obigen Liste nicht dargestellt.</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="170"/> + <location filename="Debugger/DebugViewer.py" line="172"/> <source>Set</source> <translation>Setzen</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="148"/> + <location filename="Debugger/DebugViewer.py" line="150"/> <source>Source</source> <translation>Quelltext</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="224"/> - <source>Threads:</source> - <translation>Threads:</translation> - </message> - <message> <location filename="Debugger/DebugViewer.py" line="226"/> + <source>Threads:</source> + <translation>Threads:</translation> + </message> + <message> + <location filename="Debugger/DebugViewer.py" line="228"/> <source>ID</source> <translation>ID</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="226"/> + <location filename="Debugger/DebugViewer.py" line="228"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="226"/> + <location filename="Debugger/DebugViewer.py" line="228"/> <source>State</source> <translation>Status</translation> </message> <message> - <location filename="Debugger/DebugViewer.py" line="461"/> - <source>waiting at breakpoint</source> - <translation>am Haltepunkt wartend</translation> - </message> - <message> <location filename="Debugger/DebugViewer.py" line="463"/> + <source>waiting at breakpoint</source> + <translation>am Haltepunkt wartend</translation> + </message> + <message> + <location filename="Debugger/DebugViewer.py" line="465"/> <source>running</source> <translation>ausführend</translation> </message> @@ -5351,22 +5351,22 @@ <translation>Geänderte Skripte automatisch sichern</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="226"/> + <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="228"/> <source>Add allowed host</source> <translation>Zugelassene Rechner hinzufügen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="245"/> + <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="247"/> <source>Enter the IP address of an allowed host</source> <translation>Gib die IP Adresse eines zugelassenen Rechners ein</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="256"/> + <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="258"/> <source><p>The entered address <b>{0}</b> is not a valid IP v4 or IP v6 address. Aborting...</p></source> <translation><p>Die eingegebene Adresse <b>{0}</b> ist keine gültige IP v4 oder IP v6 Adresse. Abbruch...</p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="256"/> + <location filename="Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="258"/> <source>Edit allowed host</source> <translation>Zugelassene Rechner bearbeiten</translation> </message> @@ -5459,37 +5459,37 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="340"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="342"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="340"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="342"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="759"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="761"/> <source>Parent Process</source> <translation>Vater Prozess</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="759"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="761"/> <source>Child process</source> <translation>Kind Prozess</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="760"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="762"/> <source>Client forking</source> <translation>Client forkt</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="760"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="762"/> <source>Select the fork branch to follow.</source> <translation>Wähle den zu folgenden Fork Pfad.</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython.py" line="156"/> + <location filename="Debugger/DebuggerInterfacePython.py" line="158"/> <source><p>No Python2 interpreter configured.</p></source> <translation><p>Kein Python2 Interpreter gefunden.</p></translation> </message> @@ -5497,32 +5497,32 @@ <context> <name>DebuggerInterfacePython3</name> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="336"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="338"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="336"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="338"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="755"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="757"/> <source>Parent Process</source> <translation>Vater Prozess</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="755"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="757"/> <source>Child process</source> <translation>Kind Prozess</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="756"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="758"/> <source>Client forking</source> <translation>Client forkt</translation> </message> <message> - <location filename="Debugger/DebuggerInterfacePython3.py" line="756"/> + <location filename="Debugger/DebuggerInterfacePython3.py" line="758"/> <source>Select the fork branch to follow.</source> <translation>Wähle den zu folgenden Fork Pfad.</translation> </message> @@ -5530,12 +5530,12 @@ <context> <name>DebuggerInterfaceRuby</name> <message> - <location filename="Debugger/DebuggerInterfaceRuby.py" line="309"/> + <location filename="Debugger/DebuggerInterfaceRuby.py" line="311"/> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="Debugger/DebuggerInterfaceRuby.py" line="309"/> + <location filename="Debugger/DebuggerInterfaceRuby.py" line="311"/> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> @@ -5543,17 +5543,17 @@ <context> <name>DebuggerPropertiesDialog</name> <message> - <location filename="Project/DebuggerPropertiesDialog.py" line="101"/> + <location filename="Project/DebuggerPropertiesDialog.py" line="103"/> <source>Select interpreter for Debug Client</source> <translation>Wähle den Interpreter für den Debug Client</translation> </message> <message> - <location filename="Project/DebuggerPropertiesDialog.py" line="116"/> + <location filename="Project/DebuggerPropertiesDialog.py" line="118"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="Project/DebuggerPropertiesDialog.py" line="117"/> + <location filename="Project/DebuggerPropertiesDialog.py" line="119"/> <source>Select Debug Client</source> <translation>Wähle den Debug Client</translation> </message> @@ -5846,17 +5846,17 @@ <translation>Encoding des Debuggers nicht setzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="87"/> + <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="89"/> <source>Select Python interpreter for Debug Client</source> <translation>Wähle den Python Interpreter für den Debug Client</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="102"/> + <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="104"/> <source>Select Debug Client</source> <translation>Wähle den Debug Client</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="102"/> + <location filename="Preferences/ConfigurationPages/DebuggerPython3Page.py" line="104"/> <source>Python Files (*.py *.py3)</source> <translation>Python Dateien (*.py *.py3)</translation> </message> @@ -5959,12 +5959,12 @@ <translation>Encoding des Debuggers nicht setzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="83"/> + <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="85"/> <source>Select Python interpreter for Debug Client</source> <translation>Wähle den Python Interpreter für den Debug Client</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="98"/> + <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="100"/> <source>Select Debug Client</source> <translation>Wähle den Debug Client</translation> </message> @@ -5989,7 +5989,7 @@ <translation>Auswählen, um Stdin, Stdout und Stderr des zu untersuchenden Programms zur eric5 IDE umzuleiten</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="98"/> + <location filename="Preferences/ConfigurationPages/DebuggerPythonPage.py" line="100"/> <source>Python Files (*.py *.py2)</source> <translation>Python Dateien (*.py *.py2)</translation> </message> @@ -6027,7 +6027,7 @@ <translation>Stdin/Stdout/Stderr umleiten</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/DebuggerRubyPage.py" line="56"/> + <location filename="Preferences/ConfigurationPages/DebuggerRubyPage.py" line="58"/> <source>Select Ruby interpreter for Debug Client</source> <translation>Wähle den Ruby Interpreter für den Debug Client</translation> </message> @@ -6053,32 +6053,32 @@ <context> <name>DiffDialog</name> <message> - <location filename="UI/DiffDialog.py" line="281"/> + <location filename="UI/DiffDialog.py" line="283"/> <source>Patch Files (*.diff)</source> <translation>Patchdateien (*.diff)</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="316"/> + <location filename="UI/DiffDialog.py" line="318"/> <source>Save Diff</source> <translation>Diff speichern</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="352"/> + <location filename="UI/DiffDialog.py" line="354"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="450"/> + <location filename="UI/DiffDialog.py" line="452"/> <source>There is no difference.</source> <translation>Es gibt keinen Unterschied.</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="469"/> + <location filename="UI/DiffDialog.py" line="471"/> <source>Select file to compare</source> <translation>Wähle eine zu vergleichende Datei</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="352"/> + <location filename="UI/DiffDialog.py" line="354"/> <source><p>The file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> @@ -6148,32 +6148,32 @@ <translation>Alt+C</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="213"/> + <location filename="UI/DiffDialog.py" line="215"/> <source>Press to perform the comparison of the two files</source> <translation>Drücken, um den Dateivergleich durchzuführen</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="217"/> + <location filename="UI/DiffDialog.py" line="219"/> <source>Save the output to a patch file</source> <translation>Speichere die Ausgabe in eine Patchdatei</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="316"/> + <location filename="UI/DiffDialog.py" line="318"/> <source><p>The patch file <b>{0}</b> could not be saved.<br />Reason: {1}</p></source> <translation><p>Die Patchdatei <b>{0}</b> konnte nicht gespeichert werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="UI/DiffDialog.py" line="212"/> + <location filename="UI/DiffDialog.py" line="214"/> <source>Compare</source> <translation>Vergleichen</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="216"/> + <location filename="UI/DiffDialog.py" line="218"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="UI/DiffDialog.py" line="298"/> + <location filename="UI/DiffDialog.py" line="300"/> <source><p>The patch file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Patchdatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> @@ -6181,28 +6181,28 @@ <context> <name>DirectorySyncHandler</name> <message> - <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="68"/> + <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="70"/> <source>Error creating the shared directory. {0}</source> <translation>Fehler beim Anlegen des gemeinsamen Verzeichnisses. {0}</translation> </message> <message> - <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="91"/> + <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="93"/> <source>Cannot read remote file. {0}</source> <translation>Entfernte Datei kann nicht gelesen werden. {0}</translation> </message> <message> - <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="123"/> + <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="125"/> <source>Cannot write remote file. {0}</source> <translation>Entfernte Datei kann nicht geschrieben werden. {0}</translation> </message> <message> - <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="190"/> + <location filename="Helpviewer/Sync/DirectorySyncHandler.py" line="192"/> <source>Synchronization finished</source> <translation>Synchronisation beendet</translation> </message> @@ -6326,47 +6326,47 @@ <translation>Drücken, um die geladenen Datei zu öffnen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="218"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="224"/> <source>Download canceled: {0}</source> <translation>Download abgebrochen: {0}</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="208"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="214"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="237"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="243"/> <source>Download directory ({0}) couldn't be created.</source> <translation>Das Downloadverzeichnis ({0}) konnte nicht erzeugt werden.</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="412"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="418"/> <source>Error opening save file: {0}</source> <translation>Fehler beim Öffnen der zu speichernden Datei: {0}</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="424"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="430"/> <source>Error saving: {0}</source> <translation>Fehler beim Speichern: {0}</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="436"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="442"/> <source>Network Error: {0}</source> <translation>Netzwerkfehler: {0}</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="546"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="552"/> <source>?</source> <translation>?</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="559"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="565"/> <source>{0} of {1} - Stopped</source> <translation>{0} von {1} - Angehalten</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="196"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="202"/> <source>VirusTotal scan scheduled: {0}</source> <translation>Prüfung mit VirusTotal beauftragt: {0}</translation> </message> @@ -6376,14 +6376,14 @@ <translation>Drücken, um den Download zu pausieren</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="545"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="551"/> <source>{0} of {1} ({2}/sec) {3}</source> <translation>{0} von {1} ({2}/s) {3}</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadItem.py" line="554"/> + <location filename="Helpviewer/Download/DownloadItem.py" line="560"/> <source>{0} downloaded SHA1: {1} MD5: {2}</source> @@ -6395,7 +6395,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="374"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="376"/> <source>Downloads</source> <translation>Downloads</translation> </message> @@ -6410,7 +6410,7 @@ <translation>0 Einträge</translation> </message> <message numerus="yes"> - <location filename="Helpviewer/Download/DownloadManager.py" line="364"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="366"/> <source>%n Download(s)</source> <translation> <numerusform>1 Download</numerusform> @@ -6418,7 +6418,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Helpviewer/Download/DownloadManager.py" line="138"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="140"/> <source>There are %n downloads in progress. Do you want to quit anyway?</source> <translation> @@ -6434,47 +6434,47 @@ <translation>Liste löschen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="80"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="82"/> <source>Retry</source> <translation>Wiederholen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="84"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="86"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="87"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="89"/> <source>Cancel</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="90"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="92"/> <source>Open Containing Folder</source> <translation>Übergeordnetes Verzeichnis öffnen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="93"/> - <source>Go to Download Page</source> - <translation>Zur Downloadseite gehen</translation> - </message> - <message> <location filename="Helpviewer/Download/DownloadManager.py" line="95"/> + <source>Go to Download Page</source> + <translation>Zur Downloadseite gehen</translation> + </message> + <message> + <location filename="Helpviewer/Download/DownloadManager.py" line="97"/> <source>Copy Download Link</source> <translation>Downloadlink kopieren</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="98"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="100"/> <source>Select All</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadManager.py" line="105"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="107"/> <source>Remove From List</source> <translation>Aus der Liste löschen</translation> </message> <message numerus="yes"> - <location filename="Helpviewer/Download/DownloadManager.py" line="372"/> + <location filename="Helpviewer/Download/DownloadManager.py" line="374"/> <source>Downloading %n file(s)</source> <translation> <numerusform>Lade eine Datei herunter</numerusform> @@ -6485,7 +6485,7 @@ <context> <name>DownloadUtilities</name> <message numerus="yes"> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="24"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="26"/> <source>%n seconds remaining</source> <translation> <numerusform>1 Sekunde verbleibt</numerusform> @@ -6493,27 +6493,27 @@ </translation> </message> <message> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="39"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="41"/> <source>Bytes</source> <translation>Bytes</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="42"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="44"/> <source>KiB</source> <translation>KiB</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="45"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="47"/> <source>MiB</source> <translation>MiB</translation> </message> <message> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="48"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="50"/> <source>GiB</source> <translation>GiB</translation> </message> <message numerus="yes"> - <location filename="Helpviewer/Download/DownloadUtilities.py" line="19"/> + <location filename="Helpviewer/Download/DownloadUtilities.py" line="21"/> <source>%n:{0:02} minutes remaining</source> <translation> <numerusform>%n:{0:02} Minute verbleibt</numerusform> @@ -6524,7 +6524,7 @@ <context> <name>E5GraphicsView</name> <message> - <location filename="E5Graphics/E5GraphicsView.py" line="54"/> + <location filename="E5Graphics/E5GraphicsView.py" line="56"/> <source><b>Graphics View</b> <p>This graphics view is used to show a diagram. There are various actions available to manipulate the @@ -6557,7 +6557,7 @@ </translation> </message> <message> - <location filename="E5Graphics/E5GraphicsView.py" line="362"/> + <location filename="E5Graphics/E5GraphicsView.py" line="364"/> <source>{0}, Page {1}</source> <translation>{0}, Seite {1}</translation> </message> @@ -6565,12 +6565,12 @@ <context> <name>E5MainWindow</name> <message> - <location filename="E5Gui/E5MainWindow.py" line="54"/> + <location filename="E5Gui/E5MainWindow.py" line="56"/> <source>Loading Style Sheet</source> <translation>Lade Stildatei</translation> </message> <message> - <location filename="E5Gui/E5MainWindow.py" line="54"/> + <location filename="E5Gui/E5MainWindow.py" line="56"/> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation><p>Die Qt Style Sheet Datei <b>{0}</b> konnte nicht geladen werden.<br>Ursache: {1}</p></translation> </message> @@ -6578,27 +6578,27 @@ <context> <name>E5MessageBoxWizard</name> <message> - <location filename="Plugins/PluginWizardE5MessageBox.py" line="73"/> + <location filename="Plugins/PluginWizardE5MessageBox.py" line="75"/> <source>E5MessageBox Wizard</source> <translation>E5MessageBox Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardE5MessageBox.py" line="70"/> + <location filename="Plugins/PluginWizardE5MessageBox.py" line="72"/> <source>&E5MessageBox Wizard...</source> <translation>&E5MessageBox Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardE5MessageBox.py" line="74"/> + <location filename="Plugins/PluginWizardE5MessageBox.py" line="76"/> <source><b>E5MessageBox Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create an E5MessageBox. The generated code is inserted at the current cursor position.</p></source> <translation><b>E5MessageBox Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung einer E5MessageBox benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> <message> - <location filename="Plugins/PluginWizardE5MessageBox.py" line="120"/> + <location filename="Plugins/PluginWizardE5MessageBox.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardE5MessageBox.py" line="120"/> + <location filename="Plugins/PluginWizardE5MessageBox.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> @@ -6781,92 +6781,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="36"/> + <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="38"/> <source>Abort</source> <translation>Abbrechen (Abort)</translation> </message> <message> - <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="37"/> - <source>Apply</source> - <translation>Anwenden</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="38"/> - <source>Cancel</source> - <translation>Abbrechen (Cancel)</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="39"/> - <source>Close</source> - <translation>Schließen</translation> + <source>Apply</source> + <translation>Anwenden</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="40"/> - <source>Discard</source> - <translation>Verwerfen</translation> + <source>Cancel</source> + <translation>Abbrechen (Cancel)</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> - <source>Help</source> - <translation>Hilfe</translation> + <source>Close</source> + <translation>Schließen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> - <source>Ignore</source> - <translation>Ignorieren</translation> + <source>Discard</source> + <translation>Verwerfen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> - <source>No</source> - <translation>Nein</translation> + <source>Help</source> + <translation>Hilfe</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> - <source>No to all</source> - <translation>Nein zu allen</translation> + <source>Ignore</source> + <translation>Ignorieren</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> - <source>Ok</source> - <translation>Ok</translation> + <source>No</source> + <translation>Nein</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> - <source>Open</source> - <translation>Öffnen</translation> + <source>No to all</source> + <translation>Nein zu allen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> - <source>Reset</source> - <translation>Zurücksetzen</translation> + <source>Ok</source> + <translation>Ok</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> - <source>Restore defaults</source> - <translation>Auf Standardwerte zurücksetzen</translation> + <source>Open</source> + <translation>Öffnen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> - <source>Retry</source> - <translation>Wiederholen</translation> + <source>Reset</source> + <translation>Zurücksetzen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> - <source>Save</source> - <translation>Speichern</translation> + <source>Restore defaults</source> + <translation>Auf Standardwerte zurücksetzen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> - <source>Save all</source> - <translation>Alles speichern</translation> + <source>Retry</source> + <translation>Wiederholen</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> - <source>Yes</source> - <translation>Ja</translation> + <source>Save</source> + <translation>Speichern</translation> </message> <message> <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <source>Save all</source> + <translation>Alles speichern</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <source>Yes</source> + <translation>Ja</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> @@ -6936,12 +6936,12 @@ <translation>Gib den Namen der Sichern-Funktion ein</translation> </message> <message> - <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="35"/> + <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="37"/> <source>No button</source> <translation>kein Knopf</translation> </message> <message> - <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="101"/> + <location filename="Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="103"/> <source>Test</source> <translation>Test</translation> </message> @@ -7012,12 +7012,12 @@ <translation>Response Headers</translation> </message> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="83"/> + <location filename="E5Network/E5NetworkMonitor.py" line="85"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="83"/> + <location filename="E5Network/E5NetworkMonitor.py" line="85"/> <source>Value</source> <translation>Wert</translation> </message> @@ -7025,17 +7025,17 @@ <context> <name>E5NetworkProxyFactory</name> <message> - <location filename="E5Network/E5NetworkProxyFactory.py" line="133"/> + <location filename="E5Network/E5NetworkProxyFactory.py" line="135"/> <source>Proxy Configuration Error</source> <translation>Proxykonfigurationsfehler</translation> </message> <message> - <location filename="E5Network/E5NetworkProxyFactory.py" line="49"/> + <location filename="E5Network/E5NetworkProxyFactory.py" line="51"/> <source><b>Connect to proxy '{0}' using:</b></source> <translation><b>Verbinden zu Proxy '{0}' mit:</b></translation> </message> <message> - <location filename="E5Network/E5NetworkProxyFactory.py" line="133"/> + <location filename="E5Network/E5NetworkProxyFactory.py" line="135"/> <source>Proxy usage was activated but no proxy host for protocol '{0}' configured.</source> <translation>Proxyverwendung ist aktiviert, aber es ist kein Proxyrechner für das Protokoll '{0}' konfiguriert.</translation> </message> @@ -7043,42 +7043,42 @@ <context> <name>E5RequestModel</name> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="212"/> + <location filename="E5Network/E5NetworkMonitor.py" line="214"/> <source>Method</source> <translation>Methode</translation> </message> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="213"/> - <source>Address</source> - <translation>Adresse</translation> - </message> - <message> - <location filename="E5Network/E5NetworkMonitor.py" line="214"/> - <source>Response</source> - <translation>Antwort</translation> - </message> - <message> <location filename="E5Network/E5NetworkMonitor.py" line="215"/> - <source>Length</source> - <translation>Länge</translation> + <source>Address</source> + <translation>Adresse</translation> </message> <message> <location filename="E5Network/E5NetworkMonitor.py" line="216"/> - <source>Content Type</source> - <translation>Inhaltstyp</translation> + <source>Response</source> + <translation>Antwort</translation> </message> <message> <location filename="E5Network/E5NetworkMonitor.py" line="217"/> + <source>Length</source> + <translation>Länge</translation> + </message> + <message> + <location filename="E5Network/E5NetworkMonitor.py" line="218"/> + <source>Content Type</source> + <translation>Inhaltstyp</translation> + </message> + <message> + <location filename="E5Network/E5NetworkMonitor.py" line="219"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="286"/> + <location filename="E5Network/E5NetworkMonitor.py" line="288"/> <source>Redirect: {0}</source> <translation>Redirect: {0}</translation> </message> <message> - <location filename="E5Network/E5NetworkMonitor.py" line="319"/> + <location filename="E5Network/E5NetworkMonitor.py" line="321"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> @@ -7086,7 +7086,7 @@ <context> <name>E5SideBar</name> <message> - <location filename="E5Gui/E5SideBar.py" line="51"/> + <location filename="E5Gui/E5SideBar.py" line="53"/> <source>Deselect to activate automatic collapsing</source> <translation>Abwählen, um das automatische Einfahren zu aktivieren</translation> </message> @@ -7174,72 +7174,72 @@ <translation>Sie haben Zertifikate für diese Zertifizierungsstellen gespeichert:</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="285"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="287"/> <source>(Unknown)</source> <translation>(Unbekannt)</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="287"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="289"/> <source>(Unknown common name)</source> <translation>(Unbekannter allgemeiner Name)</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="138"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="140"/> <source>Delete Server Certificate</source> <translation>Serverzertifikat löschen</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="138"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="140"/> <source><p>Shall the server certificate really be deleted?</p><p>{0}</p><p>If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.</p></source> <translation><p>Soll das Serverzertifikat wirklich gelöscht werden?</p><p>{0}</p><p>Wenn das Serverzertifikat gelöscht wird, werden die normalen Sicherheitsprüfungen reaktiviert und der Server muss ein gültiges Zertifikat vorweisen.</p></translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="461"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="463"/> <source>Import Certificate</source> <translation>Zertifikat importieren</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="379"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="381"/> <source><p>The certificate <b>{0}</b> already exists. Skipping.</p></source> <translation><p>Das Zertifikat <b>{0}</b> existiert bereits. Überspringe es.</p></translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="335"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="337"/> <source>Delete CA Certificate</source> <translation>Zertifikat einer Zertifizierungsstelle löschen</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="335"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="337"/> <source><p>Shall the CA certificate really be deleted?</p><p>{0}</p><p>If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.</p></source> <translation><p>Soll das Zertifikat der Zertifizierungsstelle wirklich gelöscht werden?</p><p>{0}</p><p>Wenn das Zertifikat einer Zertifizierungsstelle gelöscht wird, vertraut der Browser keinem Zertifikat, das von dieser Zertifizierungsstelle herausgegeben wurde.</p></translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="471"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="473"/> <source>Export Certificate</source> <translation>Zertifikat exportieren</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="415"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="417"/> <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source> <translation>Zertifikat Datei (PEM) (*.pem);;Zertifikat Datei (DER) (*.der)</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="431"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="433"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="441"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="443"/> <source><p>The certificate could not be written to file <b>{0}</b></p><p>Error: {1}</p></source> <translation><p>Das Zertifikat konnte nicht in die Datei <b>{0}</b> geschrieben werden.</p><p>Fehler: {1}</p></translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="461"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="463"/> <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source> <translation>Zertifikat Dateien (*.pem *.crt *.der *.cer *.ca);;Alle Dateien (*)</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesDialog.py" line="471"/> + <location filename="E5Network/E5SslCertificatesDialog.py" line="473"/> <source><p>The certificate could not be read from file <b>{0}</b></p><p>Error: {1}</p></source> <translation><p>Das Zertifikat konnte nicht aus der Datei <b>{0}</b> gelesen werden.</p><p>Fehler: {1}</p></translation> </message> @@ -7335,7 +7335,7 @@ <translation>MD5-Prüfsumme:</translation> </message> <message> - <location filename="E5Network/E5SslCertificatesInfoWidget.py" line="149"/> + <location filename="E5Network/E5SslCertificatesInfoWidget.py" line="155"/> <source><not part of the certificate></source> <translation><kein Teil des Zertifikates></translation> </message> @@ -7343,42 +7343,42 @@ <context> <name>E5SslErrorHandler</name> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="129"/> + <location filename="E5Network/E5SslErrorHandler.py" line="131"/> <source>SSL Errors</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="129"/> + <location filename="E5Network/E5SslErrorHandler.py" line="131"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL Fehler für <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Sollen diese Fehler ignoriert werden?</p></translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="143"/> + <location filename="E5Network/E5SslErrorHandler.py" line="145"/> <source>Certificates</source> <translation>Zertifikate</translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="143"/> + <location filename="E5Network/E5SslErrorHandler.py" line="145"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Zertifikate:<br/>{0}<br/>Sollen alle diese Zertifikate akzeptiert werden?</p></translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="198"/> + <location filename="E5Network/E5SslErrorHandler.py" line="200"/> <source>Name: {0}</source> <translation>Name: {0}</translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="202"/> + <location filename="E5Network/E5SslErrorHandler.py" line="204"/> <source><br/>Organization: {0}</source> <translation><br/>Organisation: {0}</translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="206"/> + <location filename="E5Network/E5SslErrorHandler.py" line="208"/> <source><br/>Issuer: {0}</source> <translation><br/>Aussteller: {0}</translation> </message> <message> - <location filename="E5Network/E5SslErrorHandler.py" line="210"/> + <location filename="E5Network/E5SslErrorHandler.py" line="212"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>Gültig ab: {0}<br/>Gültig bis: {1}</translation> </message> @@ -7386,55 +7386,55 @@ <context> <name>E5SslInfoWidget</name> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="56"/> + <location filename="E5Network/E5SslInfoWidget.py" line="58"/> <source>Identity</source> <translation>Identität</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="66"/> + <location filename="E5Network/E5SslInfoWidget.py" line="68"/> <source>Warning: this site is NOT carrying a certificate.</source> <translation>Warnung: Diese Seite führt KEIN Zertifikat mit sich.</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="79"/> + <location filename="E5Network/E5SslInfoWidget.py" line="81"/> <source>The certificate for this site is valid and has been verified by: {0}</source> <translation>Das Zertifikat dieser Seite ist gültig und wurd verifiziert durch: {0}</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="91"/> + <location filename="E5Network/E5SslInfoWidget.py" line="93"/> <source>Certificate Information</source> <translation>Zertifikatsinformation</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="105"/> + <location filename="E5Network/E5SslInfoWidget.py" line="107"/> <source>Encryption</source> <translation>Verschlüsselung</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="116"/> + <location filename="E5Network/E5SslInfoWidget.py" line="118"/> <source>Your connection to "{0}" is NOT encrypted. </source> <translation>Ihre Verbindung zu "{0}" ist NICHT verschlüsselt.</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="125"/> + <location filename="E5Network/E5SslInfoWidget.py" line="127"/> <source>Your connection to "{0}" is encrypted.</source> <translation>Ihre Verbindung zu "{0}" ist verschlüsselt.</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="141"/> + <location filename="E5Network/E5SslInfoWidget.py" line="143"/> <source>unknown</source> <translation>unbekannt</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="147"/> + <location filename="E5Network/E5SslInfoWidget.py" line="149"/> <source>It uses protocol: {0}</source> <translation>Verwendetes Protokoll: {0}</translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="153"/> + <location filename="E5Network/E5SslInfoWidget.py" line="155"/> <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism. </source> @@ -7442,7 +7442,7 @@ </translation> </message> <message> - <location filename="E5Network/E5SslInfoWidget.py" line="84"/> + <location filename="E5Network/E5SslInfoWidget.py" line="86"/> <source>The certificate for this site is NOT valid.</source> <translation>Das Zertifikat dieser Seite ist NICHT gültig.</translation> </message> @@ -7540,42 +7540,42 @@ <translation>Drücken, um die Aktion nach unten zu verschieben.</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="77"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="79"/> <source>--Separator--</source> <translation>--Trenner--</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="136"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="138"/> <source>New Toolbar</source> <translation>Neue Werkzeugleiste</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="128"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="130"/> <source>Toolbar Name:</source> <translation>Name der Werkzeugleiste:</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="191"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="193"/> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation>Eine Werkzeugleiste mit dem Namen <b>{0}</b> existiert bereits.</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="157"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="159"/> <source>Remove Toolbar</source> <translation>Werkzeugleiste entfernen</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="157"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="159"/> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation>Soll die Werkzeugleiste <b>{0}</b> wirklich entfernt werden?</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="191"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="193"/> <source>Rename Toolbar</source> <translation>Werkzeugleiste umbenennen</translation> </message> <message> - <location filename="E5Gui/E5ToolBarDialog.py" line="180"/> + <location filename="E5Gui/E5ToolBarDialog.py" line="182"/> <source>New Toolbar Name:</source> <translation>Neuer Name der Werkzeugleiste:</translation> </message> @@ -7606,7 +7606,7 @@ <context> <name>EditBreakpointDialog</name> <message> - <location filename="Debugger/EditBreakpointDialog.py" line="115"/> + <location filename="Debugger/EditBreakpointDialog.py" line="117"/> <source>Select filename of the breakpoint</source> <translation>Wähle den Dateinamen des Haltepunktes aus</translation> </message> @@ -7686,7 +7686,7 @@ <translation>Aktiv</translation> </message> <message> - <location filename="Debugger/EditBreakpointDialog.py" line="85"/> + <location filename="Debugger/EditBreakpointDialog.py" line="87"/> <source>Add Breakpoint</source> <translation>Haltepunkt hinzufügen</translation> </message> @@ -7767,837 +7767,837 @@ <context> <name>Editor</name> <message> - <location filename="QScintilla/Editor.py" line="2617"/> + <location filename="QScintilla/Editor.py" line="2623"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2781"/> + <location filename="QScintilla/Editor.py" line="2787"/> <source>Save File</source> <translation>Datei sichern</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="592"/> - <source>Undo</source> - <translation>Rückgängig</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="595"/> - <source>Redo</source> - <translation>Wiederherstellen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="602"/> - <source>Cut</source> - <translation>Ausschneiden</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="605"/> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="607"/> - <source>Paste</source> - <translation>Einfügen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="611"/> - <source>Indent</source> - <translation>Einrücken</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="613"/> - <source>Unindent</source> - <translation>Einrücken rückgängig</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="616"/> - <source>Comment</source> - <translation>Kommentar</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="619"/> - <source>Uncomment</source> - <translation>Kommentar entfernen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="691"/> - <source>Close</source> - <translation>Schließen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="695"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="697"/> - <source>Save As...</source> - <translation>Speichern unter...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="630"/> - <source>Select all</source> - <translation>Alles auswählen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="631"/> - <source>Deselect all</source> - <translation>Auswahl aufheben</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="628"/> - <source>Select to brace</source> - <translation>Zur Klammer auswählen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="708"/> - <source>Print</source> - <translation>Drucken</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="2244"/> - <source>Printing...</source> - <translation>Drucke...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="2261"/> - <source>Printing completed</source> - <translation>Drucken beendet</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="2263"/> - <source>Error while printing</source> - <translation>Fehler beim Drucken</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="2266"/> - <source>Printing aborted</source> - <translation>Drucken abgebrochen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5647"/> - <source>File changed</source> - <translation>Datei geändert</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="751"/> - <source>Check</source> - <translation>Prüfen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="2569"/> - <source>File Modified</source> - <translation>Datei geändert</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="761"/> - <source>Code metrics...</source> - <translation>Quelltext Metriken...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="763"/> - <source>Code coverage...</source> - <translation>Quelltext Abdeckung...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="771"/> - <source>Profile data...</source> - <translation>Profildaten...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="759"/> - <source>Show</source> - <translation>Zeige</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="622"/> - <source>Stream Comment</source> - <translation>Stream Kommentar</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="625"/> - <source>Box Comment</source> - <translation>Box Kommentar</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1598"/> - <source>Modification of Read Only file</source> - <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1598"/> - <source>You are attempting to change a read only file. Please save to a different file first.</source> - <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern sie sie zuerst in eine andere Datei.</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="804"/> - <source>Languages</source> - <translation>Sprachen</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="598"/> - <source>Revert to last saved state</source> - <translation>Zurück zum letzten gesichert Zustand</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5382"/> - <source>Macro Name</source> - <translation>Makro Name</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5382"/> - <source>Select a macro name:</source> - <translation>Wähle einen Makro Namen:</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5450"/> - <source>Macro files (*.macro)</source> - <translation>Makro Dateien (*.macro)</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5410"/> - <source>Load macro file</source> - <translation>Lade Makro Datei</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5431"/> - <source>Error loading macro</source> - <translation>Fehler beim Makro Laden</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5450"/> - <source>Save macro file</source> - <translation>Makro Datei schreiben</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5467"/> - <source>Save macro</source> - <translation>Makro speichern</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5482"/> - <source>Error saving macro</source> - <translation>Fehler beim Makro speichern</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5493"/> - <source>Start Macro Recording</source> - <translation>Makroaufzeichnung starten</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5518"/> - <source>Macro Recording</source> - <translation>Makroaufzeichnung</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5518"/> - <source>Enter name of the macro:</source> - <translation>Gib einen Namen für das Makro ein:</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1030"/> - <source>Toggle bookmark</source> - <translation>Lesezeichen setzen/löschen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1033"/> - <source>Next bookmark</source> - <translation>Nächstes Lesezeichen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1036"/> - <source>Previous bookmark</source> - <translation>Vorheriges Lesezeichen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1039"/> - <source>Clear all bookmarks</source> - <translation>Alle Lesezeichen löschen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1066"/> - <source>Toggle breakpoint</source> - <translation>Haltepunkt setzen/löschen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1109"/> - <source>LMB toggles bookmarks</source> - <translation>LMK schaltet Lesezeichen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1114"/> - <source>LMB toggles breakpoints</source> - <translation>LMK schaltet Haltepunkte</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1078"/> - <source>Next breakpoint</source> - <translation>Nächster Haltepunkt</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1081"/> - <source>Previous breakpoint</source> - <translation>Vorheriger Haltepunkt</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1084"/> - <source>Clear all breakpoints</source> - <translation>Alle Haltepunkte löschen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1072"/> - <source>Edit breakpoint...</source> - <translation>Haltepunkt bearbeiten...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4542"/> - <source>Enable breakpoint</source> - <translation>Haltepunkt aktivieren</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4545"/> - <source>Disable breakpoint</source> - <translation>Haltepunkt deaktivieren</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4873"/> - <source>Code Coverage</source> - <translation>Quelltext Abdeckung</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4873"/> - <source>Please select a coverage file</source> - <translation>Bitte wählen sie eine Datei mit Abdeckungsdaten</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5026"/> - <source>Profile Data</source> - <translation>Profildaten</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5026"/> - <source>Please select a profile file</source> - <translation>Bitte wählen sie eine Datei mit Profildaten</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="669"/> - <source>Autocompletion enabled</source> - <translation>Autom. Vervollständigung aktiv</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4051"/> - <source>Autocompletion</source> - <translation>Autom. Vervollständigung</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="4051"/> - <source>Autocompletion is not available because there is no autocompletion source set.</source> - <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="652"/> - <source>Use Monospaced Font</source> - <translation>Benutze Monospace Font</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="644"/> - <source>Shorten empty lines</source> - <translation>Leere Zeilen verkürzen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="686"/> - <source>New view</source> - <translation>Neue Ansicht</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1043"/> - <source>Goto syntax error</source> - <translation>Zu Syntaxfehler gehen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1049"/> - <source>Clear syntax error</source> - <translation>Syntaxfehler löschen</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="657"/> - <source>Autosave enabled</source> - <translation>Autom. Speicherung aktiv</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5907"/> - <source>Drop Error</source> - <translation>Drop Fehler</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1046"/> - <source>Show syntax error message</source> - <translation>Zeige Syntaxfehlermeldung</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5157"/> - <source>Syntax Error</source> - <translation>Syntaxfehler</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5157"/> - <source>No syntax error message available.</source> - <translation>Keine Syntaxfehlermeldung verfügbar.</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1069"/> - <source>Toggle temporary breakpoint</source> - <translation>Temporären Haltepunkt setzen/löschen</translation> + <source>Undo</source> + <translation>Rückgängig</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="601"/> + <source>Redo</source> + <translation>Wiederherstellen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="608"/> + <source>Cut</source> + <translation>Ausschneiden</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="611"/> + <source>Copy</source> + <translation>Kopieren</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="613"/> + <source>Paste</source> + <translation>Einfügen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="617"/> + <source>Indent</source> + <translation>Einrücken</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="619"/> + <source>Unindent</source> + <translation>Einrücken rückgängig</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="622"/> + <source>Comment</source> + <translation>Kommentar</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="625"/> + <source>Uncomment</source> + <translation>Kommentar entfernen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="697"/> + <source>Close</source> + <translation>Schließen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="701"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="703"/> + <source>Save As...</source> + <translation>Speichern unter...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="636"/> + <source>Select all</source> + <translation>Alles auswählen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="637"/> + <source>Deselect all</source> + <translation>Auswahl aufheben</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="634"/> + <source>Select to brace</source> + <translation>Zur Klammer auswählen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="714"/> + <source>Print</source> + <translation>Drucken</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2250"/> + <source>Printing...</source> + <translation>Drucke...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2267"/> + <source>Printing completed</source> + <translation>Drucken beendet</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2269"/> + <source>Error while printing</source> + <translation>Fehler beim Drucken</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2272"/> + <source>Printing aborted</source> + <translation>Drucken abgebrochen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5622"/> + <source>File changed</source> + <translation>Datei geändert</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="757"/> + <source>Check</source> + <translation>Prüfen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="2575"/> + <source>File Modified</source> + <translation>Datei geändert</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="767"/> + <source>Code metrics...</source> + <translation>Quelltext Metriken...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="769"/> + <source>Code coverage...</source> + <translation>Quelltext Abdeckung...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="777"/> + <source>Profile data...</source> + <translation>Profildaten...</translation> </message> <message> <location filename="QScintilla/Editor.py" line="765"/> + <source>Show</source> + <translation>Zeige</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="628"/> + <source>Stream Comment</source> + <translation>Stream Kommentar</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="631"/> + <source>Box Comment</source> + <translation>Box Kommentar</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1604"/> + <source>Modification of Read Only file</source> + <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1604"/> + <source>You are attempting to change a read only file. Please save to a different file first.</source> + <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern sie sie zuerst in eine andere Datei.</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="810"/> + <source>Languages</source> + <translation>Sprachen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="604"/> + <source>Revert to last saved state</source> + <translation>Zurück zum letzten gesichert Zustand</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5357"/> + <source>Macro Name</source> + <translation>Makro Name</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5357"/> + <source>Select a macro name:</source> + <translation>Wähle einen Makro Namen:</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5425"/> + <source>Macro files (*.macro)</source> + <translation>Makro Dateien (*.macro)</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5385"/> + <source>Load macro file</source> + <translation>Lade Makro Datei</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5406"/> + <source>Error loading macro</source> + <translation>Fehler beim Makro Laden</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5425"/> + <source>Save macro file</source> + <translation>Makro Datei schreiben</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5442"/> + <source>Save macro</source> + <translation>Makro speichern</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5457"/> + <source>Error saving macro</source> + <translation>Fehler beim Makro speichern</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5468"/> + <source>Start Macro Recording</source> + <translation>Makroaufzeichnung starten</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5493"/> + <source>Macro Recording</source> + <translation>Makroaufzeichnung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5493"/> + <source>Enter name of the macro:</source> + <translation>Gib einen Namen für das Makro ein:</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1036"/> + <source>Toggle bookmark</source> + <translation>Lesezeichen setzen/löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1039"/> + <source>Next bookmark</source> + <translation>Nächstes Lesezeichen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1042"/> + <source>Previous bookmark</source> + <translation>Vorheriges Lesezeichen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1045"/> + <source>Clear all bookmarks</source> + <translation>Alle Lesezeichen löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1072"/> + <source>Toggle breakpoint</source> + <translation>Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1115"/> + <source>LMB toggles bookmarks</source> + <translation>LMK schaltet Lesezeichen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1120"/> + <source>LMB toggles breakpoints</source> + <translation>LMK schaltet Haltepunkte</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1084"/> + <source>Next breakpoint</source> + <translation>Nächster Haltepunkt</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1087"/> + <source>Previous breakpoint</source> + <translation>Vorheriger Haltepunkt</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1090"/> + <source>Clear all breakpoints</source> + <translation>Alle Haltepunkte löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1078"/> + <source>Edit breakpoint...</source> + <translation>Haltepunkt bearbeiten...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4548"/> + <source>Enable breakpoint</source> + <translation>Haltepunkt aktivieren</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4551"/> + <source>Disable breakpoint</source> + <translation>Haltepunkt deaktivieren</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4848"/> + <source>Code Coverage</source> + <translation>Quelltext Abdeckung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4848"/> + <source>Please select a coverage file</source> + <translation>Bitte wählen sie eine Datei mit Abdeckungsdaten</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5001"/> + <source>Profile Data</source> + <translation>Profildaten</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5001"/> + <source>Please select a profile file</source> + <translation>Bitte wählen sie eine Datei mit Profildaten</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="675"/> + <source>Autocompletion enabled</source> + <translation>Autom. Vervollständigung aktiv</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4057"/> + <source>Autocompletion</source> + <translation>Autom. Vervollständigung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="4057"/> + <source>Autocompletion is not available because there is no autocompletion source set.</source> + <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="658"/> + <source>Use Monospaced Font</source> + <translation>Benutze Monospace Font</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="650"/> + <source>Shorten empty lines</source> + <translation>Leere Zeilen verkürzen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="692"/> + <source>New view</source> + <translation>Neue Ansicht</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1049"/> + <source>Goto syntax error</source> + <translation>Zu Syntaxfehler gehen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1055"/> + <source>Clear syntax error</source> + <translation>Syntaxfehler löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="663"/> + <source>Autosave enabled</source> + <translation>Autom. Speicherung aktiv</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5882"/> + <source>Drop Error</source> + <translation>Drop Fehler</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1052"/> + <source>Show syntax error message</source> + <translation>Zeige Syntaxfehlermeldung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5132"/> + <source>Syntax Error</source> + <translation>Syntaxfehler</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5132"/> + <source>No syntax error message available.</source> + <translation>Keine Syntaxfehlermeldung verfügbar.</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1075"/> + <source>Toggle temporary breakpoint</source> + <translation>Temporären Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="771"/> <source>Show code coverage annotations</source> <translation>Markiere Zeilen ohne Abdeckung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="768"/> + <location filename="QScintilla/Editor.py" line="774"/> <source>Hide code coverage annotations</source> <translation>Lösche Abdeckungsmarkierungen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1088"/> + <location filename="QScintilla/Editor.py" line="1094"/> <source>Next uncovered line</source> <translation>Nächste nichtabgedeckte Zeile</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1091"/> + <location filename="QScintilla/Editor.py" line="1097"/> <source>Previous uncovered line</source> <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4934"/> + <location filename="QScintilla/Editor.py" line="4909"/> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4928"/> + <location filename="QScintilla/Editor.py" line="4903"/> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4934"/> + <location filename="QScintilla/Editor.py" line="4909"/> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2569"/> + <location filename="QScintilla/Editor.py" line="2575"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5424"/> + <location filename="QScintilla/Editor.py" line="5399"/> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Die Makro Datei <b>{0}</b> kann nicht gelesen werden.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5431"/> + <location filename="QScintilla/Editor.py" line="5406"/> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Die Makro Datei <b>{0}</b> ist zerstört.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5482"/> + <location filename="QScintilla/Editor.py" line="5457"/> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Die Makro Datei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5907"/> + <location filename="QScintilla/Editor.py" line="5882"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="687"/> + <location filename="QScintilla/Editor.py" line="693"/> <source>New view (with new split)</source> <translation>Neue Ansicht (in neuem Abschnitt)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="288"/> + <location filename="QScintilla/Editor.py" line="294"/> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB<7B>. Soll sie wirklich geladen werden?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="781"/> - <source>Diagrams</source> - <translation>Diagramme</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="783"/> - <source>Class Diagram...</source> - <translation>Klassendiagramm...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="785"/> - <source>Package Diagram...</source> - <translation>Package Diagramm...</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="787"/> + <source>Diagrams</source> + <translation>Diagramme</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="789"/> + <source>Class Diagram...</source> + <translation>Klassendiagramm...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="791"/> + <source>Package Diagram...</source> + <translation>Package Diagramm...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="793"/> <source>Imports Diagram...</source> <translation>Imports-Diagramm...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="790"/> + <location filename="QScintilla/Editor.py" line="796"/> <source>Application Diagram...</source> <translation>Applikations-Diagramm...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="807"/> + <location filename="QScintilla/Editor.py" line="813"/> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5785"/> + <location filename="QScintilla/Editor.py" line="5760"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5925"/> + <location filename="QScintilla/Editor.py" line="5900"/> <source>Resources</source> <translation>Resourcen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5927"/> + <location filename="QScintilla/Editor.py" line="5902"/> <source>Add file...</source> <translation>Datei hinzufügen...</translation> </message> <message> + <location filename="QScintilla/Editor.py" line="5904"/> + <source>Add files...</source> + <translation>Dateien hinzufügen...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5906"/> + <source>Add aliased file...</source> + <translation>Aliased Datei hinzufügen...</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="5908"/> + <source>Add localized resource...</source> + <translation>Lokalisierte Resource hinzufügen...</translation> + </message> + <message> <location filename="QScintilla/Editor.py" line="5929"/> - <source>Add files...</source> - <translation>Dateien hinzufügen...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5931"/> - <source>Add aliased file...</source> - <translation>Aliased Datei hinzufügen...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5933"/> - <source>Add localized resource...</source> - <translation>Lokalisierte Resource hinzufügen...</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="5954"/> <source>Add file resource</source> <translation>Dateiresource hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5970"/> + <location filename="QScintilla/Editor.py" line="5945"/> <source>Add file resources</source> <translation>Dateiresourcen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5997"/> + <location filename="QScintilla/Editor.py" line="5972"/> <source>Add aliased file resource</source> <translation>Aliased Dateiresourcen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5997"/> + <location filename="QScintilla/Editor.py" line="5972"/> <source>Alias for file <b>{0}</b>:</source> <translation>Alias für Datei <b>{0}</b>:</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6059"/> + <location filename="QScintilla/Editor.py" line="6034"/> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6059"/> + <location filename="QScintilla/Editor.py" line="6034"/> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6089"/> + <location filename="QScintilla/Editor.py" line="6064"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6089"/> + <location filename="QScintilla/Editor.py" line="6064"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5936"/> + <location filename="QScintilla/Editor.py" line="5911"/> <source>Add resource frame</source> <translation>Resource Rahmen hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5493"/> + <location filename="QScintilla/Editor.py" line="5468"/> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1095"/> + <location filename="QScintilla/Editor.py" line="1101"/> <source>Next task</source> <translation>Nächste Aufgabe</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1098"/> + <location filename="QScintilla/Editor.py" line="1104"/> <source>Previous task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="725"/> - <source>Autocomplete</source> - <translation>Vervollständigen</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="731"/> - <source>from Document</source> - <translation>vom Dokument</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="734"/> - <source>from APIs</source> - <translation>von APIs</translation> + <source>Autocomplete</source> + <translation>Vervollständigen</translation> </message> <message> <location filename="QScintilla/Editor.py" line="737"/> + <source>from Document</source> + <translation>vom Dokument</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="740"/> + <source>from APIs</source> + <translation>von APIs</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="743"/> <source>from Document and APIs</source> <translation>vom Dokument und von APIs</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="903"/> + <location filename="QScintilla/Editor.py" line="909"/> <source>Export as</source> <translation>Exportieren als</translation> </message> <message> + <location filename="QScintilla/Editor.py" line="1154"/> + <source>Export source</source> + <translation>Quelltext exportieren</translation> + </message> + <message> <location filename="QScintilla/Editor.py" line="1148"/> - <source>Export source</source> - <translation>Quelltext exportieren</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1142"/> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Für das Exportformat <b>{0}</b> steht kein Exporter zur Verfügung. Abbruch...</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1148"/> + <location filename="QScintilla/Editor.py" line="1154"/> <source>No export format given. Aborting...</source> <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6077"/> + <location filename="QScintilla/Editor.py" line="6052"/> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6077"/> + <location filename="QScintilla/Editor.py" line="6052"/> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="728"/> + <location filename="QScintilla/Editor.py" line="734"/> <source>dynamic</source> <translation>dynamisch</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="741"/> + <location filename="QScintilla/Editor.py" line="747"/> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="706"/> + <location filename="QScintilla/Editor.py" line="712"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="341"/> + <location filename="QScintilla/Editor.py" line="347"/> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Quelltext Editor Fenster</b><p>Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.</p><p>Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.</p><p>Um Lesezeichen zu setzen, drücken sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.</p><p>Diese Aktionen können über das Kontextmenü umgedreht werden.</p><p>Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="662"/> + <location filename="QScintilla/Editor.py" line="668"/> <source>Typing aids enabled</source> <translation>Eingabehilfen aktiv</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="869"/> + <location filename="QScintilla/Editor.py" line="875"/> <source>End-of-Line Type</source> <translation>Zeilenendemarkierung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="873"/> + <location filename="QScintilla/Editor.py" line="879"/> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="880"/> + <location filename="QScintilla/Editor.py" line="886"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="887"/> + <location filename="QScintilla/Editor.py" line="893"/> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="847"/> + <location filename="QScintilla/Editor.py" line="853"/> <source>Encodings</source> <translation>Kodierungen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="829"/> + <location filename="QScintilla/Editor.py" line="835"/> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1161"/> + <location filename="QScintilla/Editor.py" line="1167"/> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1157"/> + <location filename="QScintilla/Editor.py" line="1163"/> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1177"/> + <location filename="QScintilla/Editor.py" line="1183"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1177"/> + <location filename="QScintilla/Editor.py" line="1183"/> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6365"/> + <location filename="QScintilla/Editor.py" line="6340"/> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="637"/> + <location filename="QScintilla/Editor.py" line="643"/> <source>Check spelling of selection...</source> <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6367"/> + <location filename="QScintilla/Editor.py" line="6342"/> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="6369"/> + <location filename="QScintilla/Editor.py" line="6344"/> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="641"/> + <location filename="QScintilla/Editor.py" line="647"/> <source>Remove from dictionary</source> <translation>Aus dem Wörterbuch entfernen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2617"/> + <location filename="QScintilla/Editor.py" line="2623"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2718"/> + <location filename="QScintilla/Editor.py" line="2724"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5638"/> + <location filename="QScintilla/Editor.py" line="5613"/> <source><p>The file <b>{0}</b> has been changed while it was opened in eric5. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric5 geöffnet war. Neu einlesen?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1053"/> - <source>Next warning</source> - <translation>Nächste Warnung</translation> - </message> - <message> - <location filename="QScintilla/Editor.py" line="1056"/> - <source>Previous warning</source> - <translation>Vorherige Warnung</translation> - </message> - <message> <location filename="QScintilla/Editor.py" line="1059"/> - <source>Show warning message</source> - <translation>Zeige Warnung</translation> + <source>Next warning</source> + <translation>Nächste Warnung</translation> </message> <message> <location filename="QScintilla/Editor.py" line="1062"/> + <source>Previous warning</source> + <translation>Vorherige Warnung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1065"/> + <source>Show warning message</source> + <translation>Zeige Warnung</translation> + </message> + <message> + <location filename="QScintilla/Editor.py" line="1068"/> <source>Clear warnings</source> <translation>Warnungen löschen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5283"/> + <location filename="QScintilla/Editor.py" line="5258"/> <source>py3flakes Warning</source> <translation>py3flakes Warnung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5283"/> + <location filename="QScintilla/Editor.py" line="5258"/> <source>No py3flakes warning message available.</source> <translation>Keine Py3flakes Warnung verfügbar.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="2781"/> + <location filename="QScintilla/Editor.py" line="2787"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5467"/> + <location filename="QScintilla/Editor.py" line="5442"/> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Makro Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5326"/> + <location filename="QScintilla/Editor.py" line="5301"/> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5332"/> + <location filename="QScintilla/Editor.py" line="5307"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="5643"/> + <location filename="QScintilla/Editor.py" line="5618"/> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Warnung:</b> Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4147"/> + <location filename="QScintilla/Editor.py" line="4153"/> <source>Activating Auto-Completion Provider</source> <translation>Aktivierung eines Providers für automatische Vervollständigungen</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4147"/> + <location filename="QScintilla/Editor.py" line="4153"/> <source>Auto-completion provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>Ein Providers für automatische Vervollständigungen kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen sie ihre Konfiguration.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4332"/> + <location filename="QScintilla/Editor.py" line="4338"/> <source>Activating Calltip Provider</source> <translation>Aktivierung eines Providers für Calltips</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="4332"/> + <location filename="QScintilla/Editor.py" line="4338"/> <source>Calltip provider cannot be connected because there is already another one active. Please check your configuration.</source> <translation>Ein Providers für Calltips kann nicht angebunden werden, da bereits ein anderer aktiv ist. Bitte überprüfen sie ihre Konfiguration.</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="703"/> + <location filename="QScintilla/Editor.py" line="709"/> <source>Open 'rejection' file</source> <translation>Öffne "Ablehnungs"-Datei</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="793"/> + <location filename="QScintilla/Editor.py" line="799"/> <source>Load Diagram...</source> <translation>Diagramm laden...</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1102"/> + <location filename="QScintilla/Editor.py" line="1108"/> <source>Next change</source> <translation>Nächste Änderung</translation> </message> <message> - <location filename="QScintilla/Editor.py" line="1105"/> + <location filename="QScintilla/Editor.py" line="1111"/> <source>Previous change</source> <translation>Vorherige Änderung</translation> </message> @@ -8655,12 +8655,12 @@ <translation>Liste der API Dateien</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="131"/> <source>Select API file</source> <translation>Wähle API Datei</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="129"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="131"/> <source>API File (*.api);;All Files (*)</source> <translation>API Dateien (*.api);;Alle Dateien (*)</translation> </message> @@ -8685,7 +8685,7 @@ <translation>Drücken, um eine API Datei aus der Liste installierter API Dateien zu wählen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="180"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="182"/> <source>Add from installed APIs</source> <translation>Von installierten APIs hinzufügen</translation> </message> @@ -8695,17 +8695,17 @@ <translation>Drücke, um die gewählte APIs Zusammenstellung zu übersetzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="227"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="229"/> <source>Compile APIs</source> <translation>APIs übersetzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="170"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="172"/> <source>Select from the list of installed API files</source> <translation>Wähle aus der Liste installierter API Dateien</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="242"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="244"/> <source>Cancel compilation</source> <translation>Übersetzung abbrechen</translation> </message> @@ -8720,17 +8720,17 @@ <translation>Drücken, um eine API Datei aus der Liste von API Dateien, die von Plugins installierter wurden, zu wählen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="196"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="198"/> <source>Add from Plugin APIs</source> <translation>Von Plugin APIs hinzufügen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="196"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="198"/> <source>Select from the list of API files installed by plugins</source> <translation>Wähle aus der Liste von API Dateien, die von Plugins installierter wurden</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="180"/> + <location filename="Preferences/ConfigurationPages/EditorAPIsPage.py" line="182"/> <source>There are no APIs installed yet. Selection is not available.</source> <translation>Es sind noch keine APIs installiert. Die Auswahl ist nicht verfügbar.</translation> </message> @@ -8944,12 +8944,12 @@ <translation>Wähle die Position für die Anzeige der Calltips</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorCalltipsPage.py" line="33"/> + <location filename="Preferences/ConfigurationPages/EditorCalltipsPage.py" line="35"/> <source>Below Text</source> <translation>Unter dem Text</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorCalltipsPage.py" line="35"/> + <location filename="Preferences/ConfigurationPages/EditorCalltipsPage.py" line="37"/> <source>Above Text</source> <translation>Über dem Text</translation> </message> @@ -9145,27 +9145,27 @@ <translation>Wähle den unteren Rand in Punkten (72 pt == 1")</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="43"/> + <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="45"/> <source>Courier</source> <translation>Courier</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="44"/> + <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="46"/> <source>Helvetica</source> <translation>Helvetica</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="45"/> - <source>Times</source> - <translation>Times</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="47"/> + <source>Times</source> + <translation>Times</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="49"/> <source>A4</source> <translation>A4</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="48"/> + <location filename="Preferences/ConfigurationPages/EditorExportersPage.py" line="50"/> <source>Letter</source> <translation>Letter</translation> </message> @@ -9395,22 +9395,22 @@ <translation>Löschen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="223"/> + <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="225"/> <source>Add File Filter</source> <translation>Dateifilter hinzufügen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="185"/> + <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="187"/> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>Ein Dateifilter zum Speichern darf genau ein Wildcard-Muster enthalten. Ihrer enthält {0}.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="193"/> + <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="195"/> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Ein Dateifilter muss mindestens ein Wildcard-Muster enthalten.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="223"/> + <location filename="Preferences/ConfigurationPages/EditorFilePage.py" line="225"/> <source>Enter the file filter entry:</source> <translation>Gib den Dateifilter Eintrag ein:</translation> </message> @@ -9636,7 +9636,7 @@ <translation>Wähle den zuzuordnenden alternativen Lexer</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightersPage.py" line="135"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightersPage.py" line="137"/> <source>Alternative</source> <translation>Alternative</translation> </message> @@ -9664,7 +9664,7 @@ <translation>Wähle den Modus "Füllen bis zum Zeilenende".</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="285"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="287"/> <source>Fill to end of line</source> <translation>Füllen bis zum Zeilenende</translation> </message> @@ -9709,7 +9709,7 @@ <translation>Wähle die Schriftart aus.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="56"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="58"/> <source>Font</source> <translation>Schriftart</translation> </message> @@ -9739,17 +9739,17 @@ <translation>Alle Füllen bis Ende</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="283"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="285"/> <source>Enabled</source> <translation>Eingeschaltet</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="284"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="286"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="285"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="287"/> <source>Select fill to end of line for all styles</source> <translation>Wähle Füllen bis Zeilenende für alle Stile</translation> </message> @@ -9814,42 +9814,42 @@ <translation>Alle Stile exportieren</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="387"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="389"/> <source>Export Highlighting Styles</source> <translation>Hervorhebungsstile exportieren</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="387"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="389"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht in die Datei <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="416"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="418"/> <source>Import Highlighting Styles</source> <translation>Hervorhebungsstile importieren</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="416"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="418"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht von der Datei <b>{0}</b> gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="400"/> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="402"/> <source>Highlighting styles file (*.e4h)</source> <translation>Dateien für Hervorhebungsstile (*.e4h)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> - <source>Family and Size only</source> - <translation>nur Schriftart und Größe</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="61"/> - <source>Family only</source> - <translation>nur Schriftart</translation> + <source>Family and Size only</source> + <translation>nur Schriftart und Größe</translation> </message> <message> <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> + <source>Family only</source> + <translation>nur Schriftart</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> <source>Size only</source> <translation>nur Größe</translation> </message> @@ -10656,17 +10656,17 @@ <translation>Gib die Anzahl Zeilen ein, die pro Durchgang geprüft werden. Größere Werte erhöhen die Prüfgeschwindigkeit, verringern jedoch die Reaktion der Oberfläche</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="100"/> + <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="102"/> <source>Select personal word list</source> <translation>Wähle persönliche Wörterliste</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="114"/> + <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="116"/> <source>Select personal exclude list</source> <translation>Wähle persönliche Ausnahmenliste</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="114"/> + <location filename="Preferences/ConfigurationPages/EditorSpellCheckingPage.py" line="116"/> <source>Dictionary File (*.dic);;All Files (*)</source> <translation>Wörterbuch (*.dic);;Alle Dateien(*)</translation> </message> @@ -11074,7 +11074,7 @@ <translation>Modus:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="49"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="51"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> @@ -11404,32 +11404,32 @@ <translation>Wähle aus, wie umbrochene Zeilen angezeigt werden sollen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="51"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> <source>Word Boundary</source> <translation>Wortgrenze</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> - <source>Character Boundary</source> - <translation>Buchstabengrenze</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> - <source>No Indicator</source> - <translation>keine Anzeige</translation> + <source>Character Boundary</source> + <translation>Buchstabengrenze</translation> </message> <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> - <source>Indicator by Text</source> - <translation>Anzeige neben dem Text</translation> + <source>No Indicator</source> + <translation>keine Anzeige</translation> </message> <message> <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <source>Indicator by Text</source> + <translation>Anzeige neben dem Text</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> <source>Indicator by Margin</source> <translation>Anzeige am Rand</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> + <location filename="Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>Indicator in Line Number Margin</source> <translation>Anzeige in der Zeilennummernspalte</translation> </message> @@ -11673,32 +11673,32 @@ <context> <name>EmailDialog</name> <message> - <location filename="UI/EmailDialog.py" line="323"/> + <location filename="UI/EmailDialog.py" line="325"/> <source>Send bug report</source> <translation>Sende Fehlerbericht</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="339"/> + <location filename="UI/EmailDialog.py" line="341"/> <source>Attach file</source> <translation>Datei anhängen</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="323"/> + <location filename="UI/EmailDialog.py" line="325"/> <source><p>Message could not be sent.<br>Reason: {0}</p></source> <translation><p>Nachricht konnte nicht gesendet werden.<br>Grund: {0}</p></translation> </message> <message> - <location filename="UI/EmailDialog.py" line="282"/> + <location filename="UI/EmailDialog.py" line="284"/> <source>Mail Server Password</source> <translation>Mail Server Kennwort</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="282"/> + <location filename="UI/EmailDialog.py" line="284"/> <source>Enter your mail server password</source> <translation>Geben sie ihr Mail Server Kennwort ein</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="300"/> + <location filename="UI/EmailDialog.py" line="302"/> <source><p>Authentication failed.<br>Reason: {0}</p></source> <translation><p>Autorisierung fehlgeschlagen.<br>Grund: {0}</p></translation> </message> @@ -11753,17 +11753,17 @@ <translation>Typ</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="88"/> + <location filename="UI/EmailDialog.py" line="90"/> <source>Send</source> <translation>Senden</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="137"/> + <location filename="UI/EmailDialog.py" line="139"/> <source>Close dialog</source> <translation>Dialog schließen</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="137"/> + <location filename="UI/EmailDialog.py" line="139"/> <source>Do you really want to close the dialog?</source> <translation>Soll der Dialog wirklich geschlossen werden?</translation> </message> @@ -11778,17 +11778,17 @@ <translation>Anhänge</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="76"/> + <location filename="UI/EmailDialog.py" line="78"/> <source>Enter your &feature request below. Version information is added automatically.</source> <translation>Gib die Beschreibung der gewünschten &Funktion ein. Versionsinformationen werden automatisch angefügt.</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="82"/> + <location filename="UI/EmailDialog.py" line="84"/> <source>Enter your &bug description below. Version information is added automatically.</source> <translation>Gib die &Fehlerbeschreibung ein. Versionsinformationen werden automatisch angefügt.</translation> </message> <message> - <location filename="UI/EmailDialog.py" line="75"/> + <location filename="UI/EmailDialog.py" line="77"/> <source>Send feature request</source> <translation>Sende Anfrage für neue Funktion</translation> </message> @@ -11891,17 +11891,17 @@ <translation>Anmeldung testen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EmailPage.py" line="161"/> + <location filename="Preferences/ConfigurationPages/EmailPage.py" line="163"/> <source>Login Test</source> <translation>Anmeldetest</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EmailPage.py" line="127"/> + <location filename="Preferences/ConfigurationPages/EmailPage.py" line="129"/> <source>The login test succeeded.</source> <translation>Der Anmeldetest war erfolgreich.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/EmailPage.py" line="161"/> + <location filename="Preferences/ConfigurationPages/EmailPage.py" line="163"/> <source><p>The login test failed.<br>Reason: {0}</p></source> <translation><p>Der Anmeldetest ist fehlgeschlagen.<br>Ursache: {0}</p></translation> </message> @@ -11909,67 +11909,67 @@ <context> <name>EricAccessHandler</name> <message> - <location filename="Helpviewer/Network/EricAccessHandler.py" line="85"/> + <location filename="Helpviewer/Network/EricAccessHandler.py" line="87"/> <source>Speed Dial</source> <translation>Schnellwahl</translation> </message> <message> - <location filename="Helpviewer/Network/EricAccessHandler.py" line="86"/> - <source>URL</source> - <translation>URL</translation> - </message> - <message> - <location filename="Helpviewer/Network/EricAccessHandler.py" line="87"/> - <source>Title</source> - <translation>Titel</translation> - </message> - <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="88"/> - <source>Apply</source> - <translation>Anwenden</translation> + <source>URL</source> + <translation>URL</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="89"/> - <source>New Page</source> - <translation>Neue Seite</translation> + <source>Title</source> + <translation>Titel</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="90"/> - <source>Edit</source> - <translation>Bearbeiten</translation> + <source>Apply</source> + <translation>Anwenden</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="91"/> - <source>Remove</source> - <translation>Entfernen</translation> + <source>New Page</source> + <translation>Neue Seite</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="92"/> - <source>Reload</source> - <translation>Erneut laden</translation> + <source>Edit</source> + <translation>Bearbeiten</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="93"/> - <source>Load title from page</source> - <translation>Titel von der Seite laden</translation> + <source>Remove</source> + <translation>Entfernen</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="94"/> - <source>Speed Dial Settings</source> - <translation>Schnellwahleinstellungen</translation> + <source>Reload</source> + <translation>Erneut laden</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="95"/> - <source>Add New Page</source> - <translation>Neue Seite hinzufügen</translation> + <source>Load title from page</source> + <translation>Titel von der Seite laden</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="96"/> - <source>Maximum pages in a row:</source> - <translation>Maximale Zahl an Seiten pro Zeile:</translation> + <source>Speed Dial Settings</source> + <translation>Schnellwahleinstellungen</translation> </message> <message> <location filename="Helpviewer/Network/EricAccessHandler.py" line="97"/> + <source>Add New Page</source> + <translation>Neue Seite hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/Network/EricAccessHandler.py" line="98"/> + <source>Maximum pages in a row:</source> + <translation>Maximale Zahl an Seiten pro Zeile:</translation> + </message> + <message> + <location filename="Helpviewer/Network/EricAccessHandler.py" line="99"/> <source>Change size of pages:</source> <translation>Größe der Seiten ändern:</translation> </message> @@ -11977,12 +11977,12 @@ <context> <name>EricapiConfigDialog</name> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="170"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="172"/> <source>Select output file</source> <translation>Wähle eine Ausgabedatei</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="201"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="203"/> <source>Select directory to exclude</source> <translation>Wähle ein zu ignorierendes Verzeichnis</translation> </message> @@ -12077,7 +12077,7 @@ <translation>Liste von zu ignorierenden Verzeichnisnamen</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="170"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiConfigDialog.py" line="172"/> <source>API files (*.api);;All files (*)</source> <translation>API Dateien (*.api);;Alle Dateien (*)</translation> </message> @@ -12144,22 +12144,22 @@ <p>Dies zeigt die Fehler des Ericapi Befehls.</p></translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="81"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="85"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="91"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="85"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="91"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="123"/> + <location filename="Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="129"/> <source> {0} finished. </source> @@ -12181,27 +12181,27 @@ <context> <name>EricapiPlugin</name> <message> - <location filename="Plugins/PluginEricapi.py" line="53"/> + <location filename="Plugins/PluginEricapi.py" line="55"/> <source>Eric5 API File Generator</source> <translation>Eric5 API-Datei Generator</translation> </message> <message> - <location filename="Plugins/PluginEricapi.py" line="94"/> + <location filename="Plugins/PluginEricapi.py" line="96"/> <source>Generate API file (eric5_api)</source> <translation>Erzeuge API Datei (eric5_api)</translation> </message> <message> - <location filename="Plugins/PluginEricapi.py" line="94"/> + <location filename="Plugins/PluginEricapi.py" line="96"/> <source>Generate &API file (eric5_api)</source> <translation>Erzeuge &API Datei (eric5_api)</translation> </message> <message> - <location filename="Plugins/PluginEricapi.py" line="97"/> - <source>Generate an API file using eric5_api</source> - <translation>Erzeuge eine API Datei unter Verwendung von eric5_api</translation> - </message> - <message> <location filename="Plugins/PluginEricapi.py" line="99"/> + <source>Generate an API file using eric5_api</source> + <translation>Erzeuge eine API Datei unter Verwendung von eric5_api</translation> + </message> + <message> + <location filename="Plugins/PluginEricapi.py" line="101"/> <source><b>Generate API file</b><p>Generate an API file using eric5_api.</p></source> <translation><b>Erzeuge API Datei</b><p>Erzeuge eine API Datei unter Verwendung von eric5_api.</p></translation> </message> @@ -12209,22 +12209,22 @@ <context> <name>EricdocConfigDialog</name> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="262"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="264"/> <source>Select output directory</source> <translation>Wähle ein Ausgabeverzeichnis</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="287"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="289"/> <source>Select directory to exclude</source> <translation>Wähle ein zu ignorierendes Verzeichnis</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="327"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="329"/> <source>Style sheet (*.css);;All files (*)</source> <translation>Style Sheet (*.css);;Alle Dateien (*)</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="327"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="329"/> <source>Select CSS style sheet</source> <translation>Wähle ein CSS Style Sheet</translation> </message> @@ -12524,7 +12524,7 @@ <translation>Gib einen Kurztitel für den obersten Eintrag ein</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="475"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="477"/> <source>Select output directory for QtHelp files</source> <translation>Wähle das Verzeichnis für die QtHelp Dateien</translation> </message> @@ -12539,7 +12539,7 @@ <translation>Erzeuge QtHelp Kollektionsdateien</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="46"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="48"/> <source><?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title></title></head><body style="background-color:{BodyBgColor};color:{BodyColor}"><h1 style="background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}">Level 1 Header</h1><h3 style="background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}">Level 2 Header</h3><h2 style="background-color:{CFBgColor};color:{CFColor}">Class and Function Header</h2>Standard body text with <a style="color:{LinkColor}">some links</a> embedded.</body></html></source> <translation><?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title></title></head><body style="background-color:{BodyBgColor};color:{BodyColor}"><h1 style="background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}">Ebene 1 Titel</h1><h3 style="background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}">Ebene 2 Titel</h3><h2 style="background-color:{CFBgColor};color:{CFColor}">Klassen und Funktionen Titel</h2>Normaler Text mit eingebetteten <a style="color:{LinkColor}">Verweisen</a>.</body></html></translation> </message> @@ -12566,22 +12566,22 @@ <p>Dies zeigt die Ausgaben des Ericdoc Befehls.</p></translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="81"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="85"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="91"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="85"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="91"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="123"/> + <location filename="Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/> <source> {0} finished. </source> @@ -12603,32 +12603,32 @@ <context> <name>EricdocPlugin</name> <message> - <location filename="Plugins/PluginEricdoc.py" line="54"/> + <location filename="Plugins/PluginEricdoc.py" line="56"/> <source>Eric5 Documentation Generator</source> <translation>Eric5 Dokumentationsgenerator</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="130"/> + <location filename="Plugins/PluginEricdoc.py" line="132"/> <source>Generate documentation (eric5_doc)</source> <translation>Erzeuge Dokumentation (eric5_doc)</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="130"/> + <location filename="Plugins/PluginEricdoc.py" line="132"/> <source>Generate &documentation (eric5_doc)</source> <translation>Erzeuge &Dokumentation (eric5_doc)</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="133"/> - <source>Generate API documentation using eric5_doc</source> - <translation>Erzeuge die API Dokumentation unter Verwendung von eric_doc</translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="135"/> + <source>Generate API documentation using eric5_doc</source> + <translation>Erzeuge die API Dokumentation unter Verwendung von eric_doc</translation> + </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="137"/> <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation><b>Erzeuge Dokumentation</b><p>Erzeuge die API Dokumentation unter Verwendung von eric5_doc.</p></translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="86"/> + <location filename="Plugins/PluginEricdoc.py" line="88"/> <source>Qt Help Tools</source> <translation>Qt Help Werkzeuge</translation> </message> @@ -12679,37 +12679,37 @@ <context> <name>ExceptionLogger</name> <message> - <location filename="Debugger/ExceptionLogger.py" line="36"/> + <location filename="Debugger/ExceptionLogger.py" line="38"/> <source>Exceptions</source> <translation>Ausnahmen</translation> </message> <message> - <location filename="Debugger/ExceptionLogger.py" line="40"/> + <location filename="Debugger/ExceptionLogger.py" line="42"/> <source>Exception</source> <translation>Ausnahme</translation> </message> <message> - <location filename="Debugger/ExceptionLogger.py" line="47"/> + <location filename="Debugger/ExceptionLogger.py" line="49"/> <source><b>Exceptions Logger</b><p>This windows shows a trace of all exceptions, that have occured during the last debugging session. Initially only the exception type and exception message are shown. After the expansion of this entry, the complete call stack as reported by the client is show with the most recent call first.</p></source> <translation><b>Ausnahmen</b><p>Dieses Fenster zeigt alle Ausnahmen, die während der letzten Debug-Sitzung aufgetreten sind. Zunächst wird nur der Ausnahmetyp und die Ausnahmenachricht angezeigt. Nach Aufklappen des Eintrages wird die gesamte Aufrufhierarchy, wie sie vom Client gemeldet wurde, mit dem aktuellsten Auruf zuerst angezeigt.</p></translation> </message> <message> - <location filename="Debugger/ExceptionLogger.py" line="57"/> + <location filename="Debugger/ExceptionLogger.py" line="59"/> <source>Show source</source> <translation>Zeige Quelltext</translation> </message> <message> - <location filename="Debugger/ExceptionLogger.py" line="63"/> - <source>Clear</source> - <translation>Löschen</translation> - </message> - <message> - <location filename="Debugger/ExceptionLogger.py" line="98"/> - <source>An unhandled exception occured. See the shell window for details.</source> - <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation> - </message> - <message> <location filename="Debugger/ExceptionLogger.py" line="65"/> + <source>Clear</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="Debugger/ExceptionLogger.py" line="100"/> + <source>An unhandled exception occured. See the shell window for details.</source> + <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation> + </message> + <message> + <location filename="Debugger/ExceptionLogger.py" line="67"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> @@ -12771,12 +12771,12 @@ <translation>Alle Löschen</translation> </message> <message> - <location filename="Debugger/ExceptionsFilterDialog.py" line="35"/> + <location filename="Debugger/ExceptionsFilterDialog.py" line="37"/> <source>Ignored Exceptions</source> <translation>Ignorierte Ausnahmen</translation> </message> <message> - <location filename="Debugger/ExceptionsFilterDialog.py" line="36"/> + <location filename="Debugger/ExceptionsFilterDialog.py" line="38"/> <source>List of ignored exceptions</source> <translation>Liste der ignorierten Ausnahmen</translation> </message> @@ -12784,7 +12784,7 @@ <context> <name>Exporter</name> <message> - <location filename="QScintilla/Exporters/ExporterBase.py" line="41"/> + <location filename="QScintilla/Exporters/ExporterBase.py" line="43"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> @@ -12792,12 +12792,12 @@ <context> <name>ExporterBase</name> <message> - <location filename="QScintilla/Exporters/ExporterBase.py" line="57"/> + <location filename="QScintilla/Exporters/ExporterBase.py" line="59"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterBase.py" line="57"/> + <location filename="QScintilla/Exporters/ExporterBase.py" line="59"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> @@ -12805,17 +12805,17 @@ <context> <name>ExporterHTML</name> <message> - <location filename="QScintilla/Exporters/ExporterHTML.py" line="398"/> + <location filename="QScintilla/Exporters/ExporterHTML.py" line="400"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterHTML.py" line="398"/> + <location filename="QScintilla/Exporters/ExporterHTML.py" line="400"/> <source><p>The source could not be exported to <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Der Quelltext konnte nicht nach <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterHTML.py" line="365"/> + <location filename="QScintilla/Exporters/ExporterHTML.py" line="367"/> <source>HTML Files (*.html)</source> <translation>HTML Dateien (*.html)</translation> </message> @@ -12823,17 +12823,17 @@ <context> <name>ExporterODT</name> <message> - <location filename="QScintilla/Exporters/ExporterODT.py" line="38"/> + <location filename="QScintilla/Exporters/ExporterODT.py" line="40"/> <source>ODT Files (*.odt)</source> <translation>ODT Dateien (*.odt)</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterODT.py" line="70"/> + <location filename="QScintilla/Exporters/ExporterODT.py" line="72"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterODT.py" line="70"/> + <location filename="QScintilla/Exporters/ExporterODT.py" line="72"/> <source><p>The source could not be exported to <b>{0}</b>.</p></source> <translation><p>Der Quelltext konnte nicht nach <b>{0}</b> exportiert werden.</p></translation> </message> @@ -12841,17 +12841,17 @@ <context> <name>ExporterPDF</name> <message> - <location filename="QScintilla/Exporters/ExporterPDF.py" line="410"/> + <location filename="QScintilla/Exporters/ExporterPDF.py" line="412"/> <source>PDF Files (*.pdf)</source> <translation>PDF Dateien (*.pdf)</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterPDF.py" line="586"/> + <location filename="QScintilla/Exporters/ExporterPDF.py" line="588"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterPDF.py" line="586"/> + <location filename="QScintilla/Exporters/ExporterPDF.py" line="588"/> <source><p>The source could not be exported to <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Der Quelltext konnte nicht nach <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> @@ -12859,17 +12859,17 @@ <context> <name>ExporterRTF</name> <message> - <location filename="QScintilla/Exporters/ExporterRTF.py" line="114"/> + <location filename="QScintilla/Exporters/ExporterRTF.py" line="116"/> <source>RTF Files (*.rtf)</source> <translation>RTF Dateien (*.rtf)</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterRTF.py" line="340"/> + <location filename="QScintilla/Exporters/ExporterRTF.py" line="342"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterRTF.py" line="340"/> + <location filename="QScintilla/Exporters/ExporterRTF.py" line="342"/> <source><p>The source could not be exported to <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Der Quelltext konnte nicht nach <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> @@ -12877,17 +12877,17 @@ <context> <name>ExporterTEX</name> <message> - <location filename="QScintilla/Exporters/ExporterTEX.py" line="108"/> + <location filename="QScintilla/Exporters/ExporterTEX.py" line="110"/> <source>TeX Files (*.tex)</source> <translation>TeX Dateien (*.tex)</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterTEX.py" line="259"/> + <location filename="QScintilla/Exporters/ExporterTEX.py" line="261"/> <source>Export source</source> <translation>Quelltext exportieren</translation> </message> <message> - <location filename="QScintilla/Exporters/ExporterTEX.py" line="259"/> + <location filename="QScintilla/Exporters/ExporterTEX.py" line="261"/> <source><p>The source could not be exported to <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Der Quelltext konnte nicht nach <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> @@ -12895,27 +12895,27 @@ <context> <name>Exporters</name> <message> - <location filename="QScintilla/Exporters/__init__.py" line="22"/> + <location filename="QScintilla/Exporters/__init__.py" line="24"/> <source>HTML</source> <translation>HTML</translation> </message> <message> - <location filename="QScintilla/Exporters/__init__.py" line="23"/> - <source>RTF</source> - <translation>RTF</translation> - </message> - <message> - <location filename="QScintilla/Exporters/__init__.py" line="24"/> - <source>PDF</source> - <translation>PDF</translation> - </message> - <message> <location filename="QScintilla/Exporters/__init__.py" line="25"/> - <source>TeX</source> - <translation>TeX</translation> + <source>RTF</source> + <translation>RTF</translation> </message> <message> <location filename="QScintilla/Exporters/__init__.py" line="26"/> + <source>PDF</source> + <translation>PDF</translation> + </message> + <message> + <location filename="QScintilla/Exporters/__init__.py" line="27"/> + <source>TeX</source> + <translation>TeX</translation> + </message> + <message> + <location filename="QScintilla/Exporters/__init__.py" line="28"/> <source>ODT</source> <translation>ODT</translation> </message> @@ -12966,22 +12966,22 @@ <translation>Feeds von dieser Seite hinzufügen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsDialog.py" line="43"/> + <location filename="Helpviewer/Feeds/FeedsDialog.py" line="45"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsDialog.py" line="89"/> + <location filename="Helpviewer/Feeds/FeedsDialog.py" line="91"/> <source>Add RSS Feed</source> <translation>RSS Feed hinzufügen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsDialog.py" line="85"/> + <location filename="Helpviewer/Feeds/FeedsDialog.py" line="87"/> <source>The feed was added successfully.</source> <translation>Der Feed wurde erfolgreich hinzugefügt.</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsDialog.py" line="89"/> + <location filename="Helpviewer/Feeds/FeedsDialog.py" line="91"/> <source>The feed was already added before.</source> <translation>Der Feed wurde bereits früher hinzugefügt.</translation> </message> @@ -13039,52 +13039,52 @@ <translation>Feed &löschen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="173"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="179"/> <source>Duplicate Feed URL</source> <translation>Doppelte Feed URL</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="173"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="179"/> <source>A feed with the URL {0} exists already. Aborting...</source> <translation>Ein Feed mit der URL {0} existiert bereits. Abbruch...</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="193"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="199"/> <source>Delete Feed</source> <translation>Feed löschen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="193"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="199"/> <source><p>Do you really want to delete the feed <b>{0}</b>?</p></source> <translation><p>Soll der Feed <b>{0}</b> wirklich gelöscht werden?</p></translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="300"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="306"/> <source>Error fetching feed</source> <translation>Fehler beim Laden des Feeds</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="329"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="335"/> <source>&Open</source> <translation>Ö&ffnen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="330"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="336"/> <source>Open in New &Tab</source> <translation>In neuem &Register öffnen</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="332"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="338"/> <source>&Copy URL to Clipboard</source> <translation>URL in die Zwischenablage &kopieren</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="339"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="345"/> <source>&Show error data</source> <translation>&Zeige Fehlerdaten</translation> </message> <message> - <location filename="Helpviewer/Feeds/FeedsManager.py" line="415"/> + <location filename="Helpviewer/Feeds/FeedsManager.py" line="421"/> <source>Error loading feed</source> <translation>Fehler beim Laden des Feeds</translation> </message> @@ -13092,7 +13092,7 @@ <context> <name>Fetch</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/fetch.py" line="59"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/fetch.py" line="61"/> <source>Fetching from a remote Mercurial repository</source> <translation>Fetch von einem entfernten Mercurial Repository</translation> </message> @@ -13100,27 +13100,27 @@ <context> <name>FetchProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="34"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="36"/> <source>Fetch changes</source> <translation>Änderungen herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="38"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="40"/> <source>Fetch changes from a remote repository</source> <translation>Änderungen von einem entfernten Repository herunterladen und einarbeiten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="41"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="43"/> <source><b>Fetch changes</b><p>This pulls changes from a remote repository into the local repository. If the pulled changes add a new branch head, the head is automatically merged, and the result of the merge is committed. Otherwise, the working directory is updated to include the new changes.</p></source> <translation><b>Änderungen herunterladen</b><p>Dies lädt Änderungen von einem entfernten Repository in das lokale Repository herunter. Wenn die heruntergeladenen Änderungen einen neuen Kopf erzeugen, so werden die Köpfe automatisch zusammengeführt und das Ergebnis eingepflegt. Abschließend wird das Arbeitsverzeichnis mit den neuen Änderungen aktualisiert.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="84"/> <source>Fetch</source> <translation>Fetch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/FetchExtension/ProjectHelper.py" line="84"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> @@ -13128,27 +13128,27 @@ <context> <name>FileDialogWizard</name> <message> - <location filename="Plugins/PluginWizardQFileDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQFileDialog.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQFileDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQFileDialog.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQFileDialog.py" line="73"/> + <location filename="Plugins/PluginWizardQFileDialog.py" line="75"/> <source>QFileDialog Wizard</source> <translation>QFileDialog Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQFileDialog.py" line="70"/> + <location filename="Plugins/PluginWizardQFileDialog.py" line="72"/> <source>Q&FileDialog Wizard...</source> <translation>Q&FileDialog Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQFileDialog.py" line="74"/> + <location filename="Plugins/PluginWizardQFileDialog.py" line="76"/> <source><b>QFileDialog Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QFileDialog. The generated code is inserted at the current cursor position.</p></source> <translation><b>QFileDialog Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QFileDialog benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -13296,7 +13296,7 @@ <translation>nur Verzeichnisse anzeigen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py" line="49"/> + <location filename="Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py" line="51"/> <source>Test</source> <translation>Test</translation> </message> @@ -13334,25 +13334,25 @@ <context> <name>FileReply</name> <message> - <location filename="Helpviewer/Network/FileReply.py" line="203"/> + <location filename="Helpviewer/Network/FileReply.py" line="209"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation> <p><a class="link_parent" href="{0}">In den übergeordneten Ordner wechseln</a></p></translation> </message> <message> - <location filename="Helpviewer/Network/FileReply.py" line="216"/> + <location filename="Helpviewer/Network/FileReply.py" line="222"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation> <tr><th align="left">Name</th><th>Größe</th><th align="left">Zuletzt verändert</th></tr> </translation> </message> <message> - <location filename="Helpviewer/Network/FileReply.py" line="242"/> + <location filename="Helpviewer/Network/FileReply.py" line="248"/> <source>{0} {1}</source> <comment>size unit</comment> <translation>{0} {1}</translation> </message> <message> - <location filename="Helpviewer/Network/FileReply.py" line="266"/> + <location filename="Helpviewer/Network/FileReply.py" line="272"/> <source>Listing of {0}</source> <translation>Index von {0}</translation> </message> @@ -13360,22 +13360,22 @@ <context> <name>FiletypeAssociationDialog</name> <message> - <location filename="Project/FiletypeAssociationDialog.py" line="37"/> + <location filename="Project/FiletypeAssociationDialog.py" line="39"/> <source>Sources</source> <translation>Quellen</translation> </message> <message> - <location filename="Project/FiletypeAssociationDialog.py" line="37"/> - <source>Forms</source> - <translation>Formulare</translation> - </message> - <message> <location filename="Project/FiletypeAssociationDialog.py" line="39"/> + <source>Forms</source> + <translation>Formulare</translation> + </message> + <message> + <location filename="Project/FiletypeAssociationDialog.py" line="41"/> <source>Interfaces</source> <translation>Schnittstellen</translation> </message> <message> - <location filename="Project/FiletypeAssociationDialog.py" line="39"/> + <location filename="Project/FiletypeAssociationDialog.py" line="41"/> <source>Others</source> <translation>Sonstige</translation> </message> @@ -13435,17 +13435,17 @@ <translation>Hinzufügen/Ändern</translation> </message> <message> - <location filename="Project/FiletypeAssociationDialog.py" line="38"/> + <location filename="Project/FiletypeAssociationDialog.py" line="40"/> <source>Resources</source> <translation>Resourcen</translation> </message> <message> - <location filename="Project/FiletypeAssociationDialog.py" line="38"/> - <source>Translations</source> - <translation>Übersetzungen</translation> - </message> - <message> <location filename="Project/FiletypeAssociationDialog.py" line="40"/> + <source>Translations</source> + <translation>Übersetzungen</translation> + </message> + <message> + <location filename="Project/FiletypeAssociationDialog.py" line="42"/> <source>Ignore</source> <translation>Ignorieren</translation> </message> @@ -13453,7 +13453,7 @@ <context> <name>FindFileDialog</name> <message> - <location filename="UI/FindFileDialog.py" line="534"/> + <location filename="UI/FindFileDialog.py" line="536"/> <source>Select directory</source> <translation>Wähle ein Verzeichnis</translation> </message> @@ -13588,12 +13588,12 @@ <translation>Text</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="66"/> + <location filename="UI/FindFileDialog.py" line="68"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="61"/> + <location filename="UI/FindFileDialog.py" line="63"/> <source>Stop</source> <translation>Anhalten</translation> </message> @@ -13648,17 +13648,17 @@ <translation>Ersetzen</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="643"/> + <location filename="UI/FindFileDialog.py" line="645"/> <source>Replace in Files</source> <translation>Ersetzen in Dateien</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="604"/> + <location filename="UI/FindFileDialog.py" line="606"/> <source><p>Could not read the file <b>{0}</b>. Skipping it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gelesen werden. Überspringe sie.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="643"/> + <location filename="UI/FindFileDialog.py" line="645"/> <source><p>Could not save the file <b>{0}</b>. Skipping it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden. Überspringe sie.</p><p>Ursache: {1}</p></translation> </message> @@ -13683,27 +13683,27 @@ <translation>Ersttreffer öffnen</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="669"/> + <location filename="UI/FindFileDialog.py" line="671"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="670"/> + <location filename="UI/FindFileDialog.py" line="672"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="369"/> + <location filename="UI/FindFileDialog.py" line="371"/> <source>Invalid search expression</source> <translation>Ungültiger Suchausdruck</translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="369"/> + <location filename="UI/FindFileDialog.py" line="371"/> <source><p>The search expression is not valid.</p><p>Error: {0}</p></source> <translation><p>Der Suchausdruck ist nicht gültig.</p><p>Fehler: {0}</p></translation> </message> <message> - <location filename="UI/FindFileDialog.py" line="618"/> + <location filename="UI/FindFileDialog.py" line="620"/> <source><p>The current and the original hash of the file <b>{0}</b> are different. Skipping it.</p><p>Hash 1: {1}</p><p>Hash 2: {2}</p></source> <translation><p>Der aktuelle und der originale Hash-Wert der Datei <b>{0}</b> sind unterschiedlich. Überspringe sie.</p><p>Hash 1: {1}</p><p>Hash 2: {2}</p></translation> </message> @@ -13801,22 +13801,22 @@ <translation>Pfad</translation> </message> <message> - <location filename="UI/FindFileNameDialog.py" line="57"/> + <location filename="UI/FindFileNameDialog.py" line="59"/> <source>Opens the selected file</source> <translation>Öffnet die ausgewählte Datei</translation> </message> <message> - <location filename="UI/FindFileNameDialog.py" line="55"/> + <location filename="UI/FindFileNameDialog.py" line="57"/> <source>Press to stop the search</source> <translation>Drücken, um die Suche anzuhalten</translation> </message> <message> - <location filename="UI/FindFileNameDialog.py" line="190"/> + <location filename="UI/FindFileNameDialog.py" line="192"/> <source>Select search directory</source> <translation>Wähle das Suchverzeichnis</translation> </message> <message> - <location filename="UI/FindFileNameDialog.py" line="54"/> + <location filename="UI/FindFileNameDialog.py" line="56"/> <source>Stop</source> <translation>Anhalten</translation> </message> @@ -13824,34 +13824,34 @@ <context> <name>FirefoxImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="38"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="40"/> <source>Mozilla Firefox stores its bookmarks in the <b>places.sqlite</b> SQLite database. This file is usually located in</source> <translation>Mozilla Firefox speichert die Lesezeichen in der SQLite Datenbank <b>places.sqlite</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="38"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="40"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="85"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="87"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="159"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="161"/> <source>Unable to open database. Reason: {0}</source> <translation>Die Datenbank kann nicht geöffnet werden. Ursache: {0}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="165"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="167"/> <source>Mozilla Firefox Import</source> <translation>Mozilla Firefox Import</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="167"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/FirefoxImporter.py" line="169"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> @@ -13859,27 +13859,27 @@ <context> <name>FontDialogWizard</name> <message> - <location filename="Plugins/PluginWizardQFontDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQFontDialog.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQFontDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQFontDialog.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQFontDialog.py" line="73"/> + <location filename="Plugins/PluginWizardQFontDialog.py" line="75"/> <source>QFontDialog Wizard</source> <translation>QFontDialog Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQFontDialog.py" line="70"/> + <location filename="Plugins/PluginWizardQFontDialog.py" line="72"/> <source>Q&FontDialog Wizard...</source> <translation>QF&ontDialog Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQFontDialog.py" line="74"/> + <location filename="Plugins/PluginWizardQFontDialog.py" line="76"/> <source><b>QFontDialog Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QFontDialog. The generated code is inserted at the current cursor position.</p></source> <translation><b>QFontDialog Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QFontDialog benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -13912,7 +13912,7 @@ <translation>Gib einen Variablennamen ein</translation> </message> <message> - <location filename="Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py" line="35"/> + <location filename="Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py" line="37"/> <source>Test</source> <translation>Test</translation> </message> @@ -13920,37 +13920,37 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="398"/> + <location filename="Helpviewer/Network/FtpReply.py" line="404"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation> <p><a class="link_parent" href="{0}">In den übergeordneten Ordner wechseln</a></p></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="411"/> + <location filename="Helpviewer/Network/FtpReply.py" line="417"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation> <tr><th align="left">Name</th><th>Größe</th><th align="left">Zuletzt verändert</th></tr> </translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="437"/> + <location filename="Helpviewer/Network/FtpReply.py" line="443"/> <source>{0} {1}</source> <comment>size unit</comment> <translation>{0} {1}</translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="461"/> + <location filename="Helpviewer/Network/FtpReply.py" line="467"/> <source>Listing of {0}</source> <translation>Index von {0}</translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="263"/> + <location filename="Helpviewer/Network/FtpReply.py" line="269"/> <source>The proxy type seems to be wrong. If it is not in the list of supported proxy types please report it with the instructions given by the proxy. {0}</source> <translation>Der Proxytyp scheint nicht richtig zu sein. Falls er nicht in der Liste der unterstützten Proxytypen ist, berichte dies bitte unter Angabe der vom Proxy gesendeten Anweisungen. {0}</translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="273"/> + <location filename="Helpviewer/Network/FtpReply.py" line="279"/> <source><b>Connect to proxy '{0}' using:</b></source> <translation><b>Verbinden zu Proxy '{0}' mit:</b></translation> </message> @@ -13958,17 +13958,17 @@ <context> <name>FtpSyncHandler</name> <message> - <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="307"/> + <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="309"/> <source>Cannot log in to FTP host.</source> <translation>Anmeldung am FTP Server fehlgeschlagen.</translation> </message> <message> - <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="314"/> + <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="316"/> <source>Synchronization finished.</source> <translation>Synchronisation beendet.</translation> </message> <message> - <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="250"/> + <location filename="Helpviewer/Sync/FtpSyncHandler.py" line="252"/> <source>No synchronization required.</source> <translation>Keine Synchronisation erforderlich.</translation> </message> @@ -14001,12 +14001,12 @@ <context> <name>Gpg</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="85"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="87"/> <source>Verify Signatures</source> <translation>Signaturen verifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="132"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/gpg.py" line="134"/> <source>Sign Revision</source> <translation>Revision signieren</translation> </message> @@ -14014,57 +14014,57 @@ <context> <name>GpgProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="33"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="35"/> <source>List Signed Changesets</source> <translation>Signierte Änderungssätze auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="33"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="35"/> <source>List Signed Changesets...</source> <translation>Signierte Änderungssätze auflisten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="37"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="39"/> <source>List signed changesets</source> <translation>Signierte Änderungssätze auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="40"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="42"/> <source><b>List Signed Changesets</b><p>This opens a dialog listing all signed changesets.</p></source> <translation><b>Signierte Änderungssätze auflisten</b><p>Dies öffnet einen Dialog, der alle signierten Änderungssätze anzeigt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="47"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="49"/> <source>Verify Signatures</source> <translation>Signaturen verifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="53"/> <source>Verify all signatures there may be for a particular revision</source> <translation>Alle Signaturen einer ausgewählten Revision verifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="56"/> <source><b>Verify Signatures</b><p>This verifies all signatures there may be for a particular revision.</p></source> <translation><b>Signaturen verifizieren</b><p>Dies verifiziert alle Signaturen einer ausgewählten Revision.</p<</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="62"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="64"/> <source>Sign Revision</source> <translation>Revision signieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="66"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="68"/> <source>Add a signature for a selected revision</source> <translation>Einer ausgewählten Revision eine Signatur hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="71"/> <source><b>Sign Revision</b><p>This adds a signature for a selected revision.</p></source> <translation><b>Revision signieren</b><p>Dies fügt einer ausgewählten Revision eine Signatur hinzu.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/ProjectHelper.py" line="101"/> <source>GPG</source> <translation>GPG</translation> </message> @@ -14090,7 +14090,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="96"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="98"/> <source>GreaseMonkey Script Installation</source> <translation>GreaseMonkey Skript Installation</translation> </message> @@ -14125,22 +14125,22 @@ <translation>Quelltext des Skriptes anzeigen</translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="50"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="52"/> <source><p>runs at:<br/><i>{0}</i></p></source> <translation><b>ausgeführt für:<br/><i>{0}</i></p></translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="54"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="56"/> <source><p>does not run at:<br/><i>{0}</i></p></source> <translation><p>nicht ausgeführt für:<br/><i>{0}</i></p></translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="82"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="84"/> <source><p><b>{0}</b> installed successfully.</p></source> <translation><p><b>{0}</b> wurde erfolgreich installiert.</p></translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="86"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="88"/> <source><p>Cannot install script.</p></source> <translation><p>Skript kann nicht installiert werden.</p></translation> </message> @@ -14168,12 +14168,12 @@ <translation>Skripteverzeichnis öffnen</translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py" line="134"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py" line="136"/> <source>Remove Script</source> <translation>Skript entfernen</translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py" line="134"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationDialog.py" line="136"/> <source><p>Are you sure you want to remove <b>{0}</b>?</p></source> <translation><p>Sind sie sicher, dass das Skript <b>{0}</b> entfernt werden soll?</p></translation> </message> @@ -14241,7 +14241,7 @@ <translation>Quelltext des Skriptes anzeigen</translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationScriptInfoDialog.py" line="40"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationScriptInfoDialog.py" line="42"/> <source>Script Details of {0}</source> <translation>Skript Details für {0}</translation> </message> @@ -14249,17 +14249,17 @@ <context> <name>GreaseMonkeyDownloader</name> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="154"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="156"/> <source>GreaseMonkey Download</source> <translation>GreaseMonkey Download</translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="114"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="116"/> <source><p>The file <b>{0}</b> could not be opened for writing.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht zum Schreiben geöffnet werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="154"/> + <location filename="Helpviewer/GreaseMonkey/GreaseMonkeyDownloader.py" line="156"/> <source><p><b>{0}</b> is already installed.</p></source> <translation><p><b>{0}</b> ist bereits installiert.</p></translation> </message> @@ -14347,7 +14347,7 @@ <translation>...</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpAppearancePage.py" line="126"/> + <location filename="Preferences/ConfigurationPages/HelpAppearancePage.py" line="128"/> <source>Select Style Sheet</source> <translation>Wähle Style Sheet</translation> </message> @@ -14390,332 +14390,332 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="812"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="818"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>Es konnte kein Betrachter für die Datei <b>{0}</b> gestartet werden.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="775"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="781"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="610"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="616"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Hilfe Fenster</b><p>Dieses Fenster zeigt die ausgewählte Hilfe an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1239"/> <source>Web Inspector...</source> <translation>Web Inspektor...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1824"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1830"/> <source>Error loading page: {0}</source> <translation>Fehler beim Laden von: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1842"/> - <source>When connecting to: {0}.</source> - <translation>Beim Verbinden zu: {0}.</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1844"/> - <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> - <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1848"/> + <source>When connecting to: {0}.</source> + <translation>Beim Verbinden zu: {0}.</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1850"/> + <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> + <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1854"/> <source>If the address is correct, try checking the network connection.</source> <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1851"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1857"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="795"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="801"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>Es konnte keine Anwendung für die URL <b>{0}</b> gestartet werden.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1162"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1168"/> <source>Bookmark this Page</source> <translation>Lesezeichen für diese Seite hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1021"/> - <source>Save Lin&k</source> - <translation>Lin&k speichern</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1023"/> - <source>Bookmark this Link</source> - <translation>Lesezeichen für diesen Link hinzufügen</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1027"/> + <source>Save Lin&k</source> + <translation>Lin&k speichern</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1029"/> + <source>Bookmark this Link</source> + <translation>Lesezeichen für diesen Link hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1033"/> <source>Copy Link to Clipboard</source> <translation>Link in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1040"/> - <source>Open Image in New Tab</source> - <translation>Bild in neuem Register öffnen</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1044"/> - <source>Save Image</source> - <translation>Bild speichern</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1046"/> + <source>Open Image in New Tab</source> + <translation>Bild in neuem Register öffnen</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1050"/> + <source>Save Image</source> + <translation>Bild speichern</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1052"/> <source>Copy Image to Clipboard</source> <translation>Bild in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1047"/> - <source>Copy Image Location to Clipboard</source> - <translation>Bildadresse in die Zwischenablage kopieren</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1053"/> + <source>Copy Image Location to Clipboard</source> + <translation>Bildadresse in die Zwischenablage kopieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1059"/> <source>Block Image</source> <translation>Bild blockieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1185"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1191"/> <source>Search with...</source> <translation>Suchen mit...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1886"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1892"/> <source>Web Database Quota</source> <translation>Webdatenbankquota</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1886"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1892"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation><p>Das Datenbankquota von <strong>{0}</strong> wurde beim Zugriff auf die Datenbank <strong>{1}</strong> überschritten.</p><p>Soll es geändert werden?</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1894"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1900"/> <source>New Web Database Quota</source> <translation>Neues Datenbankquota</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1914"/> - <source>bytes</source> - <translation>Bytes</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1917"/> - <source>kB</source> - <translation>kB</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1920"/> + <source>bytes</source> + <translation>Bytes</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1923"/> + <source>kB</source> + <translation>kB</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1926"/> <source>MB</source> <translation>MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1894"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1900"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation>Gib das neue Quota in MB ein (aktuell = {0}, verbraucht = {1}; Schrittweite = 5 MB):</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1235"/> <source>Add to web search toolbar</source> <translation>Zur Websuchleiste hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1406"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1412"/> <source>Method not supported</source> <translation>Methode nicht unterstützt</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1406"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1412"/> <source>{0} method is not supported.</source> <translation>{0} Methode wird nicht unterstützt.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1448"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1454"/> <source>Search engine</source> <translation>Suchmaschine</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1448"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1454"/> <source>Choose the desired search engine</source> <translation>Wähle die gewünschte Suchmaschine aus</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1465"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1471"/> <source>Engine name</source> <translation>Suchmaschinenname</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1465"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1471"/> <source>Enter a name for the engine</source> <translation>Gib einen Namen für die Suchmaschine ein</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1855"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1861"/> <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1033"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1039"/> <source>Scan Link with VirusTotal</source> <translation>Link mit VirusTotal überprüfen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1058"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1064"/> <source>Scan Image with VirusTotal</source> <translation>Bild mit VirusTotal überprüfen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="2256"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="2262"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1029"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1035"/> <source>Send Link</source> <translation>Link verschicken</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1050"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1056"/> <source>Send Image Link</source> <translation>Link auf Bild verschicken</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1139"/> <source>This Frame</source> <translation>Dieser Rahmen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1136"/> - <source>Show &only this frame</source> - <translation>&Nur diesen Rahmen anzeigen </translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1138"/> - <source>Show in new &tab</source> - <translation>In neuem &Register anzeigen</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> - <source>&Print</source> - <translation>&Drucken</translation> + <source>Show &only this frame</source> + <translation>&Nur diesen Rahmen anzeigen </translation> </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1144"/> + <source>Show in new &tab</source> + <translation>In neuem &Register anzeigen</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1148"/> + <source>&Print</source> + <translation>&Drucken</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1150"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1146"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1152"/> <source>Print as PDF</source> <translation>Als PDF drucken</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1149"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1155"/> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1151"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1157"/> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1153"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1159"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1156"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1162"/> <source>Show frame so&urce</source> <translation>Rahmen&quelltext anzeigen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1164"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1170"/> <source>Send Page Link</source> <translation>Link auf Seite verschicken</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1180"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1186"/> <source>Send Text</source> <translation>Text verschicken</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1208"/> - <source>Google Translate</source> - <translation>Google Übersetzer</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1214"/> + <source>Google Translate</source> + <translation>Google Übersetzer</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1220"/> <source>Dictionary</source> <translation>Wörterbuch</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1221"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>Go to web address</source> <translation>Zur Web Adresse springen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="2256"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="2262"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Drucken ist wegen eine Fehlers in PyQt4 nicht verfügbar. Bitte aktualisieren.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1167"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1173"/> <source>User Agent</source> <translation>User Agent</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1859"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1865"/> <source>Try Again</source> <translation>Wiederholen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1017"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1023"/> <source>Open Link in New Tab Ctrl+LMB</source> <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1075"/> - <source>Play</source> - <translation>Abspielen</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1078"/> - <source>Pause</source> - <translation>Pause</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1081"/> - <source>Unmute</source> - <translation>Laut</translation> + <source>Play</source> + <translation>Abspielen</translation> </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1084"/> - <source>Mute</source> - <translation>Stumm</translation> + <source>Pause</source> + <translation>Pause</translation> </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1087"/> - <source>Copy Media Address to Clipboard</source> - <translation>Medienadresse in die Zwischenablage kopieren</translation> + <source>Unmute</source> + <translation>Laut</translation> </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1090"/> - <source>Send Media Address</source> - <translation>Medienadresse verschicken</translation> + <source>Mute</source> + <translation>Stumm</translation> </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="1093"/> + <source>Copy Media Address to Clipboard</source> + <translation>Medienadresse in die Zwischenablage kopieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1096"/> + <source>Send Media Address</source> + <translation>Medienadresse verschicken</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1099"/> <source>Save Media</source> <translation>Medium speichern</translation> </message> @@ -14851,7 +14851,7 @@ <context> <name>HelpDocsInstaller</name> <message> - <location filename="Helpviewer/HelpDocsInstaller.py" line="199"/> + <location filename="Helpviewer/HelpDocsInstaller.py" line="201"/> <source><p>The file <b>{0}</b> could not be registered.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht registriert werden.<br/>Ursache: {1}</p></translation> </message> @@ -14929,27 +14929,27 @@ <translation><b>Hinweis</b>: Leer lassen, um die Umgebungsvariable PYSIDEDOCDIR zu verwenden, wenn sie gesetzt ist.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="156"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="158"/> <source>HTML Files (*.html *.htm);;All Files (*)</source> <translation>HTML Dateien (*.html *.htm);;Alle Dateien (*)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="114"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="116"/> <source>Select Qt4 documentation entry</source> <translation>Wähle Qt4 Dokumentationsstart</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="142"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="144"/> <source>Select PyQt4 documentation entry</source> <translation>Wähle PyQt4 Dokumentationsstart</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="156"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="158"/> <source>Select PySide documentation entry</source> <translation>Wähle PySide Dokumentationsstart</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="98"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="100"/> <source>HTML Files (*.html *.htm);;Compressed Help Files (*.chm);;All Files (*)</source> <translation>HTML Dateien (*.html *.htm);;Komprimierte Hilfedateien (*.chm);; Alle Dateien (*)</translation> </message> @@ -14994,12 +14994,12 @@ <translation><b>Hinweis</b>: Leer lassen, um die Umgebungsvariable PYTHON3DOCDIR zu verwenden, wenn sie gesetzt ist.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="82"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="84"/> <source>Select Python 2 documentation entry</source> <translation>Wähle Python 2 Dokumentationsstart</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="98"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="100"/> <source>Select Python 3 documentation entry</source> <translation>Wähle Python 3 Dokumentationsstart</translation> </message> @@ -15024,7 +15024,7 @@ <translation><b>Hinweis</b>: Leer lassen, um die Umgebungsvariable QT5DOCDIR zu verwenden, wenn sie gesetzt ist.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="128"/> + <location filename="Preferences/ConfigurationPages/HelpDocumentationPage.py" line="130"/> <source>Select Qt5 documentation entry</source> <translation>Wähle Qt5 Dokumentationsstart</translation> </message> @@ -15032,17 +15032,17 @@ <context> <name>HelpIndexWidget</name> <message> - <location filename="Helpviewer/HelpIndexWidget.py" line="44"/> + <location filename="Helpviewer/HelpIndexWidget.py" line="46"/> <source>&Look for:</source> <translation>Suche &nach:</translation> </message> <message> - <location filename="Helpviewer/HelpIndexWidget.py" line="140"/> + <location filename="Helpviewer/HelpIndexWidget.py" line="142"/> <source>Open Link</source> <translation>Link öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpIndexWidget.py" line="141"/> + <location filename="Helpviewer/HelpIndexWidget.py" line="143"/> <source>Open Link in New Tab</source> <translation>Link in neuem Register öffnen</translation> </message> @@ -15085,17 +15085,17 @@ <translation>...</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="55"/> + <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="57"/> <source>System</source> <translation>System</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="68"/> + <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="70"/> <source>Select style sheet file</source> <translation>Wähle ein Qt Style Sheet</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="68"/> + <location filename="Preferences/ConfigurationPages/HelpInterfacePage.py" line="70"/> <source>Qt Style Sheets (*.qss);;Cascading Style Sheets (*.css);;All files (*)</source> <translation>Qt Style Sheets (*.qss);;Cascading Style Sheets (*.css);;Alle Dateien (*)</translation> </message> @@ -15136,12 +15136,12 @@ <context> <name>HelpSearchWidget</name> <message> - <location filename="Helpviewer/HelpSearchWidget.py" line="129"/> + <location filename="Helpviewer/HelpSearchWidget.py" line="131"/> <source>Open Link</source> <translation>Link öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpSearchWidget.py" line="130"/> + <location filename="Helpviewer/HelpSearchWidget.py" line="132"/> <source>Open Link in New Tab</source> <translation>Link in neuem Register öffnen</translation> </message> @@ -15149,107 +15149,107 @@ <context> <name>HelpTabWidget</name> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="92"/> + <location filename="Helpviewer/HelpTabWidget.py" line="94"/> <source>Show a navigation menu</source> <translation>Zeige ein Navigationsmenü an</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="112"/> + <location filename="Helpviewer/HelpTabWidget.py" line="114"/> <source>Close the current help window</source> <translation>Schließt das aktuelle Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="128"/> + <location filename="Helpviewer/HelpTabWidget.py" line="130"/> <source>Open a new help window tab</source> <translation>Öffne ein neues Hilferegister</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="142"/> + <location filename="Helpviewer/HelpTabWidget.py" line="144"/> <source>New Tab</source> <translation>Neues Register</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="146"/> + <location filename="Helpviewer/HelpTabWidget.py" line="148"/> <source>Move Left</source> <translation>nach links verschieben</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="149"/> + <location filename="Helpviewer/HelpTabWidget.py" line="151"/> <source>Move Right</source> <translation>nach rechts verschieben</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="153"/> + <location filename="Helpviewer/HelpTabWidget.py" line="155"/> <source>Duplicate Page</source> <translation>Seite duplizieren</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="157"/> + <location filename="Helpviewer/HelpTabWidget.py" line="159"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="160"/> + <location filename="Helpviewer/HelpTabWidget.py" line="162"/> <source>Close Others</source> <translation>Andere schließen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="179"/> + <location filename="Helpviewer/HelpTabWidget.py" line="181"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="165"/> - <source>Print Preview</source> - <translation>Druckvorschau</translation> - </message> - <message> <location filename="Helpviewer/HelpTabWidget.py" line="167"/> - <source>Print</source> - <translation>Drucken</translation> + <source>Print Preview</source> + <translation>Druckvorschau</translation> </message> <message> <location filename="Helpviewer/HelpTabWidget.py" line="169"/> + <source>Print</source> + <translation>Drucken</translation> + </message> + <message> + <location filename="Helpviewer/HelpTabWidget.py" line="171"/> <source>Print as PDF</source> <translation>Als PDF drucken</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="183"/> + <location filename="Helpviewer/HelpTabWidget.py" line="185"/> <source>Bookmark All Tabs</source> <translation>Lesezeichen für alle Tabs</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="327"/> + <location filename="Helpviewer/HelpTabWidget.py" line="329"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="593"/> + <location filename="Helpviewer/HelpTabWidget.py" line="595"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Drucken ist wegen eine Fehlers in PyQt4 nicht verfügbar. Bitte aktualisieren.</p></translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="690"/> + <location filename="Helpviewer/HelpTabWidget.py" line="692"/> <source>Loading...</source> <translation>Lade...</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="710"/> - <source>Finished loading</source> - <translation>Seite geladen</translation> - </message> - <message> <location filename="Helpviewer/HelpTabWidget.py" line="712"/> + <source>Finished loading</source> + <translation>Seite geladen</translation> + </message> + <message> + <location filename="Helpviewer/HelpTabWidget.py" line="714"/> <source>Failed to load</source> <translation>Fehler beim Laden</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="750"/> + <location filename="Helpviewer/HelpTabWidget.py" line="752"/> <source>Are you sure you want to close the window?</source> <translation>Möchten sie das Fenster wirklich schließen?</translation> </message> <message numerus="yes"> - <location filename="Helpviewer/HelpTabWidget.py" line="750"/> + <location filename="Helpviewer/HelpTabWidget.py" line="752"/> <source>Are you sure you want to close the window? You have %n tab(s) open.</source> <translation> @@ -15260,47 +15260,47 @@ </translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="757"/> + <location filename="Helpviewer/HelpTabWidget.py" line="759"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="760"/> - <source>&Quit</source> - <translation>B&eenden</translation> - </message> - <message> <location filename="Helpviewer/HelpTabWidget.py" line="762"/> + <source>&Quit</source> + <translation>B&eenden</translation> + </message> + <message> + <location filename="Helpviewer/HelpTabWidget.py" line="764"/> <source>C&lose Current Tab</source> <translation>A&ktuelles Unterfenster schließen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="593"/> + <location filename="Helpviewer/HelpTabWidget.py" line="595"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="103"/> + <location filename="Helpviewer/HelpTabWidget.py" line="105"/> <source>Show a navigation menu for closed tabs</source> <translation>Zeige ein Navigationsmenü für geschlossene Tabs an</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="181"/> + <location filename="Helpviewer/HelpTabWidget.py" line="183"/> <source>Reload All</source> <translation>Alle neu laden</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="186"/> + <location filename="Helpviewer/HelpTabWidget.py" line="188"/> <source>Restore Closed Tab</source> <translation>Geschlossenen Tabs wiederherstellen</translation> </message> <message> - <location filename="Helpviewer/HelpTabWidget.py" line="917"/> - <source>Restore All Closed Tabs</source> - <translation>Alle geschlossenen Tabs wiederherstellen</translation> - </message> - <message> <location filename="Helpviewer/HelpTabWidget.py" line="919"/> + <source>Restore All Closed Tabs</source> + <translation>Alle geschlossenen Tabs wiederherstellen</translation> + </message> + <message> + <location filename="Helpviewer/HelpTabWidget.py" line="921"/> <source>Clear List</source> <translation>Liste löschen</translation> </message> @@ -15308,12 +15308,12 @@ <context> <name>HelpTocWidget</name> <message> - <location filename="Helpviewer/HelpTocWidget.py" line="147"/> + <location filename="Helpviewer/HelpTocWidget.py" line="149"/> <source>Open Link</source> <translation>Link öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpTocWidget.py" line="148"/> + <location filename="Helpviewer/HelpTocWidget.py" line="150"/> <source>Open Link in New Tab</source> <translation>Link in neuem Register öffnen</translation> </message> @@ -15331,7 +15331,7 @@ <translation>&Themen:</translation> </message> <message> - <location filename="Helpviewer/HelpTopicDialog.py" line="32"/> + <location filename="Helpviewer/HelpTopicDialog.py" line="34"/> <source>Choose a &topic for <b>{0}</b>:</source> <translation>Wähle ein &Thema für <b>{0}</b>:</translation> </message> @@ -15379,22 +15379,22 @@ <translation>Qt Assistant</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="77"/> + <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="79"/> <source>Select Custom Viewer</source> <translation>Wähle anderen Betrachter</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="91"/> + <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="93"/> <source>Select Web-Browser</source> <translation>Wähle Web-Browser</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="105"/> + <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="107"/> <source>Select PDF-Viewer</source> <translation>Wähle PDF-Viewer</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="119"/> + <location filename="Preferences/ConfigurationPages/HelpViewersPage.py" line="121"/> <source>Select CHM-Viewer</source> <translation>Wähle CHM-Viewer</translation> </message> @@ -15467,22 +15467,22 @@ <translation>Gesicherte (https) Verbindungen nutzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="73"/> + <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="75"/> <source>Checking validity of the service key...</source> <translation>Prüfe die Gültigkeit des Dienstschlüssels...</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="90"/> + <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="92"/> <source>The service key is valid.</source> <translation>Der Dienstschlüssel ist gültig.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="93"/> + <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="95"/> <source><font color="#FF0000">The service key is not valid.</font></source> <translation><font color="#FF0000">Der Dienstschlüssel ist ungültig.</font></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="96"/> + <location filename="Preferences/ConfigurationPages/HelpVirusTotalPage.py" line="98"/> <source><font color="#FF0000"><b>Error:</b> {0}</font></source> <translation><font color="#FF0000"><b>Fehler:</b> {0}</font></translation> </message> @@ -15934,72 +15934,72 @@ <context> <name>HelpWebPage</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="316"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="322"/> <source>Error loading page: {0}</source> <translation>Fehler beim Laden von: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="334"/> - <source>When connecting to: {0}.</source> - <translation>Beim Verbinden zu: {0}.</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="336"/> - <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> - <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="340"/> + <source>When connecting to: {0}.</source> + <translation>Beim Verbinden zu: {0}.</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="342"/> + <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> + <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="346"/> <source>If the address is correct, try checking the network connection.</source> <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="343"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="349"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="347"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="353"/> <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="198"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="204"/> <source>Resending POST request</source> <translation>Erneutes Senden einer POST Anfrage</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="198"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="204"/> <source>In order to display the site, the request along with all the data must be sent once again, which may lead to some unexpected behaviour of the site e.g. the same action might be performed once again. Do you want to continue anyway?</source> <translation>Um diese Seite anzeigen können, muss die Anfrage mit allen Daten erneut gesendet werden, was zu unerwartetem Verhalten der Seite führen kann, so könnte z.B. die selbe Aktion erneut ausgeführt werden. Möchten Sie trotzdem fortfahren?</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="351"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="357"/> <source>Try Again</source> <translation>Wiederholen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="298"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="304"/> <source>Content blocked by AdBlock Plus</source> <translation>Inhalt blockiert durch AdBlock Plus</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="299"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="305"/> <source>Blocked by rule: <i>{0}</i></source> <translation>Blockiert durch Regel: <i>{0}</i></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="269"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="275"/> <source>Select files to upload...</source> <translation>Dateien zum Hochladen auswählen...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="509"/> <source>SSL Info</source> <translation>SSL Information</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="509"/> <source>This site does not contain SSL information.</source> <translation>Diese Seite enthält keine SSL Information.</translation> </message> @@ -16007,27 +16007,27 @@ <context> <name>HelpWebSearchWidget</name> <message> - <location filename="Helpviewer/HelpWebSearchWidget.py" line="123"/> + <location filename="Helpviewer/HelpWebSearchWidget.py" line="125"/> <source>Suggestions</source> <translation>Vorschläge</translation> </message> <message> - <location filename="Helpviewer/HelpWebSearchWidget.py" line="131"/> + <location filename="Helpviewer/HelpWebSearchWidget.py" line="133"/> <source>No Recent Searches</source> <translation>keine aktuellen Suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWebSearchWidget.py" line="135"/> + <location filename="Helpviewer/HelpWebSearchWidget.py" line="137"/> <source>Recent Searches</source> <translation>Aktuelle Suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWebSearchWidget.py" line="260"/> + <location filename="Helpviewer/HelpWebSearchWidget.py" line="262"/> <source>Add '{0}'</source> <translation>'{0}' hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpWebSearchWidget.py" line="269"/> + <location filename="Helpviewer/HelpWebSearchWidget.py" line="271"/> <source>Clear Recent Searches</source> <translation>Aktuelle Suchen löschen</translation> </message> @@ -16035,1665 +16035,1665 @@ <context> <name>HelpWindow</name> <message> - <location filename="Helpviewer/HelpWindow.py" line="1793"/> + <location filename="Helpviewer/HelpWindow.py" line="1799"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="409"/> - <source>&Open File</source> - <translation>Datei &öffnen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="414"/> - <source>Open a help file for display</source> - <translation>Öffnet eine Hilfedatei zur Anzeige</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="415"/> + <source>&Open File</source> + <translation>Datei &öffnen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="420"/> + <source>Open a help file for display</source> + <translation>Öffnet eine Hilfedatei zur Anzeige</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="421"/> <source><b>Open File</b><p>This opens a new help file for display. It pops up a file selection dialog.</p></source> <translation><b>Datei öffnen</b><p>Dies öffnet eine neue Hilfedatei zur Anzeige. Es wird zunächst ein Dateiauswahldialog angezeigt.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="498"/> - <source>&Print</source> - <translation>&Drucken</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="503"/> - <source>Print the displayed help</source> - <translation>Druckt die angezeigte Hilfe</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="504"/> + <source>&Print</source> + <translation>&Drucken</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="509"/> + <source>Print the displayed help</source> + <translation>Druckt die angezeigte Hilfe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="510"/> <source><b>Print</b><p>Print the displayed help text.</p></source> <translation><b>Drucken</b><p>Druckt den angezeigten Hilfetext.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="545"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="544"/> + <location filename="Helpviewer/HelpWindow.py" line="550"/> <source>Close the current help window</source> <translation>Schließt das aktuelle Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="597"/> + <location filename="Helpviewer/HelpWindow.py" line="603"/> <source>&Backward</source> <translation>&Zurück</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="604"/> + <location filename="Helpviewer/HelpWindow.py" line="610"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Zurück</b><p>Bewegt die Hilfeanzeige rückwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="613"/> - <source>&Forward</source> - <translation>&Vorwärts</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="619"/> + <source>&Forward</source> + <translation>&Vorwärts</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="625"/> <source>Move one help screen forward</source> <translation>Eine Hilfeseite vorwärts</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="626"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Vorwärts</b><p>Bewegt die Hilfeanzeige vorwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="629"/> - <source>&Home</source> - <translation>&Anfang</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="634"/> - <source>Move to the initial help screen</source> - <translation>Zur ersten Hilfeseite</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="635"/> + <source>&Home</source> + <translation>&Anfang</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="640"/> + <source>Move to the initial help screen</source> + <translation>Zur ersten Hilfeseite</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="641"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Anfang</b><p>Zeigt die erste Hilfeseite an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="791"/> + <location filename="Helpviewer/HelpWindow.py" line="797"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="798"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="810"/> + <source>&About</source> + <translation>&Über</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="813"/> + <source>Display information about this software</source> + <translation>Zeigt Informationen zu diesem Programm an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="822"/> + <source>About &Qt</source> + <translation>Über &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="825"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1340"/> + <source>&File</source> + <translation>&Datei</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1385"/> + <source>&Go</source> + <translation>&Gehe zu</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1408"/> + <source>&Bookmarks</source> + <translation>&Lesezeichen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1476"/> + <source>&Help</source> + <translation>&Hilfe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="609"/> + <source>Move one help screen backward</source> + <translation>Eine Hilfeseite zurück</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="814"/> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="827"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>Über Qt</b><p>Zeige informationen über das Qt Toolkit an.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Zoom in on the text</source> + <translation>Text vergrößern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Zoom out on the text</source> + <translation>Text verkleinern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="679"/> + <source>&Copy</source> + <translation>&Kopieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="684"/> + <source>Copy the selected text</source> + <translation>Kopiert den ausgewählten Text</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="685"/> + <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> + <translation><b>Kopieren</b><p>Kopiert den ausgewählten Text in die Zwischenablage.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1361"/> + <source>&Edit</source> + <translation>&Bearbeiten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1369"/> + <source>&View</source> + <translation>&Ansicht</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="586"/> + <source>&Quit</source> + <translation>B&eenden</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="792"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="804"/> - <source>&About</source> - <translation>&Über</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="807"/> - <source>Display information about this software</source> - <translation>Zeigt Informationen zu diesem Programm an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="816"/> - <source>About &Qt</source> - <translation>Über &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="819"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1334"/> - <source>&File</source> - <translation>&Datei</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1379"/> - <source>&Go</source> - <translation>&Gehe zu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1402"/> - <source>&Bookmarks</source> - <translation>&Lesezeichen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1470"/> - <source>&Help</source> - <translation>&Hilfe</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="603"/> - <source>Move one help screen backward</source> - <translation>Eine Hilfeseite zurück</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="808"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>Über Qt</b><p>Zeige informationen über das Qt Toolkit an.</p></translation> + <source>&What's This?</source> + <translation>&Was ist das?</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="835"/> - <source>Zoom in on the text</source> - <translation>Text vergrößern</translation> + <source>Zoom &in</source> + <translation>Ver&größern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="842"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Vergrößern</b><p>Den angezeigten Text vergrößern.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="850"/> - <source>Zoom out on the text</source> - <translation>Text verkleinern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="673"/> - <source>&Copy</source> - <translation>&Kopieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="678"/> - <source>Copy the selected text</source> - <translation>Kopiert den ausgewählten Text</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="679"/> - <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> - <translation><b>Kopieren</b><p>Kopiert den ausgewählten Text in die Zwischenablage.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1355"/> - <source>&Edit</source> - <translation>&Bearbeiten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1363"/> - <source>&View</source> - <translation>&Ansicht</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> - <source>&Quit</source> - <translation>B&eenden</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="786"/> - <source>&What's This?</source> - <translation>&Was ist das?</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Zoom &in</source> - <translation>Ver&größern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="836"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Vergrößern</b><p>Den angezeigten Text vergrößern.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="851"/> + <location filename="Helpviewer/HelpWindow.py" line="857"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Verkleinern</b><p>Den angezeigten Text verkleinern.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1394"/> + <location filename="Helpviewer/HelpWindow.py" line="1400"/> <source>H&istory</source> <translation>&Chronik</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="643"/> - <source>&Reload</source> - <translation>E&rneut laden</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="649"/> + <source>&Reload</source> + <translation>E&rneut laden</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="655"/> <source>Reload the current help screen</source> <translation>Die aktuelle Hilfeseite ernaut laden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="650"/> + <location filename="Helpviewer/HelpWindow.py" line="656"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Erneut laden</b><p>Lädt die aktuelle Hilfeseite erneut.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="395"/> + <location filename="Helpviewer/HelpWindow.py" line="401"/> <source>Ctrl+N</source> <comment>File|New Window</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="409"/> + <location filename="Helpviewer/HelpWindow.py" line="415"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="498"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="545"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="586"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="687"/> + <location filename="Helpviewer/HelpWindow.py" line="693"/> <source>&Find...</source> <translation>&Suchen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Find text in page</source> <translation>Text in Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="693"/> + <location filename="Helpviewer/HelpWindow.py" line="699"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Suchen</b><p>Text in der angezeigten Seite suchen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="701"/> + <location filename="Helpviewer/HelpWindow.py" line="707"/> <source>Find &next</source> <translation>&Weitersuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="715"/> + <location filename="Helpviewer/HelpWindow.py" line="721"/> <source>Find &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="673"/> + <location filename="Helpviewer/HelpWindow.py" line="679"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1481"/> + <location filename="Helpviewer/HelpWindow.py" line="1487"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1499"/> + <location filename="Helpviewer/HelpWindow.py" line="1505"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1504"/> + <location filename="Helpviewer/HelpWindow.py" line="1510"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1513"/> + <location filename="Helpviewer/HelpWindow.py" line="1519"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1550"/> + <location filename="Helpviewer/HelpWindow.py" line="1556"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1557"/> + <location filename="Helpviewer/HelpWindow.py" line="1563"/> <source>Go</source> <translation>Gehe zu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1793"/> + <location filename="Helpviewer/HelpWindow.py" line="1799"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Hilfedateien (*.html *.htm);;PDF Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="381"/> + <location filename="Helpviewer/HelpWindow.py" line="387"/> <source>&New Tab</source> <translation>&Neues Register</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="381"/> - <source>Ctrl+T</source> - <comment>File|New Tab</comment> - <translation>Ctrl+T</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="387"/> + <source>Ctrl+T</source> + <comment>File|New Tab</comment> + <translation>Ctrl+T</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="393"/> <source><b>New Tab</b><p>This opens a new help window tab.</p></source> <translation><b>Neues Register</b><p>Dies öffnet ein neues Hilfe Register.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="401"/> + <location filename="Helpviewer/HelpWindow.py" line="407"/> <source><b>New Window</b><p>This opens a new help browser window.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet ein neues Hilfeanzeiger Fenster.</p></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="551"/> + <source><b>Close</b><p>Closes the current help window.</p></source> + <translation><b>Schließen</b><p>Schließt das aktuelle Hilfefenster.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="559"/> + <source>Close &All</source> + <translation>Alle &schließen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="563"/> + <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> + <translation><b>Alle schließen</b><p>Schließt alle Hilfefenster mit Ausnahme des ersten.</p></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="545"/> - <source><b>Close</b><p>Closes the current help window.</p></source> - <translation><b>Schließen</b><p>Schließt das aktuelle Hilfefenster.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> - <source>Close &All</source> - <translation>Alle &schließen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="557"/> - <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> - <translation><b>Alle schließen</b><p>Schließt alle Hilfefenster mit Ausnahme des ersten.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="498"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="386"/> + <location filename="Helpviewer/HelpWindow.py" line="392"/> <source>Open a new help window tab</source> <translation>Öffne ein neues Hilferegister</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="400"/> + <location filename="Helpviewer/HelpWindow.py" line="406"/> <source>Open a new help browser window</source> <translation>Öffne ein neues Hilfeanzeiger Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="424"/> + <location filename="Helpviewer/HelpWindow.py" line="430"/> <source>Open File in New &Tab</source> <translation>Datei in neuem &Register öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="424"/> + <location filename="Helpviewer/HelpWindow.py" line="430"/> <source>Shift+Ctrl+O</source> <comment>File|Open in new tab</comment> <translation>Shift+Ctrl+O</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="429"/> + <location filename="Helpviewer/HelpWindow.py" line="435"/> <source>Open a help file for display in a new tab</source> <translation>Öffnet eine Hilfedatei zur Anzeige in einem neuen Register</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="431"/> + <location filename="Helpviewer/HelpWindow.py" line="437"/> <source><b>Open File in New Tab</b><p>This opens a new help file for display in a new tab. It pops up a file selection dialog.</p></source> <translation><b>Datei in neuem Register öffnen</b><p>Dies öffnet eine Hilfedatei zur Anzeige in einem neuen Register. Es wird zunächst ein Dateiauswahldialog angezeigt.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="381"/> + <location filename="Helpviewer/HelpWindow.py" line="387"/> <source>New Tab</source> <translation>Neues Register</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="395"/> + <location filename="Helpviewer/HelpWindow.py" line="401"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="424"/> + <location filename="Helpviewer/HelpWindow.py" line="430"/> <source>Open File in New Tab</source> <translation>Datei in neuem Register öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="586"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="597"/> + <location filename="Helpviewer/HelpWindow.py" line="603"/> <source>Backward</source> <translation>Zurück</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="597"/> + <location filename="Helpviewer/HelpWindow.py" line="603"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="597"/> + <location filename="Helpviewer/HelpWindow.py" line="603"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="613"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source>Forward</source> <translation>Vorwärts</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="613"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="613"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="629"/> + <location filename="Helpviewer/HelpWindow.py" line="635"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="629"/> + <location filename="Helpviewer/HelpWindow.py" line="635"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="643"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source>Reload</source> <translation>Erneut laden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="643"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="673"/> + <location filename="Helpviewer/HelpWindow.py" line="679"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="687"/> + <location filename="Helpviewer/HelpWindow.py" line="693"/> <source>Find...</source> <translation>Suchen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="687"/> + <location filename="Helpviewer/HelpWindow.py" line="693"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="701"/> + <location filename="Helpviewer/HelpWindow.py" line="707"/> <source>Find next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="701"/> + <location filename="Helpviewer/HelpWindow.py" line="707"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="715"/> + <location filename="Helpviewer/HelpWindow.py" line="721"/> <source>Find previous</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="715"/> + <location filename="Helpviewer/HelpWindow.py" line="721"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="744"/> + <location filename="Helpviewer/HelpWindow.py" line="750"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="786"/> + <location filename="Helpviewer/HelpWindow.py" line="792"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="786"/> + <location filename="Helpviewer/HelpWindow.py" line="792"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="804"/> + <location filename="Helpviewer/HelpWindow.py" line="810"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="816"/> + <location filename="Helpviewer/HelpWindow.py" line="822"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> + <location filename="Helpviewer/HelpWindow.py" line="835"/> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> + <location filename="Helpviewer/HelpWindow.py" line="835"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> + <location filename="Helpviewer/HelpWindow.py" line="850"/> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> + <location filename="Helpviewer/HelpWindow.py" line="850"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="712"/> <source>Find next occurrence of text in page</source> <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> + <location filename="Helpviewer/HelpWindow.py" line="713"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Weitersuchen</b><p>Suche das nächste Vorkommen des Textes in der aktuellen Seite.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="720"/> + <location filename="Helpviewer/HelpWindow.py" line="726"/> <source>Find previous occurrence of text in page</source> <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="722"/> + <location filename="Helpviewer/HelpWindow.py" line="728"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Rückwärtssuchen</b><p>Suche das vorherige Vorkommen des Textes in der aktuellen Seite.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> - <source>Print Preview</source> - <translation>Druckvorschau</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="529"/> - <source>Print preview of the displayed help</source> - <translation>Druckvorschau der angezeigten Hilfe</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="531"/> + <source>Print Preview</source> + <translation>Druckvorschau</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="535"/> + <source>Print preview of the displayed help</source> + <translation>Druckvorschau der angezeigten Hilfe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Druckvorschau</b><p>Zeigt eine Druckvorschau des angezeigten Hilfetextes.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="915"/> + <location filename="Helpviewer/HelpWindow.py" line="921"/> <source>Show next tab</source> <translation>Zeige nächste Seite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="915"/> + <location filename="Helpviewer/HelpWindow.py" line="921"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="924"/> + <location filename="Helpviewer/HelpWindow.py" line="930"/> <source>Show previous tab</source> <translation>Zeige vorherige Seite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="924"/> + <location filename="Helpviewer/HelpWindow.py" line="930"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="933"/> + <location filename="Helpviewer/HelpWindow.py" line="939"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="933"/> + <location filename="Helpviewer/HelpWindow.py" line="939"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1138"/> + <location filename="Helpviewer/HelpWindow.py" line="1144"/> <source>Clear icons database</source> <translation>Iconsdatenbank löschen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1142"/> + <location filename="Helpviewer/HelpWindow.py" line="1148"/> <source>Clear the database of favicons</source> <translation>Löscht die Datenbank mit den Favicons</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1143"/> + <location filename="Helpviewer/HelpWindow.py" line="1149"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Iconsdatenbank löschen</b><p>Löscht die Datenbank mit den Favicons besuchter URLs.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="948"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="948"/> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="951"/> <source>Set the prefered configuration</source> <translation>Konfiguriert die Einstellungen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="946"/> + <location filename="Helpviewer/HelpWindow.py" line="952"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach ihren Wünschen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="168"/> + <location filename="Helpviewer/HelpWindow.py" line="174"/> <source>Contents</source> <translation>Inhalt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="556"/> + <location filename="Helpviewer/HelpWindow.py" line="562"/> <source>Close all help windows</source> <translation>Schließt alle Hilfefenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> - <source>Sync with Table of Contents</source> - <translation>Mit Inhalt synchronisieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1033"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1035"/> + <source>Sync with Table of Contents</source> + <translation>Mit Inhalt synchronisieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1039"/> + <source>Synchronizes the table of contents with current page</source> + <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> <translation><b>Mit Inhalt synchronisieren</b><p>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1043"/> + <location filename="Helpviewer/HelpWindow.py" line="1049"/> <source>Table of Contents</source> <translation>Inhaltsverzeichnis</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1046"/> + <location filename="Helpviewer/HelpWindow.py" line="1052"/> <source>Shows the table of contents window</source> <translation>Zeigt das Fenster mit dem Inhaltsverzeichnis an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1048"/> + <location filename="Helpviewer/HelpWindow.py" line="1054"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation><b>Inhaltsverzeichnis</b><p>Zeigt das Fenster mit dem Inhaltsverzeichnis an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1082"/> + <location filename="Helpviewer/HelpWindow.py" line="1088"/> <source>Manage QtHelp Documents</source> <translation>QtHelp Dokumente verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1085"/> + <location filename="Helpviewer/HelpWindow.py" line="1091"/> <source>Shows a dialog to manage the QtHelp documentation set</source> <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1093"/> <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> <translation><b>QtHelp Dokumente verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1459"/> + <location filename="Helpviewer/HelpWindow.py" line="1465"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1521"/> + <location filename="Helpviewer/HelpWindow.py" line="1527"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1526"/> - <source>Filtered by: </source> - <translation>Filter: </translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2411"/> - <source>Could not find an associated content.</source> - <translation>Konnte keinen zugehörigen Inhalt finden.</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1096"/> - <source>Manage QtHelp Filters</source> - <translation>QtHelp Filter verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1099"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Filter</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1101"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation><b>QtHelp Filter verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Filter.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1056"/> - <source>Index</source> - <translation>Index</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1059"/> - <source>Shows the index window</source> - <translation>Zeigt das Indexfenster an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1061"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Index</b><p>Zeigt das Indexfenster an.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1069"/> - <source>Search</source> - <translation>Suchen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1072"/> - <source>Shows the search window</source> - <translation>Zeigt das Suchfenster an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1074"/> - <source><b>Search</b><p>Shows the search window.</p></source> - <translation><b>Suchen</b><p>Zeigt das Suchfenster an.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1110"/> - <source>Reindex Documentation</source> - <translation>Dokumentation reindizieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1113"/> - <source>Reindexes the documentation set</source> - <translation>Reindiziert die Dokumentation</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1115"/> - <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> - <translation><b>Dokumentation reindizieren</b><p>Reindiziert die Dokumentation.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2533"/> - <source>Updating search index</source> - <translation>Aktualisiere Suchindex</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2589"/> - <source>Looking for Documentation...</source> - <translation>Suche nach Dokumentation...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2621"/> - <source>Unfiltered</source> - <translation>Ungefiltert</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2640"/> - <source>Help Engine</source> - <translation>Hilfe</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="569"/> - <source>Private Browsing</source> - <translation>Privates Browsen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="565"/> - <source>Private &Browsing</source> - <translation>Privates &Browsen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="570"/> - <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> - <translation><b>Privates Browsen</b><p>Schaltet das private Browsen ein. In diesem Modus wird keine Chronik mehr aufgezeichnet.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2114"/> - <source>Full Screen</source> - <translation>Vollbild</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="905"/> - <source>&Full Screen</source> - <translation>&Vollbild</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="905"/> - <source>F11</source> - <translation>F11</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1082"/> - <source>Manage QtHelp &Documents</source> - <translation>QtHelp &Dokumente verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1096"/> - <source>Manage QtHelp &Filters</source> - <translation>QtHelp &Filter verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1110"/> - <source>&Reindex Documentation</source> - <translation>Dokumentation &reindizieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1128"/> - <source>Clear private data</source> - <translation>Private Daten löschen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1124"/> - <source>&Clear private data</source> - <translation>&Private Daten löschen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1129"/> - <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> - <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icons-Datenbank.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1138"/> - <source>Clear &icons database</source> - <translation>Iconsdatenbank &löschen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> - <source>Show the network monitor dialog</source> - <translation>Zeigt den Netzwerkmonitordialog an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1417"/> - <source>&Settings</source> - <translation>&Einstellungen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1450"/> - <source>&Tools</source> - <translation>&Werkzeuge</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="891"/> - <source>Show page source</source> - <translation>Seitenquelltext anzeigen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="891"/> - <source>Ctrl+U</source> - <translation>Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Show the page source in an editor</source> - <translation>Zeige den Seitenquelltext in einem Editor</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="896"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Seitenquelltext anzeigen</b><p>Zeige den Seitenquelltext in einem Editor.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="955"/> - <source>&Languages...</source> - <translation>&Sprachen...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="958"/> - <source>Configure the accepted languages for web pages</source> - <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Sprachen</b><p>Konfigurieren der bevorzugten Sprachen für Websites.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="955"/> - <source>Languages</source> - <translation>Sprachen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="968"/> - <source>Cookies</source> - <translation>Cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="968"/> - <source>C&ookies...</source> - <translation>C&ookies...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="971"/> - <source>Configure cookies handling</source> - <translation>Cookieverwaltung konfigurieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="973"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Cookieverwaltung konfigurieren</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1532"/> + <source>Filtered by: </source> + <translation>Filter: </translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2417"/> + <source>Could not find an associated content.</source> + <translation>Konnte keinen zugehörigen Inhalt finden.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1102"/> + <source>Manage QtHelp Filters</source> + <translation>QtHelp Filter verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1105"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Filter</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1107"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation><b>QtHelp Filter verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Filter.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1062"/> + <source>Index</source> + <translation>Index</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1065"/> + <source>Shows the index window</source> + <translation>Zeigt das Indexfenster an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1067"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Index</b><p>Zeigt das Indexfenster an.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1075"/> + <source>Search</source> + <translation>Suchen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1078"/> + <source>Shows the search window</source> + <translation>Zeigt das Suchfenster an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1080"/> + <source><b>Search</b><p>Shows the search window.</p></source> + <translation><b>Suchen</b><p>Zeigt das Suchfenster an.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1116"/> + <source>Reindex Documentation</source> + <translation>Dokumentation reindizieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1119"/> + <source>Reindexes the documentation set</source> + <translation>Reindiziert die Dokumentation</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1121"/> + <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> + <translation><b>Dokumentation reindizieren</b><p>Reindiziert die Dokumentation.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2539"/> + <source>Updating search index</source> + <translation>Aktualisiere Suchindex</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2595"/> + <source>Looking for Documentation...</source> + <translation>Suche nach Dokumentation...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2627"/> + <source>Unfiltered</source> + <translation>Ungefiltert</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2646"/> + <source>Help Engine</source> + <translation>Hilfe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="575"/> + <source>Private Browsing</source> + <translation>Privates Browsen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="571"/> + <source>Private &Browsing</source> + <translation>Privates &Browsen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="576"/> + <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> + <translation><b>Privates Browsen</b><p>Schaltet das private Browsen ein. In diesem Modus wird keine Chronik mehr aufgezeichnet.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2120"/> + <source>Full Screen</source> + <translation>Vollbild</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="911"/> + <source>&Full Screen</source> + <translation>&Vollbild</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="911"/> + <source>F11</source> + <translation>F11</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1088"/> + <source>Manage QtHelp &Documents</source> + <translation>QtHelp &Dokumente verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1102"/> + <source>Manage QtHelp &Filters</source> + <translation>QtHelp &Filter verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1116"/> + <source>&Reindex Documentation</source> + <translation>Dokumentation &reindizieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <source>Clear private data</source> + <translation>Private Daten löschen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1130"/> + <source>&Clear private data</source> + <translation>&Private Daten löschen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1135"/> + <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> + <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icons-Datenbank.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1144"/> + <source>Clear &icons database</source> + <translation>Iconsdatenbank &löschen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1237"/> + <source>Show the network monitor dialog</source> + <translation>Zeigt den Netzwerkmonitordialog an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1423"/> + <source>&Settings</source> + <translation>&Einstellungen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1456"/> + <source>&Tools</source> + <translation>&Werkzeuge</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> + <source>Show page source</source> + <translation>Seitenquelltext anzeigen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> + <source>Ctrl+U</source> + <translation>Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="901"/> + <source>Show the page source in an editor</source> + <translation>Zeige den Seitenquelltext in einem Editor</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="902"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Seitenquelltext anzeigen</b><p>Zeige den Seitenquelltext in einem Editor.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="961"/> + <source>&Languages...</source> + <translation>&Sprachen...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="964"/> + <source>Configure the accepted languages for web pages</source> + <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="966"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Sprachen</b><p>Konfigurieren der bevorzugten Sprachen für Websites.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="961"/> + <source>Languages</source> + <translation>Sprachen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="974"/> + <source>Cookies</source> + <translation>Cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="974"/> + <source>C&ookies...</source> + <translation>C&ookies...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="977"/> + <source>Configure cookies handling</source> + <translation>Cookieverwaltung konfigurieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="979"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Cookieverwaltung konfigurieren</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1538"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> + <location filename="Helpviewer/HelpWindow.py" line="865"/> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> + <location filename="Helpviewer/HelpWindow.py" line="865"/> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation>Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="864"/> - <source>Reset the zoom of the text</source> - <translation>Die Textgröße zurücksetzen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="875"/> - <source>Zoom text only</source> - <translation>Nur Text vergrößern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="875"/> - <source>Zoom &text only</source> - <translation>Nur &Text vergrößern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="879"/> - <source>Zoom text only; pictures remain constant</source> - <translation>Nur Text vergrößern; Bilder behalten ihre Größe</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="881"/> - <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> - <translation><b>Nur Text vergrößern</b><p>Nur Text vergrößern; Bilder behalten ihre Größe.</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="865"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation>Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="870"/> + <source>Reset the zoom of the text</source> + <translation>Die Textgröße zurücksetzen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="881"/> + <source>Zoom text only</source> + <translation>Nur Text vergrößern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="881"/> + <source>Zoom &text only</source> + <translation>Nur &Text vergrößern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source>Zoom text only; pictures remain constant</source> + <translation>Nur Text vergrößern; Bilder behalten ihre Größe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="887"/> + <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> + <translation><b>Nur Text vergrößern</b><p>Nur Text vergrößern; Bilder behalten ihre Größe.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="395"/> + <location filename="Helpviewer/HelpWindow.py" line="401"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="470"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Import Bookmarks</source> <translation>Lesezeichen importieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="470"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>&Import Bookmarks...</source> <translation>Lesezeichen &importieren...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="473"/> + <location filename="Helpviewer/HelpWindow.py" line="479"/> <source>Import bookmarks from other browsers</source> <translation>Importiere Lesezeichen von anderen Browsern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="475"/> + <location filename="Helpviewer/HelpWindow.py" line="481"/> <source><b>Import Bookmarks</b><p>Import bookmarks from other browsers.</p></source> <translation><b>Lesezeichen importieren</b><p>Importiere Lesezeichen von anderen Browsern.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="484"/> + <location filename="Helpviewer/HelpWindow.py" line="490"/> <source>Export Bookmarks</source> <translation>Lesezeichen exportieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="484"/> + <location filename="Helpviewer/HelpWindow.py" line="490"/> <source>&Export Bookmarks...</source> <translation>Lesezeichen &exportieren...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="493"/> <source>Export the bookmarks into a file</source> <translation>Exportiert die Lesezeichen in eine Datei</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="489"/> + <location filename="Helpviewer/HelpWindow.py" line="495"/> <source><b>Export Bookmarks</b><p>Export the bookmarks into a file.</p></source> <translation><b>Lesezeichen exportieren</b><p>Exportiert die Lesezeichen in eine Datei.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="730"/> + <location filename="Helpviewer/HelpWindow.py" line="736"/> <source>Manage Bookmarks</source> <translation>Lesezeichen verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="730"/> + <location filename="Helpviewer/HelpWindow.py" line="736"/> <source>&Manage Bookmarks...</source> <translation>Lesezeichen &verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="730"/> + <location filename="Helpviewer/HelpWindow.py" line="736"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation>Ctrl+Shift+B</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="734"/> + <location filename="Helpviewer/HelpWindow.py" line="740"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="736"/> + <location filename="Helpviewer/HelpWindow.py" line="742"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Lesezeichen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="744"/> - <source>Add &Bookmark...</source> - <translation>Lesezeichen &hinzufügen...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="744"/> - <source>Ctrl+D</source> - <comment>Help|Add bookmark</comment> - <translation>Ctrl+D</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="750"/> + <source>Add &Bookmark...</source> + <translation>Lesezeichen &hinzufügen...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="750"/> + <source>Ctrl+D</source> + <comment>Help|Add bookmark</comment> + <translation>Ctrl+D</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Open a dialog to add a bookmark.</source> <translation>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="751"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> <translation><b>Lesezeichen hinzufügen...</b><p>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="759"/> + <location filename="Helpviewer/HelpWindow.py" line="765"/> <source>Add Folder</source> <translation>Ordner hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="759"/> + <location filename="Helpviewer/HelpWindow.py" line="765"/> <source>Add &Folder...</source> <translation>&Ordner hinzufügen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="762"/> + <location filename="Helpviewer/HelpWindow.py" line="768"/> <source>Open a dialog to add a new bookmarks folder.</source> <translation>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="764"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Ordner hinzufügen...</b><p>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="772"/> + <location filename="Helpviewer/HelpWindow.py" line="778"/> <source>Bookmark All Tabs</source> <translation>Lesezeichen für alle Tabs</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="772"/> + <location filename="Helpviewer/HelpWindow.py" line="778"/> <source>Bookmark All Tabs...</source> <translation>Lesezeichen für alle Tabs...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="775"/> + <location filename="Helpviewer/HelpWindow.py" line="781"/> <source>Bookmark all open tabs.</source> <translation>Fügt Lesezeichen für alle offenen Tabs hinzu.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="777"/> + <location filename="Helpviewer/HelpWindow.py" line="783"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Lesezeichen für alle Tabs...</b><p>Öffnet einen Dialog, um einen neuen Lesezeichenordner für alle offenen Tabs hinzuzufügen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1918"/> + <location filename="Helpviewer/HelpWindow.py" line="1924"/> <source>Saved Tabs</source> <translation>Gesicherte Tabs</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="643"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source>F5</source> <comment>Go|Reload</comment> <translation>F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="658"/> + <location filename="Helpviewer/HelpWindow.py" line="664"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="658"/> + <location filename="Helpviewer/HelpWindow.py" line="664"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="658"/> + <location filename="Helpviewer/HelpWindow.py" line="664"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="658"/> + <location filename="Helpviewer/HelpWindow.py" line="664"/> <source>Esc</source> <comment>Go|Stop</comment> <translation>Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="664"/> + <location filename="Helpviewer/HelpWindow.py" line="670"/> <source>Stop loading</source> <translation>Laden anhalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="665"/> + <location filename="Helpviewer/HelpWindow.py" line="671"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Anhalten</b><p>Hält das Laden der aktuellen Seite an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="446"/> <source>&Save As...</source> <translation>&Speichern unter...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="446"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="445"/> + <location filename="Helpviewer/HelpWindow.py" line="451"/> <source>Save the current page to disk</source> <translation>Speichert die aktuelle Seite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="447"/> + <location filename="Helpviewer/HelpWindow.py" line="453"/> <source><b>Save As...</b><p>Saves the current page to disk.</p></source> <translation><b>Speichern unter</b><p>Dies speichert die aktuelle Seite in eine Datei.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1151"/> - <source>Configure Search Engines</source> - <translation>Suchmaschinen verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1155"/> - <source>Configure the available search engines</source> - <translation>Verwalte die verfügbaren Suchmaschinen</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1157"/> + <source>Configure Search Engines</source> + <translation>Suchmaschinen verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1161"/> + <source>Configure the available search engines</source> + <translation>Verwalte die verfügbaren Suchmaschinen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1163"/> <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> <translation><b>Suchmaschinen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1166"/> + <location filename="Helpviewer/HelpWindow.py" line="1172"/> <source>Manage Saved Passwords</source> <translation>Gespeicherte Passwörter verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1166"/> + <location filename="Helpviewer/HelpWindow.py" line="1172"/> <source>Manage Saved Passwords...</source> <translation>Gespeicherte Passwörter verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1171"/> + <location filename="Helpviewer/HelpWindow.py" line="1177"/> <source>Manage the saved passwords</source> <translation>Verwalten gespeicherter Passwörter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1173"/> + <location filename="Helpviewer/HelpWindow.py" line="1179"/> <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> <translation><b>Gespeicherte Passwörter verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1187"/> <source>Ad Block</source> <translation>Ad Block</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1187"/> <source>&Ad Block...</source> <translation>&Ad Block...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1186"/> + <location filename="Helpviewer/HelpWindow.py" line="1192"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfiguriert AdBlock Abonnements und Regeln</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2598"/> + <location filename="Helpviewer/HelpWindow.py" line="2604"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="512"/> + <location filename="Helpviewer/HelpWindow.py" line="518"/> <source>Print as PDF</source> <translation>Als PDF drucken</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="516"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Print the displayed help as PDF</source> <translation>Druckt die angezeigte Hilfe als PDF</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="517"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> <translation><b>Als PDF drucken</b><p>Druckt den angezeigten Hilfetext als PDF-Datei.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="981"/> + <location filename="Helpviewer/HelpWindow.py" line="987"/> <source>Offline Storage</source> <translation>Offline Speicher</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="981"/> + <location filename="Helpviewer/HelpWindow.py" line="987"/> <source>Offline &Storage...</source> <translation>Offline &Speicher...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="984"/> + <location filename="Helpviewer/HelpWindow.py" line="990"/> <source>Configure offline storage</source> <translation>Konfiguren des Offline Speicher</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="992"/> <source><b>Offline Storage</b><p>Opens a dialog to configure offline storage.</p></source> <translation><b>Offline Speicher</b><p>Öffnet einen Dialog zum Konfigurieren des Offline Speichers.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1151"/> + <location filename="Helpviewer/HelpWindow.py" line="1157"/> <source>Configure Search &Engines...</source> <translation>Such&maschinen verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2143"/> + <location filename="Helpviewer/HelpWindow.py" line="2149"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. HTML5 offline storage will be deactivated. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Sind sie sicher, dass sie privates Browsen einschalten möchten?</b><p>Wenn das private Browsen eingeschaltet ist, werden keine Web Seiten mehr zur Chronik hinzugefügt und Suchanfragen, Web Site Icons und Cookies werden nicht mehr gespeichert. HTML5 Offline Speicher wird deaktiviert. Bis das Fenster geschlossen wird, können sie jedoch weiterhin die Zurück und Vorwärts Knöpfe nutzen, um zu besuchten Web Seiten zurückzukehren.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1374"/> + <location filename="Helpviewer/HelpWindow.py" line="1380"/> <source>Text Encoding</source> <translation>Zeichenkodierung</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3054"/> + <location filename="Helpviewer/HelpWindow.py" line="3060"/> <source>ISO</source> <translation>ISO</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3055"/> + <location filename="Helpviewer/HelpWindow.py" line="3061"/> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3056"/> + <location filename="Helpviewer/HelpWindow.py" line="3062"/> <source>ISCII</source> <translation>ISCII</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3057"/> + <location filename="Helpviewer/HelpWindow.py" line="3063"/> <source>Unicode</source> <translation>Unicode</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3058"/> + <location filename="Helpviewer/HelpWindow.py" line="3064"/> <source>Other</source> <translation>Sonstige</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3059"/> + <location filename="Helpviewer/HelpWindow.py" line="3065"/> <source>IBM</source> <translation>IBM</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3081"/> + <location filename="Helpviewer/HelpWindow.py" line="3087"/> <source>Default Encoding</source> <translation>Standardkodierung</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1246"/> <source>Downloads</source> <translation>Downloads</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1243"/> + <location filename="Helpviewer/HelpWindow.py" line="1249"/> <source>Shows the downloads window</source> <translation>Zeig das Downloadsfenster an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1245"/> + <location filename="Helpviewer/HelpWindow.py" line="1251"/> <source><b>Downloads</b><p>Shows the downloads window.</p></source> <translation><b>Downloads</b><p>Zeig das Downloadsfenster an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1609"/> - <source>VirusTotal</source> - <translation>VirusTotal</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1615"/> + <source>VirusTotal</source> + <translation>VirusTotal</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1621"/> <source><h2>File search</h2><p>In order to search for the last VirusTotal report on a given file just enter its hash. Currently the allowed hashes are MD5, SHA1 and SHA256. You can also search for a particular file report by typing in its permalink id.</p><h2>URL search</h2><p>URL searches are simple, just type in the given URL, the application will normalize it and compare it with the entries in VirusTotal's database. Alternatively you may enter the MD5 hash of an URL preceded by "url:", e.g. url:7f911bbcf618f052ac6b9928600d2820.</p><h2>User search</h2><p>Do you want to know whether a friend has a VT Community account? Simply type in his nick preceded by the symbol "@", e.g. @EmilianoMartinez.</p><h2>Search through comments</h2><p>The comments in VT Community may often help in disinfecting your PC or may proof themselves useful when analysing a particular malware sample, comment tags enable users to search through the VT Community reviews. The standard file tags are: {0} The standard URL tags are: {1}User generated tags are preceded by the symbol "#", e.g. #disinfect.</p></source> <translation><h2>Dateisuche</h2><p>Um nach dem aktuellsten VirusTotal Bericht einer Datei zu suchen, geben sie den Hashwert ein. Momentan sind die Hashmethoden MD5, SHA1 und SHA256 zugelassen. Sie können auch nach einem Dateibericht suchen, indem sie die Permalink-ID eingeben.</p><h2>URL Suche</h2><p>URL Suchen sind einfach. Geben sie lediglich die URL ein. Die Anwendung normalisiert sie und vergleicht sie mit den Einträgen in der VirusTotal Datenbank. Alternativ könne sie den MD5 hashwert der URL mit vorangestelltem "url:" eingeben, z.B. url:7f911bbcf618f052ac6b9928600d2820.</p><h2>Nutzersuche:</h2><p>Wollen sie wissen, ob ein Freund ein VT Community Konto hat? Geben sie einfach seinen Spitznamen mit vorangestelltem "@"-Symbol ein, z.B. @EmilianoMartinez.</p><h2>Kommentare durchsuchen</h2><p>Die Kommentar in der VT Community können ihnen oft helfen, ihren PC zu desinfizieren, oder sind hilfreich bei der Untersuchung von Schadsoftware. Kommentartags erlauben es den Nutzern, die VT Community Reviews zu durchsuchen. Die standardisierten Datei Tags sind: {0} Die standardisierten URL Tags sind: {1}Von Nutzern definierte Tags werden mit einem "#"-symbol eingeleitet, z.B. #disinfect.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1659"/> - <source>Search VirusTotal</source> - <translation>Suchen bei VirusTotal</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1665"/> + <source>Search VirusTotal</source> + <translation>Suchen bei VirusTotal</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1671"/> <source>Scan current site</source> <translation>Aktuelle Seite prüfen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3338"/> + <location filename="Helpviewer/HelpWindow.py" line="3344"/> <source>VirusTotal Scan</source> <translation>VirusTotal Prüfung</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="3338"/> + <location filename="Helpviewer/HelpWindow.py" line="3344"/> <source><p>The VirusTotal scan could not be scheduled.<p> <p>Reason: {0}</p></source> <translation><p>Die VirusTotal Prüfung konnte nicht beauftragt werden.<p> <p>Ursache: {0}</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="585"/> + <location filename="Helpviewer/HelpWindow.py" line="591"/> <source>Quit the eric5 Web Browser</source> <translation>Beendet den eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="586"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source><b>Quit</b><p>Quit the eric5 Web Browser.</p></source> <translation><b>Beenden</b><p>Beendet den eric5 Web-Browser.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1253"/> + <location filename="Helpviewer/HelpWindow.py" line="1259"/> <source>RSS Feeds Dialog</source> <translation>RSS Feeds Dialog</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1253"/> + <location filename="Helpviewer/HelpWindow.py" line="1259"/> <source>&RSS Feeds Dialog...</source> <translation>&RSS Feeds Dialog...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1253"/> + <location filename="Helpviewer/HelpWindow.py" line="1259"/> <source>Ctrl+Shift+F</source> <comment>Help|RSS Feeds Dialog</comment> <translation>Ctrl+Shift+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1258"/> + <location filename="Helpviewer/HelpWindow.py" line="1264"/> <source>Open a dialog showing the configured RSS feeds.</source> <translation>Öffnet einen Dialog mit den konfigurierten RSS Feeds.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> + <location filename="Helpviewer/HelpWindow.py" line="1266"/> <source><b>RSS Feeds Dialog...</b><p>Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.</p></source> <translation><b>RSS Feeds Dialog...</b><p>Dies öffnet einen Dialog zur Anzeige der konfigurierten RSS Feeds. Er kann verwendet werden, um sie zu verwalten und ihren Inhalt anzuzeigen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1269"/> + <location filename="Helpviewer/HelpWindow.py" line="1275"/> <source>Siteinfo Dialog</source> <translation>Site Informationen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1269"/> + <location filename="Helpviewer/HelpWindow.py" line="1275"/> <source>&Siteinfo Dialog...</source> <translation>&Site Informationen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1269"/> + <location filename="Helpviewer/HelpWindow.py" line="1275"/> <source>Ctrl+Shift+I</source> <comment>Help|Siteinfo Dialog</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1280"/> <source>Open a dialog showing some information about the current site.</source> <translation>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <location filename="Helpviewer/HelpWindow.py" line="1282"/> <source><b>Siteinfo Dialog...</b><p>Opens a dialog showing some information about the current site.</p></source> <translation><b>Site Informationen...</b><p>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1542"/> + <location filename="Helpviewer/HelpWindow.py" line="1548"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> + <location filename="Helpviewer/HelpWindow.py" line="835"/> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Vergrößern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> + <location filename="Helpviewer/HelpWindow.py" line="850"/> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Verkleinern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1227"/> + <location filename="Helpviewer/HelpWindow.py" line="1233"/> <source>Network Monitor</source> <translation>Netzwerkmonitor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1227"/> + <location filename="Helpviewer/HelpWindow.py" line="1233"/> <source>&Network Monitor...</source> <translation>&Netzwerkmonitor...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1232"/> + <location filename="Helpviewer/HelpWindow.py" line="1238"/> <source><b>Network Monitor...</b><p>Shows the network monitor dialog.</p></source> <translation><b>Netzwerkmonitor...</b><p>Zeigt den Netzwerkmonitordialog an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1829"/> + <location filename="Helpviewer/HelpWindow.py" line="1835"/> <source><b>eric5 Web Browser - {0}</b><p>The eric5 Web Browser is a combined help file and HTML browser. It is part of the eric5 development toolset.</p></source> <translation><b>eric5 Web Browser - {0}</b><p>Der eric5-Web-Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric5 Entwicklungsumgebung.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2120"/> + <location filename="Helpviewer/HelpWindow.py" line="2126"/> <source>Restore Window</source> <translation>Fenster wiederherstellen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1285"/> + <location filename="Helpviewer/HelpWindow.py" line="1291"/> <source>Manage User Agent Settings</source> <translation>User Agent Einstellungen verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1285"/> + <location filename="Helpviewer/HelpWindow.py" line="1291"/> <source>Manage &User Agent Settings</source> <translation>User &Agent Einstellungen verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1288"/> + <location filename="Helpviewer/HelpWindow.py" line="1294"/> <source>Shows a dialog to manage the User Agent settings</source> <translation>Zeigt einen Dialog zum Verwalten der User Agent Einstellungen an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1290"/> + <location filename="Helpviewer/HelpWindow.py" line="1296"/> <source><b>Manage User Agent Settings</b><p>Shows a dialog to manage the User Agent settings.</p></source> <translation><b>User Agent Einstellungen verwalten</b><p>Zeigt einen Dialog zum Verwalten der User Agent Einstellungen an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1437"/> + <location filename="Helpviewer/HelpWindow.py" line="1443"/> <source>Global User Agent</source> <translation>Globaler User Agent</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="446"/> <source>Save As</source> <translation>Speichern unter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="455"/> + <location filename="Helpviewer/HelpWindow.py" line="461"/> <source>Save Page Screen</source> <translation>Bildschirmphoto speichern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="455"/> - <source>Save Page Screen...</source> - <translation>Bildschirmphoto speichern...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="459"/> - <source>Save the current page as a screen shot</source> - <translation>Speichert die aktuelle Seite als Bildschirmphoto</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="461"/> + <source>Save Page Screen...</source> + <translation>Bildschirmphoto speichern...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="465"/> + <source>Save the current page as a screen shot</source> + <translation>Speichert die aktuelle Seite als Bildschirmphoto</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="467"/> <source><b>Save Page Screen...</b><p>Saves the current page as a screen shot.</p></source> <translation><b>Bildschirmphoto speichern...</b><p>Dies speichert die aktuelle Seite als Bildschirmphoto.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1299"/> + <location filename="Helpviewer/HelpWindow.py" line="1305"/> <source>Synchronize data</source> <translation>Synchronisation</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1299"/> - <source>&Synchronize Data...</source> - <translation>&Synchronisation...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1303"/> - <source>Shows a dialog to synchronize data via the network</source> - <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1305"/> + <source>&Synchronize Data...</source> + <translation>&Synchronisation...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1309"/> + <source>Shows a dialog to synchronize data via the network</source> + <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1311"/> <source><b>Synchronize Data...</b><p>This shows a dialog to synchronize data via the network.</p></source> <translation><b>Synchronisation...</b><p>Dies zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1196"/> + <location filename="Helpviewer/HelpWindow.py" line="1202"/> <source>ClickToFlash</source> <translation>ClickToFlash</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1196"/> + <location filename="Helpviewer/HelpWindow.py" line="1202"/> <source>&ClickToFlash...</source> <translation>&ClickToFlash...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1207"/> <source>Configure ClickToFlash whitelist</source> <translation>ClickToFlash Whitelist konfigurieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1203"/> + <location filename="Helpviewer/HelpWindow.py" line="1209"/> <source><b>ClickToFlash...</b><p>Opens a dialog to configure the ClickToFlash whitelist.</p></source> <translation><b>ClickToFlash...</b><p>Dies öffnet einen Dialog zur Konfiguration der ClickToFlash Whitelist.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="995"/> + <location filename="Helpviewer/HelpWindow.py" line="1001"/> <source>Personal Information</source> <translation>Persönliche Informationen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="995"/> + <location filename="Helpviewer/HelpWindow.py" line="1001"/> <source>Personal Information...</source> <translation>Persönliche Informationen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <location filename="Helpviewer/HelpWindow.py" line="1006"/> <source>Configure personal information for completing form fields</source> <translation>Persönliche Informationen zum Ausfüllen von Formularen eingeben</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> <source><b>Personal Information...</b><p>Opens a dialog to configure the personal information used for completing form fields.</p></source> <translation><b>Persönliche Informationen...</b><p>Öffnet einen Dialog zur Eingabe persönlicher Informationen, die zum Ausfüllen von Formularen verwendet werden.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1012"/> + <location filename="Helpviewer/HelpWindow.py" line="1018"/> <source>GreaseMonkey Scripts</source> <translation>GreaseMonkey Skripte</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1012"/> + <location filename="Helpviewer/HelpWindow.py" line="1018"/> <source>GreaseMonkey Scripts...</source> <translation>GreaseMonkey Skripte...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1017"/> + <location filename="Helpviewer/HelpWindow.py" line="1023"/> <source>Configure the GreaseMonkey Scripts</source> <translation>GreaseMonkey Skripte konfigurieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1019"/> + <location filename="Helpviewer/HelpWindow.py" line="1025"/> <source><b>GreaseMonkey Scripts...</b><p>Opens a dialog to configure the available GreaseMonkey Scripts.</p></source> <translation><b>GreaseMonkey Skripte...</b><p>Öffnet einen Dialog zur Konfiguration der verfügbaren GreaseMonkey Skripte.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1212"/> + <location filename="Helpviewer/HelpWindow.py" line="1218"/> <source>Manage SSL Certificates</source> <translation>SSL Zertifikate verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1212"/> + <location filename="Helpviewer/HelpWindow.py" line="1218"/> <source>Manage SSL Certificates...</source> <translation>SSL Zertifikate verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1217"/> + <location filename="Helpviewer/HelpWindow.py" line="1223"/> <source>Manage the saved SSL certificates</source> <translation>Verwalten der gespeicherten SSL Zertifikate</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1219"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>SSL Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL Zertifikate.</p></translation> </message> @@ -17701,332 +17701,332 @@ <context> <name>Hg</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="223"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="229"/> <source>The hg process finished with the exit code {0}</source> <translation>Der hg Prozess endete mit dem Code {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="226"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="232"/> <source>The hg process did not finish within 30s.</source> <translation>Der hg Prozess endete nicht innerhalb von 30s.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="228"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="234"/> <source>Could not start the hg executable.</source> <translation>Das hg Programm konnte nicht gestartet werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="254"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="260"/> <source>Create project repository</source> <translation>Projektrepository anlegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="254"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="260"/> <source>The project repository could not be created.</source> <translation>Das Projektrepository konnte nicht erzeugt werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="282"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="288"/> <source>Creating Mercurial repository</source> <translation>Lege Mercurial Repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="299"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="305"/> <source>Initial commit to Mercurial repository</source> <translation>Erstes Commit für das Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="345"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="351"/> <source>Cloning project from a Mercurial repository</source> <translation>Klone das Projekt aus dem Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="544"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="550"/> <source>Synchronizing with the Mercurial repository</source> <translation>Gleiche mit dem Mercurial Repository ab</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="596"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="602"/> <source>Adding files/directories to the Mercurial repository</source> <translation>Füge Dateien/Verzeichnisse dem Mercurial Repository hinzu</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="660"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="666"/> <source>Removing files/directories from the Mercurial repository</source> <translation>Lösche Dateien/Verzeichnisse aus dem Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="725"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="731"/> <source>Renaming {0}</source> <translation>Benenne {0} um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="859"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="865"/> <source>Taging in the Mercurial repository</source> <translation>Marke im Mercurial Repository setzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="910"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="916"/> <source>Reverting changes</source> <translation>Mache Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="964"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="970"/> <source>Merging</source> <translation>Zusammenführen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1219"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1225"/> <source>Mercurial command</source> <translation>Mercurial Befehl</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1412"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1418"/> <source>Copying {0}</source> <translation>Kopiere {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1666"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1672"/> <source>Pulling from a remote Mercurial repository</source> <translation>Pull von einem entfernten Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1719"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1725"/> <source>Pushing to a remote Mercurial repository</source> <translation>Push in ein entferntes Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1838"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1844"/> <source>Resolving files/directories</source> <translation>Löse Dateien/Verzeichnisse auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1859"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1865"/> <source>Create Branch</source> <translation>Zweig erzeugen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1859"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1865"/> <source>Enter branch name</source> <translation>Gib den Zweignamen ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1870"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1876"/> <source>Creating branch in the Mercurial repository</source> <translation>Erzeuge Zweig im Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1959"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1965"/> <source>Verifying the integrity of the Mercurial repository</source> <translation>Verifiziere die Integrität des Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1984"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1990"/> <source>Showing the combined configuration settings</source> <translation>Zeige die kombinierten Einstellungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2007"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2013"/> <source>Showing aliases for remote repositories</source> <translation>Zeige Namen für entfernte Repositories</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2030"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2036"/> <source>Recovering from interrupted transaction</source> <translation>Setze abgebrochene Transaktion zurück</translation> </message> <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2282"/> + <source>Shall the working directory be updated?</source> + <translation>Soll das Arbeitsverzeichnis aktualisiert werden?</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1900"/> + <source>Showing current branch</source> + <translation>Zeige aktuellen Zweig</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2189"/> + <source>Create changegroup</source> + <translation>Änderungsgruppe erzeugen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2294"/> + <source>Apply changegroups</source> + <translation>Änderungsgruppen anwenden</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2311"/> + <source>Bisect subcommand ({0}) invalid.</source> + <translation>Ungültiger Bisect Unterbefehl ({0}).</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2346"/> + <source>Mercurial Bisect ({0})</source> + <translation>Mercurial Bisect ({0})</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2243"/> + <source>Preview changegroup</source> + <translation>Änderungsgruppe ansehen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2059"/> + <source>Identifying project directory</source> + <translation>Projektverzeichnis identifizieren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095"/> + <source>Create .hgignore file</source> + <translation>.hgignore Datei erstellen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2095"/> + <source><p>The file <b>{0}</b> exists already. Overwrite it?</p></source> + <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2378"/> + <source>Removing files from the Mercurial repository only</source> + <translation>Lösche Dateien nur aus dem Mercurial Repository</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2147"/> + <source>Mercurial Changegroup Files (*.hg)</source> + <translation>Mercurial Änderungsgruppendateien (*.hg)</translation> + </message> + <message> <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2276"/> - <source>Shall the working directory be updated?</source> - <translation>Soll das Arbeitsverzeichnis aktualisiert werden?</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1894"/> - <source>Showing current branch</source> - <translation>Zeige aktuellen Zweig</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2183"/> - <source>Create changegroup</source> - <translation>Änderungsgruppe erzeugen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2288"/> - <source>Apply changegroups</source> - <translation>Änderungsgruppen anwenden</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2305"/> - <source>Bisect subcommand ({0}) invalid.</source> - <translation>Ungültiger Bisect Unterbefehl ({0}).</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2340"/> - <source>Mercurial Bisect ({0})</source> - <translation>Mercurial Bisect ({0})</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2237"/> - <source>Preview changegroup</source> - <translation>Änderungsgruppe ansehen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2053"/> - <source>Identifying project directory</source> - <translation>Projektverzeichnis identifizieren</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2089"/> - <source>Create .hgignore file</source> - <translation>.hgignore Datei erstellen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2089"/> - <source><p>The file <b>{0}</b> exists already. Overwrite it?</p></source> - <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2372"/> - <source>Removing files from the Mercurial repository only</source> - <translation>Lösche Dateien nur aus dem Mercurial Repository</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2141"/> - <source>Mercurial Changegroup Files (*.hg)</source> - <translation>Mercurial Änderungsgruppendateien (*.hg)</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2270"/> <source>Mercurial Changegroup Files (*.hg);;All Files (*)</source> <translation>Mercurial Änderungsgruppendateien (*.hg);;Alle Dateien (*)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2247"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2253"/> <source>Identifying changegroup file</source> <translation>Identifiziere Änderungsgruppendatei</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2429"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2435"/> <source>Backing out changeset</source> <translation>Änderungssatz umkehren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2409"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2415"/> <source>No revision given. Aborting...</source> <translation>Keine Revision angegeben. Abbruch...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2158"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2164"/> <source><p>The Mercurial changegroup file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Mercurial Änderungsgruppendatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2454"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2460"/> <source>Rollback last transaction</source> <translation>Letzte Transaktion zurücksetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2449"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2455"/> <source>Are you sure you want to rollback the last transaction?</source> <translation>Wollen sie die letzte Transaktion wirklich zurücksetzen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="492"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="498"/> <source>Committing changes to Mercurial repository</source> <translation>Pflege Änderungen in das Mercurial Repository ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2984"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2990"/> <source>Mercurial Command Server</source> <translation>Mercurial Befehlsserver</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2855"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2861"/> <source><p>The Mercurial Command Server could not be restarted.</p><p>Reason: {0}</p></source> <translation><p>Der Mercurial Befehlsserver konnte nicht wiedergestartet werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2984"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2990"/> <source><p>The Mercurial Command Server could not be started.</p><p>Reason: {0}</p></source> <translation><p>Der Mercurial Befehlsserver konnte nicht gestartet werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2523"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2529"/> <source>Import Patch</source> <translation>Patch importieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2571"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2577"/> <source>Export Patches</source> <translation>Patches exportieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2618"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2624"/> <source>Change Phase</source> <translation>Phase ändern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2671"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2677"/> <source>Copy Changesets</source> <translation>Änderungssätze kopieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2698"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2704"/> <source>Copy Changesets (Continue)</source> <translation>Änderungssätze kopieren (Fortsetzung)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2779"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2785"/> <source>Add Sub-repository</source> <translation>Unterrepository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2809"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2815"/> <source><p>The sub-repositories file .hgsub could not be read.</p><p>Reason: {0}</p></source> <translation><p>Die Unterrepositorydatei .hgsub konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2762"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2768"/> <source><p>The sub-repositories file .hgsub already contains an entry <b>{0}</b>. Aborting...</p></source> <translation><p>Die Unterrepositorydatei .hgsub enthält bereits einen Eintrag <b>{0}</b>. Abbruch...</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2826"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832"/> <source><p>The sub-repositories file .hgsub could not be written to.</p><p>Reason: {0}</p></source> <translation><p>Die Unterrepositorydatei .hgsub konnte nicht gespeichert werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2826"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2832"/> <source>Remove Sub-repositories</source> <translation>Unterrepositories löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2798"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="2804"/> <source><p>The sub-repositories file .hgsub does not exist. Aborting...</p></source> <translation><p>Die Unterrepositorydatei .hgsub existiert nicht. Abbruch...</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="428"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="434"/> <source>Commit Changes</source> <translation>Änderungen einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="428"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="434"/> <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source> <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="905"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="911"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="898"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="904"/> <source>Do you really want to revert all changes to these files or directories?</source> <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="905"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="911"/> <source>Do you really want to revert all changes of the project?</source> <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation> </message> @@ -18034,7 +18034,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="92"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="94"/> <source>Add Sub-repository</source> <translation>Unterrepository hinzufügen</translation> </message> @@ -18074,7 +18074,7 @@ <translation>Gib die URL des Unterrepository ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="92"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="94"/> <source>The sub-repository path must be inside the project.</source> <translation>Der Unterrepositorypfad muss innerhalb des Projektes liegen.</translation> </message> @@ -18157,12 +18157,12 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py" line="135"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py" line="141"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py" line="135"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py" line="141"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -18295,7 +18295,7 @@ <translation>Mit aktuellem Vorgänger zusammenführen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="173"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="175"/> <source>Backed out changeset <{0}>.</source> <translation>Änderungssatz <{0}> umgekehrt.</translation> </message> @@ -18318,7 +18318,7 @@ <context> <name>HgBookmarkDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkDialog.py" line="45"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkDialog.py" line="47"/> <source>Define Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> @@ -18428,7 +18428,7 @@ <translation>TIP</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkDialog.py" line="42"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarkDialog.py" line="44"/> <source>Move Bookmark</source> <translation>Lesezeichen verschieben</translation> </message> @@ -18526,27 +18526,27 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="48"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="54"/> <source>Mercurial Incoming Bookmarks</source> <translation>Eingehende Mercurial Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="50"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="56"/> <source>Mercurial Outgoing Bookmarks</source> <translation>Ausgehende Mercurial Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="136"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="142"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="136"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="142"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="168"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksInOutDialog.py" line="174"/> <source>no bookmarks found</source> <translation>keine Lesezeichen vorhanden</translation> </message> @@ -18638,17 +18638,17 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="121"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="127"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="121"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="127"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="153"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/BookmarksExtension/HgBookmarksListDialog.py" line="159"/> <source>no bookmarks defined</source> <translation>keine Lesezeichen vorhanden</translation> </message> @@ -18764,42 +18764,42 @@ <context> <name>HgClient</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="85"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="90"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="133"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="138"/> <source>Did not receive the 'hello' message.</source> <translation>'Hallo' Nachricht konnte nicht empfangen werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="135"/> - <source>Received data on unexpected channel.</source> - <translation>Daten auf unerwartetem Kanal empfangen.</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="140"/> + <source>Received data on unexpected channel.</source> + <translation>Daten auf unerwartetem Kanal empfangen.</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="145"/> <source>Bad 'hello' message, expected 'capabilities: ' but got '{0}'.</source> <translation>Ungültige 'Hallo' Nachricht; Erwartete 'capabilities: ', empfing jedoch '{0}'.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="144"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="149"/> <source>'capabilities' message did not contain any capability.</source> <translation>'capabilities' Nachricht enthielt keine Fähigkeiten.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="152"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="157"/> <source>Bad 'hello' message, expected 'encoding: ' but got '{0}'.</source> <translation>Ungültige 'Hallo' Nachricht; Erwartete 'encoding: ', empfing jedoch '{0}'.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="156"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="161"/> <source>'encoding' message did not contain any encoding.</source> <translation>'encoding' Nachricht enthielt keine Kodierung.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="331"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgClient.py" line="336"/> <source>For message see output dialog.</source> <translation>Nachricht siehe Ausgabedialog.</translation> </message> @@ -18995,12 +18995,12 @@ <translation>Operation erzwingen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py" line="46"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py" line="48"/> <source>Mercurial Move</source> <translation>Mercurial Move</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py" line="81"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgCopyDialog.py" line="83"/> <source>Select target</source> <translation>Wähle Ziel aus</translation> </message> @@ -19070,12 +19070,12 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDialog.py" line="143"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDialog.py" line="149"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDialog.py" line="143"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDialog.py" line="149"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -19143,52 +19143,52 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="194"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="200"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="194"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="200"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="219"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="225"/> <source>There is no difference.</source> <translation>Es gibt keinen Unterschied.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="431"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="437"/> <source>Save Diff</source> <translation>Diff speichern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="399"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="405"/> <source>Patch Files (*.diff)</source> <translation>Patchdateien (*.diff)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="431"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="437"/> <source><p>The patch file <b>{0}</b> could not be saved.<br>Reason: {1}</p></source> <translation><p>Die Patchdatei <b>{0}</b> konnte nicht gespeichert werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="416"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="422"/> <source><p>The patch file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Patchdatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="115"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="121"/> <source>Patch Contents</source> <translation>Patchinhalt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="232"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="238"/> <source><Start></source> <translation><Anfang></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="233"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/> <source><End></source> <translation><Ende></translation> </message> @@ -19196,7 +19196,7 @@ <context> <name>HgExportDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py" line="73"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py" line="75"/> <source>Export Patches</source> <translation>Patches exportieren</translation> </message> @@ -19476,7 +19476,7 @@ <translation>Wähle die als Filter zu verwendende Kategorie</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="309"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="315"/> <source>Revision</source> <translation>Revision</translation> </message> @@ -19551,17 +19551,17 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="115"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="121"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="115"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="121"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="147"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="153"/> <source>no signatures found</source> <translation>keine Signaturen gefunden</translation> </message> @@ -19752,12 +19752,12 @@ <translation>Erzwinge Import</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py" line="67"/> <source>Select patch file</source> <translation>Patchdatei auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgImportDialog.py" line="67"/> <source>Patch Files (*.diff *.patch);;All Files (*)</source> <translation>Patchdateien (*.diff *.patch);;Alle Dateien (*)</translation> </message> @@ -19765,7 +19765,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="57"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="63"/> <source>Mercurial Log</source> <translation>Mercurial Log</translation> </message> @@ -19795,17 +19795,17 @@ <translation>Wähle das als Filter zu verwendende Feld</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1202"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1208"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1199"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1205"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="92"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -19920,42 +19920,42 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="123"/> <source>Added</source> <translation>Hinzugefügt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="124"/> <source>Deleted</source> <translation>Gelöscht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="119"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/> <source>Modified</source> <translation>Modifiziert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="700"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="706"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="700"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="706"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="502"/> - <source>The hg process did not finish within 30s.</source> - <translation>Der hg Prozess endete nicht innerhalb von 30s.</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="505"/> - <source>Could not start the hg executable.</source> - <translation>Das hg Programm konnte nicht gestartet werden.</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="508"/> + <source>The hg process did not finish within 30s.</source> + <translation>Der hg Prozess endete nicht innerhalb von 30s.</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="511"/> + <source>Could not start the hg executable.</source> + <translation>Das hg Programm konnte nicht gestartet werden.</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="514"/> <source>Mercurial Error</source> <translation>Mercurial Fehler</translation> </message> @@ -20005,32 +20005,32 @@ <translation>Wähle den als Filter zu verwendenden Zweig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="86"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="92"/> <source>All</source> <translation>Alle</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="59"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="65"/> <source>Mercurial Log (Incoming)</source> <translation>Mercurial Log (Eingang)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="67"/> <source>Mercurial Log (Outgoing)</source> <translation>Mercurial Log (Ausgang)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="77"/> <source>Press to refresh the list of changesets</source> <translation>Drücken, um die Liste der Änderungssätze zu erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="70"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="76"/> <source>&Refresh</source> <translation>&Erneuern</translation> </message> @@ -20061,12 +20061,12 @@ <translation>Drücken, um die ausgewählten Änderungssätze in den aktuellen Zweig zu kopeieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1352"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1358"/> <source>Copy Changesets</source> <translation>Änderungssätze kopieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1352"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1358"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> @@ -20139,121 +20139,121 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="55"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="61"/> <source><b>Processing your request, please wait...</b></source> <translation><b>Verarbeite ihre Anfrage, bitte warten...</b></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="71"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="185"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="191"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="185"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="191"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="268"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="274"/> <source>No log available for '{0}'</source> <translation>Kein Log für '{0}' verfügbar</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="301"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="307"/> <source>diff to {0}</source> <translation>Unterschied zu {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="312"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="318"/> <source>Branches: {0}<br /> </source> <translation>Zweige: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="314"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="320"/> <source>Tags: {0}<br /> </source> <translation>Marken: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="319"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="325"/> <source>Parents: {0}<br /> </source> <translation>Vorgänger: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="321"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="327"/> <source><i>Author: {0}</i><br /> </source> <translation><i>Autor: {0}</i><br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="324"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="330"/> <source><i>Date: {0}, {1}</i><br /> </source> <translation><i>Datum: {0}, {1}</i><br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="338"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="344"/> <source>Added {0}<br /> </source> <translation>Hinzugefügt: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="344"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="350"/> <source>Modified {0}<br /> </source> <translation>Modifiziert: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="350"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="356"/> <source>Deleted {0}<br /> </source> <translation>Gelöscht: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="235"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="241"/> <source>The hg process did not finish within 30s.</source> <translation>Der hg Prozess endete nicht innerhalb von 30s.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="237"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="243"/> <source>Could not start the hg executable.</source> <translation>Das hg Programm konnte nicht gestartet werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="240"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="246"/> <source>Mercurial Error</source> <translation>Mercurial Fehler</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="334"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="340"/> <source>Added {0} (copied from {1})<br /> </source> <translation>Hinzugefügt: {0} (kopiert von {1})</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="317"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="323"/> <source>Bookmarks: {0}<br /> </source> <translation>Lesezeichen: {0}<br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="310"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgLogDialog.py" line="316"/> <source>Phase: {0}<br /> </source> <translation>Phase: {0}<br /> @@ -20522,12 +20522,12 @@ und in dieses Verzeichnis geschrieben.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py" line="63"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py" line="65"/> <source>Select Repository-Directory</source> <translation>Wähle Repository-Verzeichnis</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py" line="77"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgNewProjectOptionsDialog.py" line="79"/> <source>Select Project Directory</source> <translation>Wähle Projektverzeichnis</translation> </message> @@ -20614,17 +20614,17 @@ <translation>Phasenwechsel erzwingen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="30"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="32"/> <source>Public</source> <translation>Öffentlich</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="31"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="33"/> <source>Draft</source> <translation>Entwurf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="32"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgPhaseDialog.py" line="34"/> <source>Secret</source> <translation>Geheim</translation> </message> @@ -20632,107 +20632,107 @@ <context> <name>HgProjectBrowserHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="453"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455"/> <source>Version Control</source> <translation>Versionskontrolle</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="464"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="466"/> <source>Commit changes to repository...</source> <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="469"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="471"/> <source>Add to repository</source> <translation>Zum Repository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="472"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474"/> <source>Remove from repository (and disk)</source> <translation>Vom Repository (und der Platte) löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="402"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404"/> <source>Show log</source> <translation>Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="405"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407"/> <source>Show log browser</source> <translation>Zeige Log Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="477"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="479"/> <source>Show status</source> <translation>Status anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="483"/> <source>Show difference</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="484"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="486"/> <source>Show difference (extended)</source> <translation>Unterschiede anzeigen (erweitert)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="236"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="238"/> <source>Show annotated file</source> <translation>Zeige kommentierte Datei</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="489"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="491"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="495"/> - <source>Select all local file entries</source> - <translation>Alle lokalen Dateieinträge auswählen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="497"/> - <source>Select all versioned file entries</source> - <translation>Alle versionierten Dateieinträge auswählen</translation> + <source>Select all local file entries</source> + <translation>Alle lokalen Dateieinträge auswählen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="499"/> - <source>Select all local directory entries</source> - <translation>Alle lokalen Verzeichniseinträge auswählen</translation> + <source>Select all versioned file entries</source> + <translation>Alle versionierten Dateieinträge auswählen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="501"/> + <source>Select all local directory entries</source> + <translation>Alle lokalen Verzeichniseinträge auswählen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="503"/> <source>Select all versioned directory entries</source> <translation>Alle versionierten Verzeichniseinträge auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="622"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624"/> <source>Remove from repository only</source> <translation>Nur vom Repository löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="611"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="613"/> <source>Do you really want to remove these translation files from the repository?</source> <translation>Wollen Sie wirklich diese Übersetzungsdateien vom Repository löschen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="622"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624"/> <source>Do you really want to remove these files from the repository?</source> <translation>Wollen Sie wirklich diese Dateien vom Repository löschen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="492"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494"/> <source>Conflict resolved</source> <translation>Konflikt gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397"/> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="399"/> + <source>Copy</source> + <translation>Kopieren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401"/> <source>Move</source> <translation>Verschieben</translation> </message> @@ -20740,1127 +20740,1127 @@ <context> <name>HgProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="101"/> <source>New from repository</source> <translation>Neu aus Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="101"/> <source>&New from repository...</source> <translation>&Neu aus Repository...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="102"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="104"/> <source>Create (clone) a new project from a Mercurial repository</source> <translation>Erzeuge (clone) ein neues Projekt aus einem Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="105"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="107"/> <source><b>New from repository</b><p>This creates (clones) a new local project from a Mercurial repository.</p></source> <translation><b>Neu aus Repository</b><p>Dies erzeugt (clone) ein neues Projekt aus dem Mercurial Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="113"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="115"/> <source>Show incoming log</source> <translation>Zeige eingehendes Log</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="117"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="119"/> <source>Show the log of incoming changes</source> <translation>Zeige das Log eingehender Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="120"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="122"/> <source><b>Show incoming log</b><p>This shows the log of changes coming into the repository.</p></source> <translation><b>Zeige eingehendes Log</b><p>Dies zeigt das Log von Änderungen, die in das Repository gehen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="127"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="129"/> <source>Pull changes</source> <translation>Änderungen herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="131"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="133"/> <source>Pull changes from a remote repository</source> <translation>Änderungen von einem entfernten Repository herunterladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="136"/> <source><b>Pull changes</b><p>This pulls changes from a remote repository into the local repository.</p></source> <translation><b>Änderungen herunterladen</b><p>Dies lädt Änderungen von einem entfernten Repository in das lokale Repository herunter.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="142"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="144"/> <source>Update from repository</source> <translation>Abgleich mit Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="142"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="144"/> <source>&Update from repository</source> <translation>&Abgleich mit Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="146"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="148"/> <source>Update the local project from the Mercurial repository</source> <translation>Abgleich des lokalen Projektes mit dem Mercurial Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="149"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="151"/> <source><b>Update from repository</b><p>This updates the local project from the Mercurial repository.</p></source> <translation><b>Abgleich mit Repository</b><p>Dies gleicht das lokale Projekt mit dem Mercurial Repository ab.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="156"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="158"/> <source>Commit changes to repository</source> <translation>Änderungen in Repository einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="156"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="158"/> <source>&Commit changes to repository...</source> <translation>&Änderungen in Repository einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="160"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="162"/> <source>Commit changes to the local project to the Mercurial repository</source> <translation>Änderungen am lokalen Projekt in das Mercurial Repository einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="163"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="165"/> <source><b>Commit changes to repository</b><p>This commits changes to the local project to the Mercurial repository.</p></source> <translation><b>Änderungen in Repository einpflegen</b><p>Dies pflegt Änderungen am lokalen Projekt in das Mercurial Repository ein.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="171"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="173"/> <source>Show outgoing log</source> <translation>Zeige ausgehendes Log</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="175"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="177"/> <source>Show the log of outgoing changes</source> <translation>Zeige das Log ausgehender Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="178"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="180"/> <source><b>Show outgoing log</b><p>This shows the log of changes outgoing out of the repository.</p></source> <translation><b>Zeige ausgehendes Log</b><p>Dies zeigt das Log von Änderungen, die aus dem Repository gehen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="185"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="187"/> <source>Push changes</source> <translation>Änderungen hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="189"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="191"/> <source>Push changes to a remote repository</source> <translation>Änderungen an ein entferntes Repository hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="192"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="194"/> <source><b>Push changes</b><p>This pushes changes from the local repository to a remote repository.</p></source> <translation><b>Änderungen hochladen</b><p>Dies lädt Änderungen vom lokalen Repository an ein entferntes Repository hoch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="215"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="217"/> <source>Export from repository</source> <translation>Export aus Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="215"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="217"/> <source>&Export from repository...</source> <translation>&Export aus Repository...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="219"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="221"/> <source>Export a project from the repository</source> <translation>Exportiert ein Projekt aus dem Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="222"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="224"/> <source><b>Export from repository</b><p>This exports a project from the repository.</p></source> <translation><b>Export aus Repository</b<<p>Dies exportiert ein Projekt aus dem Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="229"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="231"/> <source>Show log</source> <translation>Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="229"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="231"/> <source>Show &log</source> <translation>&Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="233"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="235"/> <source>Show the log of the local project</source> <translation>Zeigt die Änderungsbeschreibungen des lokalen Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="236"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="238"/> <source><b>Show log</b><p>This shows the log of the local project.</p></source> <translation><b>Beschreibungen anzeigen</b><p>Dies zeigt die Änderungsbeschreibungen (Log) des lokalen Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="243"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="245"/> <source>Show log browser</source> <translation>Zeige Log Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="247"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="249"/> <source>Show a dialog to browse the log of the local project</source> <translation>Zeigt einen Dialog, um das Log des lokalen Projektes durchzusehen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="250"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="252"/> <source><b>Show log browser</b><p>This shows a dialog to browse the log of the local project. A limited number of entries is shown first. More can be retrieved later on.</p></source> <translation><b>Zeige Log Browser</b><p>Dies zeigt einen Dialog, um das Log des lokalen Projektes durchzusehen. Zunächst wird nur eine begrenzte Anzahl an Einträgen angezeigt. Weitere können später geholt werden.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="259"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="261"/> <source>Show difference</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="259"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="261"/> <source>Show &difference</source> <translation>&Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="263"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="265"/> <source>Show the difference of the local project to the repository</source> <translation>Zeigt den Unterschied des lokalen Projektes zum Repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="266"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="268"/> <source><b>Show difference</b><p>This shows the difference of the local project to the repository.</p></source> <translation><b>Unterschiede anzeigen</b><p>Dies zeigt den Unterschied des lokalen Projektes zum Repository an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="273"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="275"/> <source>Show difference (extended)</source> <translation>Unterschiede anzeigen (erweitert)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="277"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="279"/> <source>Show the difference of revisions of the project to the repository</source> <translation>Zeigt den Unterschied von Revisionen des Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="280"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="282"/> <source><b>Show difference (extended)</b><p>This shows the difference of selectable revisions of the project.</p></source> <translation><b>Unterschiede anzeigen (erweitert)</b><p>Dies zeigt den Unterschied von Revisionen des Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="287"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="289"/> <source>Show status</source> <translation>Status anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="287"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="289"/> <source>Show &status</source> <translation>Status an&zeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="291"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="293"/> <source>Show the status of the local project</source> <translation>Zeige den Status des lokalen Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="294"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="296"/> <source><b>Show status</b><p>This shows the status of the local project.</p></source> <translation><b>Status anzeigen</b><p>Dies zeigt den Status des lokalen Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="301"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="303"/> <source>Show heads</source> <translation>Köpfe anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="304"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="306"/> <source>Show the heads of the repository</source> <translation>Zeigt die Köpfe des Repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="307"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="309"/> <source><b>Show heads</b><p>This shows the heads of the repository.</p></source> <translation><b>Köpfe anzeigen</b><p>Dies zeigt die Köpfe des Repository an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="314"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="316"/> <source>Show parents</source> <translation>Vorgänger anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="317"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="319"/> <source>Show the parents of the repository</source> <translation>Zeigt die Vorgänger des repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="320"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="322"/> <source><b>Show parents</b><p>This shows the parents of the repository.</p></source> <translation><b>Vorgänger anzeigen</b><p>Dies zeigt die Vorgänger des repository an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="327"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="329"/> <source>Show tip</source> <translation>Spitze (tip) anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="330"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="332"/> <source>Show the tip of the repository</source> <translation>Zeigt die Spitze (tip) des Repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="333"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="335"/> <source><b>Show tip</b><p>This shows the tip of the repository.</p></source> <translation><b>Spitze (tip) anzeigen</b><p>Dies zeigt die Spitze (tip) des Repository an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="340"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="342"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="340"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="342"/> <source>Re&vert changes</source> <translation>Änderungen &rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="344"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="346"/> <source>Revert all changes made to the local project</source> <translation>Alle Änderungen am lokalen Projekt werden rückgängig gemacht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="347"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="349"/> <source><b>Revert changes</b><p>This reverts all changes made to the local project.</p></source> <translation><b>Änderungen rückgängig</b><p>Dies macht alle Änderungen am lokalen Projekt werden rückgängig.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="354"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="356"/> <source>Merge</source> <translation>Änderungen einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="354"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="356"/> <source>Mer&ge changes...</source> <translation>Änderungen ein&pflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="358"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="360"/> <source>Merge changes of a revision into the local project</source> <translation>Pflege Änderungen einer Revision in das lokale Projekt ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="361"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="363"/> <source><b>Merge</b><p>This merges changes of a revision into the local project.</p></source> <translation><b>Änderungen einpflegen</b><p>Dies pfleget Änderungen einer Revision in das lokale Projekt ein.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="381"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="383"/> <source>Tag in repository</source> <translation>Im Repository markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="381"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="383"/> <source>&Tag in repository...</source> <translation>Im Repository &markieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="385"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="387"/> <source>Tag the local project in the repository</source> <translation>Das lokale Projekt im Repository markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="388"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="390"/> <source><b>Tag in repository</b><p>This tags the local project in the repository.</p></source> <translation><b>Im Repository markieren</b><p>Dies markiert das lokale Projekt im Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="395"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="397"/> <source>List tags</source> <translation>Marken listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="395"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="397"/> <source>List tags...</source> <translation>Marken listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="398"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="400"/> <source>List tags of the project</source> <translation>Listet Marken des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="401"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="403"/> <source><b>List tags</b><p>This lists the tags of the project.</p></source> <translation><b>Marken listen</b><p>Dies listet die Marken des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="408"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="410"/> <source>List branches</source> <translation>Zweige listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="408"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="410"/> <source>List branches...</source> <translation>Zweige listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="411"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="413"/> <source>List branches of the project</source> <translation>Listet Zweige des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="414"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="416"/> <source><b>List branches</b><p>This lists the branches of the project.</p></source> <translation><b>Zweige listen</b><p>Dies listet die Zweige des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="421"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="423"/> <source>Create branch</source> <translation>Zweig erzeugen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="421"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="423"/> <source>Create &branch...</source> <translation>&Zweig erzeugen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="425"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="427"/> <source>Create a new branch for the local project in the repository</source> <translation>Erzeuge einen neuen Zweig für das lokale Projekt im Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="428"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="430"/> <source><b>Create branch</b><p>This creates a new branch for the local project in the repository.</p></source> <translation><b>Zweig erzeugen</b><p>Dies erzeugt einen neuen Zweig für das lokale Projekt im Repository</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="450"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="452"/> <source>Close branch</source> <translation>Zweig abschließen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="453"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="455"/> <source>Close the current branch of the local project</source> <translation>Schließt den aktuellen Zweig des lokalen Projektes ab</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="456"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="458"/> <source><b>Close branch</b><p>This closes the current branch of the local project.</p></source> <translation><b>Zweig abschließen</b><p>Dies schließt den aktuellen Zweig des lokalen Projektes ab.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="476"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="478"/> <source>Switch</source> <translation>Umschalten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="476"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="478"/> <source>S&witch...</source> <translation>Umschal&ten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="480"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="482"/> <source>Switch the working directory to another revision</source> <translation>Schaltet das Arbeitsverzeichnis auf eine andere Revision um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="483"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="485"/> <source><b>Switch</b><p>This switches the working directory to another revision.</p></source> <translation><b>Umschalten</b><p>Dies schaltet das lokale Arbeitsverzeichnis auf eine andere Revision um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="490"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="492"/> <source>Cleanup</source> <translation>Aufräumen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="490"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="492"/> <source>Cleanu&p</source> <translation>Au&fräumen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="493"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="495"/> <source>Cleanup the local project</source> <translation>Räume das lokale Projekt auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="496"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="498"/> <source><b>Cleanup</b><p>This performs a cleanup of the local project.</p></source> <translation><b>Aufräumen</b><p>Dies räumt das lokale Projekt auf.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="503"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="505"/> <source>Execute command</source> <translation>Befehl ausführen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="503"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="505"/> <source>E&xecute command...</source> <translation>Befehl ausf&ühren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="506"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="508"/> <source>Execute an arbitrary Mercurial command</source> <translation>Führe einen beliebigen Mercurial Befehl aus</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="509"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="511"/> <source><b>Execute command</b><p>This opens a dialog to enter an arbitrary Mercurial command.</p></source> <translation><b>Befehl ausführen</b><p>Dies öffnet einen Dialog zur Eingabe eines beliebeigen Mercurial Befehls.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="516"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="518"/> <source>Command options</source> <translation>Befehlsoptionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="516"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="518"/> <source>Command &options...</source> <translation>Befehls&optionen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="519"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="521"/> <source>Show the Mercurial command options</source> <translation>Zeigt die Mercurial Befehlsoptionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="520"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="522"/> <source><b>Command options...</b><p>This shows a dialog to edit the Mercurial command options.</p></source> <translation><b>Befehlsoptionen...</b><p>Dies öffnet einen Dialog zur Eingabe der Mercurial Befehlsoptionen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="527"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="529"/> <source>Configure</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="527"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="529"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="530"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="532"/> <source>Show the configuration dialog with the Mercurial page selected</source> <translation>Zeigt den Konfigurationsdialog mit ausgewählter Mercurial Seite</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="533"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="535"/> <source><b>Configure</b><p>Show the configuration dialog with the Mercurial page selected.</p></source> <translation><b>Einstellungen</b><p>Zeigt den Konfigurationsdialog mit ausgewählter Mercurial Seite.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="581"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="583"/> <source>Show paths</source> <translation>Pfade anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="581"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="583"/> <source>Show paths...</source> <translation>Pfade anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="584"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="586"/> <source>Show the aliases for remote repositories</source> <translation>Zeigt die Namen für entfernte Repositories</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="587"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="589"/> <source><b>Show paths</b><p>This shows the aliases for remote repositories.</p></source> <translation><b>Pfade anzeigen</b><p>Dies zeigt die Namen für entfernte Repositories.</p<</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="594"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="596"/> <source>Verify repository</source> <translation>Repository verifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="594"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="596"/> <source>Verify repository...</source> <translation>Repository verifizieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="597"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="599"/> <source>Verify the integrity of the repository</source> <translation>Verfiziert die Integrität des Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="600"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="602"/> <source><b>Verify repository</b><p>This verifies the integrity of the repository.</p></source> <translation><b>Repository verifizieren</b><p>Dies verfiziert die Integrität des Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="607"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="609"/> <source>Recover</source> <translation>Transaktion zurücksetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="607"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="609"/> <source>Recover...</source> <translation>Transaktion zurücksetzen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="610"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="612"/> <source>Recover from an interrupted transaction</source> <translation>Setzt eine abgebrochene Transaktion zurück</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="613"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="615"/> <source><b>Recover</b><p>This recovers from an interrupted transaction.</p></source> <translation><b>Transaktion zurücksetzen</b><p>Dies setzt eine abgebrochene Transaktion zurück.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="915"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="917"/> <source>Repository Administration</source> <translation>Repository Administration</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="633"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="635"/> <source>Create .hgignore</source> <translation>Erstelle .hgignore</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="636"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="638"/> <source>Create a .hgignore file with default values</source> <translation>Erstelle eine .hgignore Datei mit Standardwerten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="639"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="641"/> <source><b>Create .hgignore</b><p>This creates a .hgignore file with default values.</p></source> <translation><b>Erstelle .hgignore</b><p>Dies erstellt eine .hgignore Datei mit Standardwerten.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="646"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="648"/> <source>Create changegroup</source> <translation>Änderungsgruppe erzeugen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="646"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="648"/> <source>Create changegroup...</source> <translation>Änderungsgruppe erzeugen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="649"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="651"/> <source>Create changegroup file collecting changesets</source> <translation>Erzeuge eine Änderungsgruppendatei für Änderungssätze</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1287"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1289"/> <source>Apply changegroups</source> <translation>Änderungsgruppen anwenden</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="688"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="690"/> <source>Apply changegroups...</source> <translation>Änderungsgruppen anwenden...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="691"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="693"/> <source>Apply one or several changegroup files</source> <translation>Wende eine oder mehrere Änderungsgruppendateien an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="945"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="947"/> <source>Changegroup Management</source> <translation>Verwaltung von Änderungsgruppen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="652"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="654"/> <source><b>Create changegroup</b><p>This creates a changegroup file collecting selected changesets (hg bundle).</p></source> <translation><b>Änderungsgruppe erzeugen</b><p>Dies erzeuge eine Änderungsgruppendatei für ausgewählte Änderungssätze (hg bundle).</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="694"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="696"/> <source><b>Apply changegroups</b><p>This applies one or several changegroup files generated by the 'Create changegroup' action (hg unbundle).</p></source> <translation><b>Änderungsgruppen anwenden</b><p>Dies wendet eine oder mehrere mit 'Änderungsgruppe erzeugen' erstellte Änderungsgruppendateien an (hg unbundle).</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="463"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="465"/> <source>Show current branch</source> <translation>Zeige aktuellen Zweig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="466"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="468"/> <source>Show the current branch of the project</source> <translation>Zeigt den aktuellen Zweig des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="469"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="471"/> <source><b>Show current branch</b><p>This shows the current branch of the project.</p></source> <translation><b>Zeige aktuellen Zweig</b><p>Dies zeigt den aktuellen Zweig des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="702"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="704"/> <source>Mark as "good"</source> <translation>Als "gut" markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="705"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="707"/> <source>Mark a selectable changeset as good</source> <translation>Markiere einen auswählbaren Änderungssatz als gut</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="708"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="710"/> <source><b>Mark as good</b><p>This marks a selectable changeset as good.</p></source> <translation><b>Als gut markieren</b><p>Dies markiert einen auswählbaren Änderungssatz als gut.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="715"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="717"/> <source>Mark as "bad"</source> <translation>Als "schlecht" markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="718"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="720"/> <source>Mark a selectable changeset as bad</source> <translation>Markiere einen auswählbaren Änderungssatz als schlecht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="721"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="723"/> <source><b>Mark as bad</b><p>This marks a selectable changeset as bad.</p></source> <translation><b>Als schlecht markieren</b><p>Dies markiert einen auswählbaren Änderungssatz als schlecht.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="728"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="730"/> <source>Skip</source> <translation>Überspringen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="741"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="743"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="744"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="746"/> <source>Reset the bisect search data</source> <translation>Setzt die Bisect Suchdaten zurück</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="747"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="749"/> <source><b>Reset</b><p>This resets the bisect search data.</p></source> <translation><b>Zurücksetzen</b><p>Dies setzt die Bisect Suchdaten zurück.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="959"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="961"/> <source>Bisect</source> <translation>Bisect</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="702"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="704"/> <source>Mark as "good"...</source> <translation>Als "gut" markieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="715"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="717"/> <source>Mark as "bad"...</source> <translation>Als "schlecht" markieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="660"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="662"/> <source>Preview changegroup</source> <translation>Änderungsgruppe ansehen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="660"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="662"/> <source>Preview changegroup...</source> <translation>Änderungsgruppe ansehen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="620"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="622"/> <source>Identify</source> <translation>Identifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="620"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="622"/> <source>Identify...</source> <translation>Identifizieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="623"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="625"/> <source>Identify the project directory</source> <translation>Identifiziere das Projektverzeichnis</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="626"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="628"/> <source><b>Identify</b><p>This identifies the project directory.</p></source> <translation><b>Identifizieren</b><p>Dies identifiziert das Projektverzeichnis.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="663"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="665"/> <source>Preview a changegroup file containing a collection of changesets</source> <translation>Eine Änderungsgruppendatei für Änderungssätze ansehen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="666"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="668"/> <source><b>Preview changegroup</b><p>This previews a changegroup file containing a collection of changesets.</p></source> <translation><b>Änderungsgruppe ansehen</b><p>Dies zeigt den Inhalt einer Änderungsgruppendatei für Änderungssätze an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="674"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="676"/> <source>Identify changegroup</source> <translation>Änderungsgruppe identifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="674"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="676"/> <source>Identify changegroup...</source> <translation>Änderungsgruppe identifizieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="677"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="679"/> <source>Identify a changegroup file containing a collection of changesets</source> <translation>Eine Änderungsgruppendatei für Änderungssätze identifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="680"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="682"/> <source><b>Identify changegroup</b><p>This identifies a changegroup file containing a collection of changesets.</p></source> <translation><b>Änderungsgruppe ansehen</b><p>Dies identifiziert eine Änderungsgruppendatei für Änderungssätze.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="754"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="756"/> <source>Back out changeset</source> <translation>Änderungssatz umkehren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="757"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="759"/> <source>Back out changes of an earlier changeset</source> <translation>Änderungen eines früheren Änderungssatzes umkehren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="760"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="762"/> <source><b>Back out changeset</b><p>This backs out changes of an earlier changeset.</p></source> <translation><b>Änderungssatz umkehren</b><p>Dies kehrt die Änderungen eines früheren Änderungssatzes um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="200"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="202"/> <source>Push changes (force)</source> <translation>Änderungen hochladen (force)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="204"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="206"/> <source>Push changes to a remote repository with force option</source> <translation>Änderungen an ein entferntes Repository mit der Option 'force' hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="207"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="209"/> <source><b>Push changes (force)</b><p>This pushes changes from the local repository to a remote repository using the 'force' option.</p></source> <translation><b>Änderungen hochladen (force)</b><p>Dies lädt Änderungen vom lokalen Repository an ein entferntes Repository mit der Option 'force' hoch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="938"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="940"/> <source>Specials</source> <translation>Spezialfunktionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="792"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="794"/> <source>Serve project repository</source> <translation>Server für Projektrepository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="792"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="794"/> <source>Serve project repository...</source> <translation>Server für Projektrepository...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="795"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="797"/> <source>Serve the project repository</source> <translation>Server für das Projektrepository bereitstellen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="798"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="800"/> <source><b>Serve project repository</b><p>This serves the project repository.</p></source> <translation><b>Server für Projektrepository<b><p>Dies stellt einen Server für das Projektrepository zur Verfügung.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1125"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1127"/> <source>Pull</source> <translation>Pull</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1394"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1396"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="436"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="438"/> <source>Push new branch</source> <translation>Neuen Zweig hochladen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="439"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="441"/> <source>Push the current branch of the local project as a new named branch</source> <translation>Lade den aktuellen Zweig als neuen benannten Zweig hoch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="442"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="444"/> <source><b>Push new branch</b><p>This pushes the current branch of the local project as a new named branch.</p></source> <translation><b>Neuen Zweig hochladen</b><p>Dies lädt den aktuellen Zweig als neuen benannten Zweig hoch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="767"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="769"/> <source>Rollback last transaction</source> <translation>Letzte Transaktion zurücksetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="770"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="772"/> <source>Rollback the last transaction</source> <translation>Die letzte Transaktion zurücksetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="773"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="775"/> <source><b>Rollback last transaction</b><p>This performs a rollback of the last transaction. Transactions are used to encapsulate the effects of all commands that create new changesets or propagate existing changesets into a repository. For example, the following commands are transactional, and their effects can be rolled back:<ul><li>commit</li><li>import</li><li>pull</li><li>push (with this repository as the destination)</li><li>unbundle</li></ul></p><p><strong>This command is dangerous. Please use with care.</strong></p></source> <translation><b>Letzte Transaktion zurücksetzen</b><p>Dies setzt die letzte Transaktion zurück. Transaktionen werden verwendet, um die Effekte aller Befehle, die neue Änderungssätze erzeugen oder vorhandene Änderungssätze in das Repository propagieren, zu kapseln. So arbeiten z.B. die folgenden Befehle transaktional und ihre Effekte können zurückgesetzt werden:<ul><li>commit</li><li>import</li><li>pull</li><li>push (mit diesem repository als Ziel)</li><li>unbundle</li></ul></p><p><strong>Dieser Befehl kann gefährlich sein. Bitte mit Vorsicht verwenden.</strong></p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="967"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="969"/> <source>Extensions</source> <translation>Erweiterungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="540"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="542"/> <source>Edit user configuration</source> <translation>Nutzerkonfiguration editieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="540"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="542"/> <source>Edit user configuration...</source> <translation>Nutzerkonfiguration editieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="543"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="545"/> <source>Show an editor to edit the user configuration file</source> <translation>Zeigt einen Editor zum Bearbeiten der Konfigurationsdatei des Nutzers</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="546"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="548"/> <source><b>Edit user configuration</b><p>Show an editor to edit the user configuration file.</p></source> <translation><b>Nutzerkonfiguration editieren</b><p>Zeigt einen Editor zum Bearbeiten der Konfigurationsdatei des Nutzers.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="553"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="555"/> <source>Edit repository configuration</source> <translation>Repositorykonfiguration editieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="553"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="555"/> <source>Edit repository configuration...</source> <translation>Repositorykonfiguration editieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="556"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="558"/> <source>Show an editor to edit the repository configuration file</source> <translation>Zeigt einen Editor zum Bearbeiten der Konfigurationsdatei des Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="559"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="561"/> <source><b>Edit repository configuration</b><p>Show an editor to edit the repository configuration file.</p></source> <translation><b>Repositorykonfiguration editieren</b><p>Zeigt einen Editor zum Bearbeiten der Konfigurationsdatei des Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="566"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="568"/> <source>Show combined configuration settings</source> <translation>Zeige kombinierte Einstellungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="566"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="568"/> <source>Show combined configuration settings...</source> <translation>Zeige kombinierte Einstellungen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="570"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="572"/> <source>Show the combined configuration settings from all configuration files</source> <translation>Zeigt die kombinierten Einstellungen aus allen Konfigurationsdateien</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="573"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="575"/> <source><b>Show combined configuration settings</b><p>This shows the combined configuration settings from all configuration files.</p></source> <translation><b>Zeige kombinierte Einstellungen</b><p>Dies zeigt die kombinierten Einstellungen aus allen Konfigurationsdateien.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="728"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="730"/> <source>Skip...</source> <translation>Überspringen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="731"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="733"/> <source>Skip a selectable changeset</source> <translation>Überspringe einen auswählbaren Änderungssatz</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="734"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="736"/> <source><b>Skip</b><p>This skips a selectable changeset.</p></source> <translation><b>Überspringen</b><p>Dies überspringt einen auswählbaren Änderungssatz.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1342"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1344"/> <source>Import Patch</source> <translation>Patch importieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="805"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="807"/> <source>Import Patch...</source> <translation>Patch importieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="808"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="810"/> <source>Import a patch from a patch file</source> <translation>Einen Patch aus einer Patchdatei importieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="811"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="813"/> <source><b>Import Patch</b><p>This imports a patch from a patch file into the project.</p></source> <translation><b>Patch importieren</b><p>Dies importiert einen Patch aus einer Patchdatei in das Projekt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="953"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="955"/> <source>Patch Management</source> <translation>Verwaltung von Patches</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1361"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1363"/> <source>Revert Changes</source> <translation>Änderungen rückgängig machen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="818"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="820"/> <source>Export Patches</source> <translation>Patches exportieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="818"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="820"/> <source>Export Patches...</source> <translation>Patches exportieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="821"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="823"/> <source>Export revisions to patch files</source> <translation>Änderungssätze in Patchdateien exportieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="824"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="826"/> <source><b>Export Patches</b><p>This exports revisions of the project to patch files.</p></source> <translation><b>Patches exportieren</b><p>Dies exportiert Änderungssätze des projektes in Patchdateien.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="831"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="833"/> <source>Change Phase</source> <translation>Phase ändern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="831"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="833"/> <source>Change Phase...</source> <translation>Phase ändern...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="834"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="836"/> <source>Change the phase of revisions</source> <translation>Ändert die Phase von Revisionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="837"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="839"/> <source><b>Change Phase</b><p>This changes the phase of revisions.</p></source> <translation><b>Phase ändern</b><p>Dies ändert die Phase von Revisionen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1380"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1382"/> <source>Copy Changesets</source> <translation>Änderungssätze kopieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="848"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="850"/> <source>Copies changesets from another branch</source> <translation>Änderungssätze aus einem anderen Zweig kopieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="851"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="853"/> <source><b>Copy Changesets</b><p>This copies changesets from another branch on top of the current working directory with the user, date and description of the original changeset.</p></source> <translation><b>Änderungssätze kopieren</b><p>Dies kopiert Änderungssätze aus einem anderen Zweig mit dem Nutzernamen, der Datums und der Änderungsmeldung des Originaländerungssatzes in das Arbeitsverzeichnis.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="860"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="862"/> <source>Continue Copying Session</source> <translation>Kopiersitzung fortsetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="864"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="866"/> <source>Continue the last copying session after conflicts were resolved</source> <translation>Setzt die letzte Kopiersitzung nach Lösung von Konflikten fort</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="867"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="869"/> <source><b>Continue Copying Session</b><p>This continues the last copying session after conflicts were resolved.</p></source> <translation><b>Kopiersitzung fortsetzen</b><p>Dies setzt die letzte Kopiersitzung nach Lösung von Konflikten fort.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="978"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="980"/> <source>Graft</source> <translation>Graft</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1394"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="1396"/> <source>Copy Changesets (Continue)</source> <translation>Änderungssätze kopieren (Fortsetzung)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="368"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="370"/> <source>Conflicts resolved</source> <translation>Konflikte gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="368"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="370"/> <source>Con&flicts resolved</source> <translation>&Konflikte gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="371"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="373"/> <source>Mark all conflicts of the local project as resolved</source> <translation>Markiert alle Konflikte des lokalen Projektes als gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="374"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="376"/> <source><b>Conflicts resolved</b><p>This marks all conflicts of the local project as resolved.</p></source> <translation><b>Konflikte gelöst</b><p>Dies markiert alle Konflikte des lokalen Projektes als gelöst.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="875"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="877"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="875"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="877"/> <source>Add...</source> <translation>Hinzufügen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="880"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="882"/> <source>Add a sub-repository</source> <translation>Ein Unterrepository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="883"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="885"/> <source><b>Add...</b><p>Add a sub-repository to the project.</p></source> <translation><b>Hinzufügen...</b><p>Ein Unterrepository zum Projekt hinzufügen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="890"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="892"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="890"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="892"/> <source>Remove...</source> <translation>Entfernen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="895"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="897"/> <source>Remove sub-repositories</source> <translation>Unterrepositories löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="898"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="900"/> <source><b>Remove...</b><p>Remove sub-repositories from the project.</p></source> <translation><b>Entfernen...</b><p>Unterrepositories aus dem Projekt löschen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="987"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/ProjectHelper.py" line="989"/> <source>Sub-Repository</source> <translation>Unterrepository</translation> </message> @@ -21941,37 +21941,37 @@ <translation>Entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="114"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="120"/> <source>Unsaved Changes</source> <translation>Nicht gesicherte Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="114"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="120"/> <source>The guards list has been changed. Shall the changes be applied?</source> <translation>Die Liste der Guards wurde verändert. Sollen die Änderungen angewendet werden?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="236"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="242"/> <source>Remove Guards</source> <translation>Guards löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="236"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="242"/> <source>Do you really want to remove the selected guards?</source> <translation>Sollen die ausgewählten Guards wirklich gelöscht werden?</translation> </message> <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="308"/> + <source>Apply Guard Definitions</source> + <translation>Guard Definitionen anlegen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="308"/> + <source><p>The defined guards could not be applied.</p><p>Reason: {0}</p></source> + <translation><p>Die definierten Guards konnten nicht angelegt werden.</p><p>Ursache: {0}</p></translation> + </message> + <message> <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="302"/> - <source>Apply Guard Definitions</source> - <translation>Guard Definitionen anlegen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="302"/> - <source><p>The defined guards could not be applied.</p><p>Reason: {0}</p></source> - <translation><p>Die definierten Guards konnten nicht angelegt werden.</p><p>Ursache: {0}</p></translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="296"/> <source>The Mercurial process did not finish in time.</source> <translation>Der Mercurial Prozess endete nicht zeitgerecht.</translation> </message> @@ -22032,7 +22032,7 @@ <translation>Guards auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="42"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/> <source>Active Guards</source> <translation>Aktive Guards</translation> </message> @@ -22045,17 +22045,17 @@ <translation>Änderungsbeschreibung</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="106"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="112"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="106"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="112"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="193"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="199"/> <source>Error: </source> <translation>Fehler:</translation> </message> @@ -22073,12 +22073,12 @@ <translation>Zeigt alle Guards aller Patches</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListAllGuardsDialog.py" line="92"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListAllGuardsDialog.py" line="98"/> <source>Unguarded</source> <translation>Ungesichert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListAllGuardsDialog.py" line="97"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListAllGuardsDialog.py" line="103"/> <source>no patches found</source> <translation>keine Patches gefunden</translation> </message> @@ -22165,42 +22165,42 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="190"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="196"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="190"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="196"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="222"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="228"/> <source>no patches found</source> <translation>keine Patches gefunden</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="57"/> <source>applied</source> <translation>angewandt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="52"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="58"/> <source>not applied</source> <translation>nicht angewandt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="53"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="59"/> <source>guarded</source> <translation>geschützt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="60"/> <source>missing</source> <translation>fehlt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="292"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="298"/> <source>unknown</source> <translation>unbekannt</translation> </message> @@ -22238,7 +22238,7 @@ <translation>Dies zeigt die Liste aller für den ausgewählten Patch zu definierenden Guards an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListGuardsDialog.py" line="125"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListGuardsDialog.py" line="131"/> <source>Unguarded</source> <translation>Ungesichert</translation> </message> @@ -22354,12 +22354,12 @@ <translation>Dies zeigt eine Liste verfügbarere Patchschlangen (aktive Patchschlange fett)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="62"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/> <source>Refresh</source> <translation>Erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="64"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/> <source>Press to refresh the queues list</source> <translation>Drücken, um die Liste der Patchschlangen zu erneuern</translation> </message> @@ -22407,7 +22407,7 @@ <translation>Wähle den umzubenennenden Patch aus</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py" line="31"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py" line="33"/> <source>Current Patch ({0})</source> <translation>Aktueller Patch ({0})</translation> </message> @@ -22701,12 +22701,12 @@ <translation>TIP</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py" line="45"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py" line="47"/> <source>No revision selected</source> <translation>Keine Revision ausgewählt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py" line="46"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgRevisionSelectionDialog.py" line="48"/> <source>Select to not specify a specific revision</source> <translation>Auswählen, um keine spezifische Revision zu wählen</translation> </message> @@ -22842,52 +22842,52 @@ <context> <name>HgServeDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="46"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="52"/> <source>Start Server</source> <translation>Server starten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="57"/> <source>Stop Server</source> <translation>Server anhalten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="56"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="62"/> <source>Start Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="64"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="70"/> <source>Enter the server port</source> <translation>Gib den Serverport ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="75"/> <source>Select the style to use</source> <translation>Wähle den Stil aus</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="73"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="79"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="80"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="86"/> <source>Browser</source> <translation>Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="140"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="140"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="44"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgServeDialog.py" line="50"/> <source>Mercurial Server</source> <translation>Mercurial Server</translation> </message> @@ -22895,7 +22895,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="193"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="199"/> <source>Mercurial Status</source> <translation>Mercurial Status</translation> </message> @@ -22962,117 +22962,117 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="44"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="50"/> <source>Refresh</source> <translation>Erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="45"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="51"/> <source>Press to refresh the status display</source> <translation>Drücken, um die Statusanzeige zu erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="67"/> <source>Commit changes to repository...</source> <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="68"/> - <source>Add to repository</source> - <translation>Zum Repository hinzufügen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="74"/> + <source>Add to repository</source> + <translation>Zum Repository hinzufügen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="80"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="79"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="85"/> <source>Adjust column sizes</source> <translation>Spaltengrößen anpassen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/> - <source>added</source> - <translation>hinzugefügt</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="105"/> - <source>modified</source> - <translation>modifiziert</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="106"/> - <source>removed</source> - <translation>gelöscht</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="107"/> - <source>not tracked</source> - <translation>nicht versioniert</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="103"/> - <source>normal</source> - <translation>normal</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="104"/> - <source>ignored</source> - <translation>ignoriert</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="108"/> + <source>added</source> + <translation>hinzugefügt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="111"/> + <source>modified</source> + <translation>modifiziert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="112"/> + <source>removed</source> + <translation>gelöscht</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="113"/> + <source>not tracked</source> + <translation>nicht versioniert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="109"/> + <source>normal</source> + <translation>normal</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="110"/> + <source>ignored</source> + <translation>ignoriert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="114"/> <source>missing</source> <translation>fehlt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="246"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="252"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="246"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="252"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="547"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="553"/> <source>Commit</source> <translation>Einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="661"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/> <source>There are no uncommitted changes available/selected.</source> <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="586"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="592"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="586"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="592"/> <source>There are no unversioned entries available/selected.</source> <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="644"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="650"/> <source>Revert</source> <translation>Rückgängig machen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="72"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="78"/> <source>Remove from repository</source> <translation>Vom Repository löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="607"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="613"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="644"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="650"/> <source>There are no missing entries available/selected.</source> <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation> </message> @@ -23147,37 +23147,37 @@ <translation>&Wiederherstellen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="70"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="76"/> <source>Show differences</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="82"/> <source>Restore missing</source> <translation>Fehlende wiederherstellen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="459"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="465"/> <source>all</source> <translation>alle</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="661"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/> <source>Differences</source> <translation>Unterschiede</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="547"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="553"/> <source>There are no entries selected to be committed.</source> <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="63"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="69"/> <source>Select all for commit</source> <translation>Alle zum Einpflegen auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="71"/> <source>Deselect all from commit</source> <translation>Alle vom Einpflegen abwählen</translation> </message> @@ -23185,12 +23185,12 @@ <context> <name>HgStatusMonitorThread</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py" line="155"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py" line="161"/> <source>Mercurial status checked successfully</source> <translation>Mercurial Status erfolgreich überprüft</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py" line="102"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py" line="108"/> <source>Could not start the Mercurial process.</source> <translation>Der Mercurial Prozess konnte nicht gestartet werden.</translation> </message> @@ -23282,32 +23282,32 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="95"/> <source>Mercurial Branches List</source> <translation>Mercurial Zweigliste</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="96"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="140"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="140"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="249"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="255"/> <source>active</source> <translation>aktiv</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="254"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="260"/> <source>yes</source> <translation>ja</translation> </message> @@ -23411,7 +23411,7 @@ <translation>Drücken, um die ausgwählten Einträge zu löschen</translation> </message> <message> - <location filename="Helpviewer/History/HistoryDialog.py" line="88"/> + <location filename="Helpviewer/History/HistoryDialog.py" line="90"/> <source>&Remove</source> <translation>&Entfernen</translation> </message> @@ -23426,17 +23426,17 @@ <translation>&Alle entfernen</translation> </message> <message> - <location filename="Helpviewer/History/HistoryDialog.py" line="84"/> + <location filename="Helpviewer/History/HistoryDialog.py" line="86"/> <source>&Open</source> <translation>Ö&ffnen</translation> </message> <message> - <location filename="Helpviewer/History/HistoryDialog.py" line="85"/> - <source>Open in New &Tab</source> - <translation>In neuem &Register öffnen</translation> - </message> - <message> <location filename="Helpviewer/History/HistoryDialog.py" line="87"/> + <source>Open in New &Tab</source> + <translation>In neuem &Register öffnen</translation> + </message> + <message> + <location filename="Helpviewer/History/HistoryDialog.py" line="89"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> @@ -23444,27 +23444,27 @@ <context> <name>HistoryManager</name> <message> - <location filename="Helpviewer/History/HistoryManager.py" line="375"/> + <location filename="Helpviewer/History/HistoryManager.py" line="377"/> <source>Loading History</source> <translation>Chronik laden</translation> </message> <message> - <location filename="Helpviewer/History/HistoryManager.py" line="480"/> + <location filename="Helpviewer/History/HistoryManager.py" line="482"/> <source>Saving History</source> <translation>Chronik speichern</translation> </message> <message> - <location filename="Helpviewer/History/HistoryManager.py" line="453"/> + <location filename="Helpviewer/History/HistoryManager.py" line="455"/> <source><p>Unable to open history file <b>{0}</b>.<br/>Reason: {1}</p></source> <translation><p>Die Chronikdatei <b>{0}</b> konnte nicht geöffnet werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="Helpviewer/History/HistoryManager.py" line="474"/> + <location filename="Helpviewer/History/HistoryManager.py" line="476"/> <source><p>Error removing old history file <b>{0}</b>.<br/>Reason: {1}</p></source> <translation><p>Fehler beim Löschen der alten Chronikdatei <b>{0}</b>.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="Helpviewer/History/HistoryManager.py" line="480"/> + <location filename="Helpviewer/History/HistoryManager.py" line="482"/> <source><p>Error moving new history file over old one (<b>{0}</b>).<br/>Reason: {1}</p></source> <translation><p>Fehler beim Kopieren der neuen Chronikdatei über die alte (<b>{0}</b>).<br/>Ursache: {1}</p></translation> </message> @@ -23472,42 +23472,42 @@ <context> <name>HistoryMenu</name> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="335"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="337"/> <source>Show All History...</source> <translation>Chronik anzeigen...</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="338"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="340"/> <source>Clear History...</source> <translation>Chronik löschen...</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="368"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="370"/> <source>Clear History</source> <translation>Chronik löschen</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="368"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="370"/> <source>Do you want to clear the history?</source> <translation>Soll die Chronik wirklich gelöscht werden?</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="326"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="328"/> <source>Most Visited</source> <translation>Meistbesuchte</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="270"/> + <location filename="Helpviewer/History/HistoryMenu.py" line="272"/> <source>Closed Tabs</source> <translation>Geschlossene Tabs</translation> </message> <message> - <location filename="Helpviewer/History/HistoryMenu.py" line="390"/> - <source>Restore All Closed Tabs</source> - <translation>Alle geschlossenen Tabs wiederherstellen</translation> - </message> - <message> <location filename="Helpviewer/History/HistoryMenu.py" line="392"/> + <source>Restore All Closed Tabs</source> + <translation>Alle geschlossenen Tabs wiederherstellen</translation> + </message> + <message> + <location filename="Helpviewer/History/HistoryMenu.py" line="394"/> <source>Clear List</source> <translation>Liste löschen</translation> </message> @@ -23515,12 +23515,12 @@ <context> <name>HistoryModel</name> <message> - <location filename="Helpviewer/History/HistoryModel.py" line="38"/> + <location filename="Helpviewer/History/HistoryModel.py" line="40"/> <source>Title</source> <translation>Titel</translation> </message> <message> - <location filename="Helpviewer/History/HistoryModel.py" line="39"/> + <location filename="Helpviewer/History/HistoryModel.py" line="41"/> <source>Address</source> <translation>Adresse</translation> </message> @@ -23528,12 +23528,12 @@ <context> <name>HistoryTreeModel</name> <message> - <location filename="Helpviewer/History/HistoryTreeModel.py" line="65"/> + <location filename="Helpviewer/History/HistoryTreeModel.py" line="67"/> <source>Earlier Today</source> <translation>Heute</translation> </message> <message numerus="yes"> - <location filename="Helpviewer/History/HistoryTreeModel.py" line="68"/> + <location filename="Helpviewer/History/HistoryTreeModel.py" line="70"/> <source>%n item(s)</source> <translation> <numerusform>%n Eintrag</numerusform> @@ -23544,32 +23544,32 @@ <context> <name>HtmlImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="28"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="30"/> <source>HTML Netscape Bookmarks</source> <translation>HTML Netscape Lesezeichen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="28"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="30"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="76"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="78"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="95"/> - <source>HTML Import</source> - <translation>HTML Import</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="97"/> + <source>HTML Import</source> + <translation>HTML Import</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="99"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="28"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py" line="30"/> <source>You can import bookmarks from any browser that supports HTML exporting. This file has usually the extension .htm or .html.</source> <translation>Es können Lesezeichen von jedem Browser, der den HTML Export unterstützt, importiert werden. Diese Datei hat üblicherweise die Endung .htm oder .html.</translation> </message> @@ -23577,32 +23577,32 @@ <context> <name>IExplorerImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="34"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="36"/> <source>Internet Explorer stores its bookmarks in the <b>Favorites</b> folder This folder is usually located in</source> <translation>Internet Explorer speichert die Lesezeichen in dem Verzeichnis <b>Favorites</b>. Dieses Verzeichnis befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="34"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="36"/> <source>Please choose the folder to begin importing bookmarks.</source> <translation>Bitte wähle das Verzeichnis, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="80"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="82"/> <source>Folder '{0}' does not exist.</source> <translation>Verzeichnis '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="85"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="87"/> <source>'{0}' is not a folder.</source> <translation>'{0}' ist kein Verzeichnis.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="136"/> - <source>Internet Explorer Import</source> - <translation>Internet Explorer Import</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="138"/> + <source>Internet Explorer Import</source> + <translation>Internet Explorer Import</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/IExplorerImporter.py" line="140"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> @@ -23610,102 +23610,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="199"/> + <location filename="IconEditor/IconEditorGrid.py" line="201"/> <source>Set Pixel</source> <translation>Pixel setzen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> - <source>Erase Pixel</source> - <translation>Pixel löschen</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="201"/> - <source>Draw Line</source> - <translation>Linie zeichnen</translation> - </message> - <message> <location filename="IconEditor/IconEditorGrid.py" line="202"/> - <source>Draw Rectangle</source> - <translation>Rechteck zeichnen</translation> + <source>Erase Pixel</source> + <translation>Pixel löschen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="203"/> - <source>Draw Filled Rectangle</source> - <translation>Gefülltes Rechteck zeichnen</translation> + <source>Draw Line</source> + <translation>Linie zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="204"/> - <source>Draw Circle</source> - <translation>Kreis zeichnen</translation> + <source>Draw Rectangle</source> + <translation>Rechteck zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="205"/> - <source>Draw Filled Circle</source> - <translation>Gefüllten Kreis zeichnen</translation> + <source>Draw Filled Rectangle</source> + <translation>Gefülltes Rechteck zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="206"/> - <source>Draw Ellipse</source> - <translation>Ellipse zeichnen</translation> + <source>Draw Circle</source> + <translation>Kreis zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="207"/> - <source>Draw Filled Ellipse</source> - <translation>Gefüllte Ellipse zeichnen</translation> + <source>Draw Filled Circle</source> + <translation>Gefüllten Kreis zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="208"/> + <source>Draw Ellipse</source> + <translation>Ellipse zeichnen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorGrid.py" line="209"/> + <source>Draw Filled Ellipse</source> + <translation>Gefüllte Ellipse zeichnen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorGrid.py" line="210"/> <source>Fill Region</source> <translation>Bereich füllen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="819"/> + <location filename="IconEditor/IconEditorGrid.py" line="821"/> <source>Cut Selection</source> <translation>Auswahl ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="871"/> + <location filename="IconEditor/IconEditorGrid.py" line="873"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="871"/> + <location filename="IconEditor/IconEditorGrid.py" line="873"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>Das Bild der zwischenablage ist größer als das aktuelle Bild.<br/>Als neues Bild einfügen?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="882"/> + <location filename="IconEditor/IconEditorGrid.py" line="884"/> <source>Paste Clipboard</source> <translation>Zwischenablage einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="896"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Pasting Image</source> <translation>Einfügen des Bildes</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="896"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Invalid image data in clipboard.</source> <translation>Die Zwischenablage enthält ungültige Bilddaten.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="906"/> + <location filename="IconEditor/IconEditorGrid.py" line="908"/> <source>Paste Clipboard as New Image</source> <translation>Zwischenablage als neues Bild einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="934"/> + <location filename="IconEditor/IconEditorGrid.py" line="936"/> <source>Clear Image</source> <translation>Bild löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="951"/> + <location filename="IconEditor/IconEditorGrid.py" line="953"/> <source>Resize Image</source> <translation>Bildgröße ändern</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="976"/> + <location filename="IconEditor/IconEditorGrid.py" line="978"/> <source>Convert to Grayscale</source> <translation>In Grauwerte umwandeln</translation> </message> @@ -23713,57 +23713,57 @@ <context> <name>IconEditorPalette</name> <message> - <location filename="IconEditor/IconEditorPalette.py" line="46"/> + <location filename="IconEditor/IconEditorPalette.py" line="48"/> <source><b>Preview</b><p>This is a 1:1 preview of the current icon.</p></source> <translation><b>Vorschau</b><p>Dies ist eine 1:1 Vorschau des aktuellen Icons.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="56"/> + <location filename="IconEditor/IconEditorPalette.py" line="58"/> <source><b>Current Color</b><p>This is the currently selected color used for drawing.</p></source> <translation><b>Aktuelle Farbe</b><p>Dies ist die aktuell zum Zeichnen verwendete Farbe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="64"/> + <location filename="IconEditor/IconEditorPalette.py" line="66"/> <source><b>Current Color Value</b><p>This is the currently selected color value used for drawing.</p></source> <translation><b>Aktueller Farbwert</b><p>Dies ist der aktuell zum Zeichnen verwendete Farbwert.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="70"/> + <location filename="IconEditor/IconEditorPalette.py" line="72"/> <source>Select Color</source> <translation>Farbe auswählen</translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="71"/> + <location filename="IconEditor/IconEditorPalette.py" line="73"/> <source><b>Select Color</b><p>Select the current drawing color via a color selection dialog.</p></source> <translation><b>Farbe auswählen</b><p>Wähle die aktuelle Zeichenfarbe über einen Farbauswahldialog aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="80"/> + <location filename="IconEditor/IconEditorPalette.py" line="82"/> <source><b>Select alpha channel value</b><p>Select the value for the alpha channel of the current color.</p></source> <translation><b>Wähle Werte für Transparenz</b><p>Wähle den Wert für die Transparent der aktuellen Zeichenfarbe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="87"/> + <location filename="IconEditor/IconEditorPalette.py" line="89"/> <source>Compositing</source> <translation>Compositing</translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="90"/> - <source>Replace</source> - <translation>Ersetzen</translation> - </message> - <message> <location filename="IconEditor/IconEditorPalette.py" line="92"/> + <source>Replace</source> + <translation>Ersetzen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorPalette.py" line="94"/> <source><b>Replace</b><p>Replace the existing pixel with a new color.</p></source> <translation><b>Ersetzen</b><p>Ersetzt das existierend Pixel mit einer neuen Farbe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorPalette.py" line="98"/> - <source>Blend</source> - <translation>Überblenden</translation> - </message> - <message> <location filename="IconEditor/IconEditorPalette.py" line="100"/> + <source>Blend</source> + <translation>Überblenden</translation> + </message> + <message> + <location filename="IconEditor/IconEditorPalette.py" line="102"/> <source><b>Blend</b><p>Blend the new color over the existing pixel.</p></source> <translation><b>Überblenden</b><p>Überblendet das existierend Pixel mit einer neuen Farbe.</p></translation> </message> @@ -23771,1052 +23771,1052 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="114"/> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Windows Bitmap Datei (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="115"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format Datei (*.gif)</translation> - </message> - <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon Datei (*.ico)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format Datei (*.gif)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon Datei (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>JPEG File (*.jpg)</source> <translation>JPEG Datei (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation>Portable Bitmap Datei (*.pbm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="122"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap Datei (*.pgm)</translation> - </message> - <message> - <location filename="IconEditor/IconEditorWindow.py" line="123"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics Datei (*.png)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation>Portable Bitmap Datei (*.pbm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="124"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation>Portable Pixmap Datei (*.ppm)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap Datei (*.pgm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="125"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics Datei (*.png)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="126"/> + <source>Portable Pixmap File (*.ppm)</source> + <translation>Portable Pixmap Datei (*.ppm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="128"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>Scalable Vector Graphics Datei (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="129"/> + <location filename="IconEditor/IconEditorWindow.py" line="131"/> <source>TIFF File (*.tif)</source> <translation>TIFF Datei (*.tif)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="134"/> <source>X11 Bitmap File (*.xbm)</source> <translation>X11 Bitmap Datei (*.xbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="133"/> + <location filename="IconEditor/IconEditorWindow.py" line="135"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap Datei (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="144"/> + <location filename="IconEditor/IconEditorWindow.py" line="146"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="176"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="176"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="176"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source>Create a new icon</source> <translation>Erzeuge ein neues Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <location filename="IconEditor/IconEditorWindow.py" line="184"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Neu</b><p>Dies erzeugt ein neues Icon.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="191"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="191"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="193"/> + <location filename="IconEditor/IconEditorWindow.py" line="195"/> <source>Open a new icon editor window</source> <translation>Öffne ein neues Icon Editor Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Neues fenster</b><p>Dies öffnet ein neues Icon Editor Fenster.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="201"/> + <location filename="IconEditor/IconEditorWindow.py" line="203"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="201"/> + <location filename="IconEditor/IconEditorWindow.py" line="203"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="201"/> + <location filename="IconEditor/IconEditorWindow.py" line="203"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="206"/> + <location filename="IconEditor/IconEditorWindow.py" line="208"/> <source>Open an icon file for editing</source> <translation>Öffne eine Icon Datei zum editieren</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="207"/> + <location filename="IconEditor/IconEditorWindow.py" line="209"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Datei öffnen</b><p>Dies öffnet eine neue Icon Datei zum editieren. Es wird zunächst ein Dateiauswahldialog angezeigt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="215"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="215"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="215"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="220"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon</source> <translation>Speichert das aktuelle Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="223"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des Icon Editor Fensters.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="228"/> + <location filename="IconEditor/IconEditorWindow.py" line="230"/> <source>Save As</source> <translation>Speichern unter</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="228"/> + <location filename="IconEditor/IconEditorWindow.py" line="230"/> <source>Save &As...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="228"/> + <location filename="IconEditor/IconEditorWindow.py" line="230"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="233"/> + <location filename="IconEditor/IconEditorWindow.py" line="235"/> <source>Save the current icon to a new file</source> <translation>Speichert das aktuelle Icon in eine neue Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Icon in eine Datei.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="242"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="242"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="242"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <location filename="IconEditor/IconEditorWindow.py" line="249"/> <source>Close the current icon editor window</source> <translation>Schließt das aktuelle Icon Editor Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="248"/> + <location filename="IconEditor/IconEditorWindow.py" line="250"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Schließen</b><p>Schließt das aktuelle Icon Editor Fenster.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="255"/> + <location filename="IconEditor/IconEditorWindow.py" line="257"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="255"/> + <location filename="IconEditor/IconEditorWindow.py" line="257"/> <source>Close &All</source> <translation>Alle &schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="258"/> + <location filename="IconEditor/IconEditorWindow.py" line="260"/> <source>Close all icon editor windows</source> <translation>Schließt alle Icon Editor Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Alle schließen</b><p>Schließt alle Icon Editor Fenster mit Ausnahme des ersten.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="266"/> + <location filename="IconEditor/IconEditorWindow.py" line="268"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="266"/> + <location filename="IconEditor/IconEditorWindow.py" line="268"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="266"/> + <location filename="IconEditor/IconEditorWindow.py" line="268"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="271"/> + <location filename="IconEditor/IconEditorWindow.py" line="273"/> <source>Quit the icon editor</source> <translation>Beendet den Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="272"/> + <location filename="IconEditor/IconEditorWindow.py" line="274"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Beenden</b><p>Beendet den Icon Editor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="286"/> + <location filename="IconEditor/IconEditorWindow.py" line="288"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="286"/> + <location filename="IconEditor/IconEditorWindow.py" line="288"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="286"/> + <location filename="IconEditor/IconEditorWindow.py" line="288"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="286"/> + <location filename="IconEditor/IconEditorWindow.py" line="288"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="292"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung rückgängig.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="300"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="300"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="300"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="305"/> + <location filename="IconEditor/IconEditorWindow.py" line="307"/> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="306"/> + <location filename="IconEditor/IconEditorWindow.py" line="308"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung wieder her.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="313"/> + <location filename="IconEditor/IconEditorWindow.py" line="315"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="313"/> + <location filename="IconEditor/IconEditorWindow.py" line="315"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="313"/> + <location filename="IconEditor/IconEditorWindow.py" line="315"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="313"/> + <location filename="IconEditor/IconEditorWindow.py" line="315"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="319"/> + <location filename="IconEditor/IconEditorWindow.py" line="321"/> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="320"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Bildbereich aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="327"/> + <location filename="IconEditor/IconEditorWindow.py" line="329"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="327"/> + <location filename="IconEditor/IconEditorWindow.py" line="329"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="327"/> + <location filename="IconEditor/IconEditorWindow.py" line="329"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="327"/> + <location filename="IconEditor/IconEditorWindow.py" line="329"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="333"/> + <location filename="IconEditor/IconEditorWindow.py" line="335"/> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="334"/> + <location filename="IconEditor/IconEditorWindow.py" line="336"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Bildbereich in die Zwischenablage.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="341"/> + <location filename="IconEditor/IconEditorWindow.py" line="343"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="341"/> + <location filename="IconEditor/IconEditorWindow.py" line="343"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="341"/> + <location filename="IconEditor/IconEditorWindow.py" line="343"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="341"/> + <location filename="IconEditor/IconEditorWindow.py" line="343"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="347"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source>Paste the clipboard image</source> <translation>Fügt das Bild der Zwischenablage ein</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="350"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Einfügen</b><p>Fügt das Bild der Zwischenablage ein.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="357"/> <source>Paste as New</source> <translation>Als Neu einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="357"/> <source>Paste as &New</source> <translation>Als &Neu einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="358"/> - <source>Paste the clipboard image replacing the current one</source> - <translation>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="360"/> + <source>Paste the clipboard image replacing the current one</source> + <translation>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Als Neu einfügen</b><p>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="367"/> + <location filename="IconEditor/IconEditorWindow.py" line="369"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="367"/> + <location filename="IconEditor/IconEditorWindow.py" line="369"/> <source>Cl&ear</source> <translation>&Löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="367"/> + <location filename="IconEditor/IconEditorWindow.py" line="369"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="373"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Clear the icon image</source> <translation>Löscht das Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Löschen</b><p>Löscht das Icon und setzt es auf vollständig transparent.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="381"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Select All</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="381"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>&Select All</source> <translation>&Alles auswählen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="381"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="386"/> + <location filename="IconEditor/IconEditorWindow.py" line="388"/> <source>Select the complete icon image</source> <translation>Wählt das komplette Icon aus</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Alles auswählen</b><p>Wählt das komplette Icon aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="394"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Change Size</source> <translation>Größe ändern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="394"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Change Si&ze...</source> <translation>&Größe ändern...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="399"/> + <location filename="IconEditor/IconEditorWindow.py" line="401"/> <source>Change the icon size</source> <translation>Ändert die Größe des Icons</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Größe ändern...</b><p>Ändert die Größe des Icons.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="407"/> + <location filename="IconEditor/IconEditorWindow.py" line="409"/> <source>Grayscale</source> <translation>Graustufen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="407"/> + <location filename="IconEditor/IconEditorWindow.py" line="409"/> <source>&Grayscale</source> <translation>Gra&ustufen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="412"/> + <location filename="IconEditor/IconEditorWindow.py" line="414"/> <source>Change the icon to grayscale</source> <translation>Konvertiert das Icon in Graustufen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="413"/> + <location filename="IconEditor/IconEditorWindow.py" line="415"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Graustufen</b><p>Konvertiert das Icon in Graustufen.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="442"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="442"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="442"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="447"/> + <location filename="IconEditor/IconEditorWindow.py" line="449"/> <source>Zoom in on the icon</source> <translation>Iconansicht vergrößern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Vergrößern</b><p>Das angezeigte Icon vergrößern. Dies stellt das Gitter größer dar.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="455"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="455"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="455"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="460"/> + <location filename="IconEditor/IconEditorWindow.py" line="462"/> <source>Zoom out on the icon</source> <translation>Iconansicht verkleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Verkleinern</b><p>Das angezeigte Icon verkleinern. Dies stellt das Gitter kleiner dar.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="468"/> + <location filename="IconEditor/IconEditorWindow.py" line="470"/> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="468"/> + <location filename="IconEditor/IconEditorWindow.py" line="470"/> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="468"/> + <location filename="IconEditor/IconEditorWindow.py" line="470"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="482"/> + <location filename="IconEditor/IconEditorWindow.py" line="484"/> <source>Show Grid</source> <translation>Gitter anzeigen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="482"/> + <location filename="IconEditor/IconEditorWindow.py" line="484"/> <source>Show &Grid</source> <translation>&Gitter anzeigen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="487"/> + <location filename="IconEditor/IconEditorWindow.py" line="489"/> <source>Toggle the display of the grid</source> <translation>Schaltet die Anzeige des Gitters um</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="488"/> + <location filename="IconEditor/IconEditorWindow.py" line="490"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Gitter anzeigen</b><p>Schaltet die Anzeige des Gitters um.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="507"/> + <location filename="IconEditor/IconEditorWindow.py" line="509"/> <source>Freehand</source> <translation>Freihand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="507"/> + <location filename="IconEditor/IconEditorWindow.py" line="509"/> <source>&Freehand</source> <translation>&Freihand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="512"/> + <location filename="IconEditor/IconEditorWindow.py" line="514"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Freihand</b><p>Zeichnet nichtlineare Linien.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="521"/> + <location filename="IconEditor/IconEditorWindow.py" line="523"/> <source>Color Picker</source> <translation>Farbauswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="521"/> + <location filename="IconEditor/IconEditorWindow.py" line="523"/> <source>&Color Picker</source> <translation>Far&bauswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="526"/> + <location filename="IconEditor/IconEditorWindow.py" line="528"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Farbauswahl</b><p>Die farbe des Pixels, auf das geklickt wurde, wird die aktuelle Zeichenfarbe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="536"/> + <location filename="IconEditor/IconEditorWindow.py" line="538"/> <source>Rectangle</source> <translation>Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="536"/> + <location filename="IconEditor/IconEditorWindow.py" line="538"/> <source>&Rectangle</source> <translation>&Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="541"/> + <location filename="IconEditor/IconEditorWindow.py" line="543"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Rechteck</b><p>Zeichnet ein Rechteck.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="550"/> + <location filename="IconEditor/IconEditorWindow.py" line="552"/> <source>Filled Rectangle</source> <translation>Gefülltes Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="550"/> + <location filename="IconEditor/IconEditorWindow.py" line="552"/> <source>F&illed Rectangle</source> <translation>&Gefülltes Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="555"/> + <location filename="IconEditor/IconEditorWindow.py" line="557"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>Gefülltes Rechteck</b><p>Zeichnet ein gefülltes Rechteck.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="564"/> + <location filename="IconEditor/IconEditorWindow.py" line="566"/> <source>Circle</source> <translation>Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="569"/> + <location filename="IconEditor/IconEditorWindow.py" line="571"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Kreis</b><p>Zeichnet einen Kreis.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="578"/> + <location filename="IconEditor/IconEditorWindow.py" line="580"/> <source>Filled Circle</source> <translation>Gefüllter Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="578"/> + <location filename="IconEditor/IconEditorWindow.py" line="580"/> <source>Fille&d Circle</source> <translation>Gef&üllter Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="583"/> + <location filename="IconEditor/IconEditorWindow.py" line="585"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Gefüllter Kreis</b><p>Zeichnet einen gefüllten Kreis.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="592"/> + <location filename="IconEditor/IconEditorWindow.py" line="594"/> <source>Ellipse</source> <translation>Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="592"/> + <location filename="IconEditor/IconEditorWindow.py" line="594"/> <source>&Ellipse</source> <translation>&Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="597"/> + <location filename="IconEditor/IconEditorWindow.py" line="599"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Ellipse</b><p>Zeichnet eine Ellipse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="606"/> + <location filename="IconEditor/IconEditorWindow.py" line="608"/> <source>Filled Ellipse</source> <translation>Gefüllte Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="606"/> + <location filename="IconEditor/IconEditorWindow.py" line="608"/> <source>Fille&d Elli&pse</source> <translation>Gefüllte Elli&pse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="611"/> + <location filename="IconEditor/IconEditorWindow.py" line="613"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Gefüllte Ellipse</b><p>Zeichnet eine gefüllte Ellipse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="620"/> + <location filename="IconEditor/IconEditorWindow.py" line="622"/> <source>Flood Fill</source> <translation>Durchgehende Füllung</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="620"/> + <location filename="IconEditor/IconEditorWindow.py" line="622"/> <source>Fl&ood Fill</source> <translation>&Durchgehende Füllung</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="625"/> + <location filename="IconEditor/IconEditorWindow.py" line="627"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Durchgehende Füllung</b><p>Benchbarte Pixel der selben Farbe werden mit der aktuellen Farbe gefüllt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="635"/> + <location filename="IconEditor/IconEditorWindow.py" line="637"/> <source>Line</source> <translation>Linie</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="635"/> + <location filename="IconEditor/IconEditorWindow.py" line="637"/> <source>&Line</source> <translation>&Linie</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="640"/> + <location filename="IconEditor/IconEditorWindow.py" line="642"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Linie</b><p>Zeichnet eine Linie.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="649"/> + <location filename="IconEditor/IconEditorWindow.py" line="651"/> <source>Eraser (Transparent)</source> <translation>Radierer (transparent)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="649"/> + <location filename="IconEditor/IconEditorWindow.py" line="651"/> <source>Eraser (&Transparent)</source> <translation>Radierer (&transparent)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="654"/> + <location filename="IconEditor/IconEditorWindow.py" line="656"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Radierer (transparent)</b><p>Löscht Pixel indem sie auf transparent gesetzt werden.</b></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="663"/> + <location filename="IconEditor/IconEditorWindow.py" line="665"/> <source>Rectangular Selection</source> <translation>Rechteck-Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="678"/> + <location filename="IconEditor/IconEditorWindow.py" line="680"/> <source>Rect&angular Selection</source> <translation>Rechteck-&Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="668"/> + <location filename="IconEditor/IconEditorWindow.py" line="670"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Rechteck-Auswahl</b><p>Wählt einen rechteckigen Bereich des Icons mit der Maus aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="678"/> + <location filename="IconEditor/IconEditorWindow.py" line="680"/> <source>Circular Selection</source> <translation>Kreisförmige Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="683"/> + <location filename="IconEditor/IconEditorWindow.py" line="685"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Kreisförmige Auswahl</b><p>Wählt einen kreisförmigen Bereich des Icons mit der Maus aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="699"/> + <location filename="IconEditor/IconEditorWindow.py" line="701"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="699"/> + <location filename="IconEditor/IconEditorWindow.py" line="701"/> <source>&About</source> <translation>Ü&ber</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="704"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="703"/> + <location filename="IconEditor/IconEditorWindow.py" line="705"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="709"/> + <location filename="IconEditor/IconEditorWindow.py" line="711"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="709"/> + <location filename="IconEditor/IconEditorWindow.py" line="711"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="714"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="721"/> + <location filename="IconEditor/IconEditorWindow.py" line="723"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="721"/> + <location filename="IconEditor/IconEditorWindow.py" line="723"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="721"/> + <location filename="IconEditor/IconEditorWindow.py" line="723"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="726"/> + <location filename="IconEditor/IconEditorWindow.py" line="728"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="727"/> + <location filename="IconEditor/IconEditorWindow.py" line="729"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="744"/> + <location filename="IconEditor/IconEditorWindow.py" line="746"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="758"/> + <location filename="IconEditor/IconEditorWindow.py" line="760"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="774"/> + <location filename="IconEditor/IconEditorWindow.py" line="776"/> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="782"/> + <location filename="IconEditor/IconEditorWindow.py" line="784"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="801"/> + <location filename="IconEditor/IconEditorWindow.py" line="803"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="811"/> + <location filename="IconEditor/IconEditorWindow.py" line="813"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="824"/> + <location filename="IconEditor/IconEditorWindow.py" line="826"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="837"/> + <location filename="IconEditor/IconEditorWindow.py" line="839"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="842"/> + <location filename="IconEditor/IconEditorWindow.py" line="844"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="860"/> + <location filename="IconEditor/IconEditorWindow.py" line="862"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="874"/> + <location filename="IconEditor/IconEditorWindow.py" line="876"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die aktuelle Icongröße an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="881"/> + <location filename="IconEditor/IconEditorWindow.py" line="883"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="967"/> + <location filename="IconEditor/IconEditorWindow.py" line="969"/> <source>Open icon file</source> <translation>Icon Datei öffnen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1006"/> + <location filename="IconEditor/IconEditorWindow.py" line="1008"/> <source>Save icon file</source> <translation>Icon Datei speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1081"/> + <location filename="IconEditor/IconEditorWindow.py" line="1083"/> <source>Icon saved</source> <translation>Icon gespeichert</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1096"/> + <location filename="IconEditor/IconEditorWindow.py" line="1098"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1100"/> + <location filename="IconEditor/IconEditorWindow.py" line="1102"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1100"/> + <location filename="IconEditor/IconEditorWindow.py" line="1102"/> <source>Icon Editor</source> <translation>Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> - </message> - <message> - <location filename="IconEditor/IconEditorWindow.py" line="473"/> - <source>Reset the zoom of the icon</source> - <translation>Die Vergrößerung des Icons zurücksetzen</translation> - </message> - <message> - <location filename="IconEditor/IconEditorWindow.py" line="474"/> - <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> - <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung des Icons zurück. Es setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="475"/> + <source>Reset the zoom of the icon</source> + <translation>Die Vergrößerung des Icons zurücksetzen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> + <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung des Icons zurück. Es setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="123"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Paintbrush Bitmap Datei (*.pcx)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="125"/> + <location filename="IconEditor/IconEditorWindow.py" line="127"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Silicon Graphics Bild Datei (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="128"/> + <location filename="IconEditor/IconEditorWindow.py" line="130"/> <source>Targa Graphic File (*.tga)</source> <translation>Targa Grapfik Datei (*.tga)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1121"/> + <location filename="IconEditor/IconEditorWindow.py" line="1123"/> <source>eric5 Icon Editor</source> <translation>eric5 Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1032"/> + <location filename="IconEditor/IconEditorWindow.py" line="1034"/> <source>The file '{0}' does not exist.</source> <translation>Die Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1038"/> + <location filename="IconEditor/IconEditorWindow.py" line="1040"/> <source>Cannot read file '{0}: {1}.</source> <translation>Datei {0} kann nicht gelesen werden: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1070"/> + <location filename="IconEditor/IconEditorWindow.py" line="1072"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1196"/> + <location filename="IconEditor/IconEditorWindow.py" line="1198"/> <source>About eric5 Icon Editor</source> <translation>Über den eric5 Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1196"/> + <location filename="IconEditor/IconEditorWindow.py" line="1198"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>Der eric5 Icon Editor ist ein Komponente zur Ausführung einfacher Icon Bearbeitungsfunktionen.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1006"/> + <location filename="IconEditor/IconEditorWindow.py" line="1008"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1121"/> + <location filename="IconEditor/IconEditorWindow.py" line="1123"/> <source>The icon image has unsaved changes.</source> <translation>Das Icon Bild hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="120"/> <source>JPEG File (*.jpeg)</source> <translation>JPEG Datei (*.jpeg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="127"/> + <location filename="IconEditor/IconEditorWindow.py" line="129"/> <source>Compressed Scalable Vector Graphics File (*.svgz)</source> <translation>Komprimierte Scalable Vector Graphics Datei (*.svgz)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="130"/> + <location filename="IconEditor/IconEditorWindow.py" line="132"/> <source>TIFF File (*.tiff)</source> <translation>TIFF Datei (*.tiff)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="131"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>WAP Bitmap File (*.wbmp)</source> <translation>WAP Bitmap Datei (*.wbmp)</translation> </message> @@ -24902,7 +24902,7 @@ <translation>Liste von Symbole Verzeichnissen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/IconsPage.py" line="125"/> + <location filename="Preferences/ConfigurationPages/IconsPage.py" line="127"/> <source>Select icon directory</source> <translation>Wähle Symbole Verzeichnis</translation> </message> @@ -24933,22 +24933,22 @@ <context> <name>ImportsDiagramBuilder</name> <message> - <location filename="Graphics/ImportsDiagramBuilder.py" line="60"/> + <location filename="Graphics/ImportsDiagramBuilder.py" line="62"/> <source>Imports Diagramm {0}: {1}</source> <translation>Imports-Diagramm {0}: {1}</translation> </message> <message> - <location filename="Graphics/ImportsDiagramBuilder.py" line="63"/> + <location filename="Graphics/ImportsDiagramBuilder.py" line="65"/> <source>Imports Diagramm: {0}</source> <translation>Imports-Diagramm: {0}</translation> </message> <message> - <location filename="Graphics/ImportsDiagramBuilder.py" line="85"/> + <location filename="Graphics/ImportsDiagramBuilder.py" line="87"/> <source>Parsing modules...</source> <translation>Module werden gelesen...</translation> </message> <message> - <location filename="Graphics/ImportsDiagramBuilder.py" line="115"/> + <location filename="Graphics/ImportsDiagramBuilder.py" line="117"/> <source>The directory <b>'{0}'</b> is not a Python package.</source> <translation>Das Verzeichnis <b>'{0}'</b> ist kein Python Package.</translation> </message> @@ -24956,27 +24956,27 @@ <context> <name>InputDialogWizard</name> <message> - <location filename="Plugins/PluginWizardQInputDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQInputDialog.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQInputDialog.py" line="120"/> + <location filename="Plugins/PluginWizardQInputDialog.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQInputDialog.py" line="73"/> + <location filename="Plugins/PluginWizardQInputDialog.py" line="75"/> <source>QInputDialog Wizard</source> <translation>QInputDialog Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQInputDialog.py" line="70"/> + <location filename="Plugins/PluginWizardQInputDialog.py" line="72"/> <source>Q&InputDialog Wizard...</source> <translation>Q&InputDialog Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQInputDialog.py" line="74"/> + <location filename="Plugins/PluginWizardQInputDialog.py" line="76"/> <source><b>QInputDialog Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QInputDialog. The generated code is inserted at the current cursor position.</p></source> <translation><b>QInputDialog Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QInputDialog benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -25099,7 +25099,7 @@ <translation>'String List' Variable</translation> </message> <message> - <location filename="Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py" line="44"/> + <location filename="Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py" line="46"/> <source>Test</source> <translation>Test</translation> </message> @@ -25107,7 +25107,7 @@ <context> <name>InterfacePage</name> <message> - <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="214"/> + <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="216"/> <source>English</source> <comment>Translate this with your language</comment> <translation>Deutsch</translation> @@ -25333,17 +25333,17 @@ <translation>Layout auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="231"/> + <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="233"/> <source>System</source> <translation>System</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="241"/> + <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="243"/> <source>Select style sheet file</source> <translation>Wähle ein Qt Style Sheet</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="241"/> + <location filename="Preferences/ConfigurationPages/InterfacePage.py" line="243"/> <source>Qt Style Sheets (*.qss);;Cascading Style Sheets (*.css);;All files (*)</source> <translation>Qt Style Sheets (*.qss);;Cascading Style Sheets (*.css);;Alle Dateien (*)</translation> </message> @@ -25509,122 +25509,122 @@ <translation>Gib eine Nachricht ein, Senden durch Drücken von Return oder Enter</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="332"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="334"/> <source>Send Message</source> <translation>Nachrich senden</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="332"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="334"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation>Nachrichten, die mit '/' beginnen, sind in privaten Unterhaltungen nicht zugelassen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="357"/> <source>Leave IRC channel</source> <translation>IRC Kanal verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="357"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation>Soll der IRC Kanal <b>{0}</b> wirklich verlassen werden?</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="492"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="494"/> <source>Channel Message</source> <translation>Kanalnachricht</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="496"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="498"/> <source>Nick mentioned</source> <translation>Nick erwähnt</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="520"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="522"/> <source>{0} has joined the channel {1} ({2}).</source> <translation>{0} hat den Kanal {1} betreten ({2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="524"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="526"/> <source>You have joined the channel {0} ({1}).</source> <translation>Sie sind den Kanal {0} betreten.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="529"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="531"/> <source>Join Channel</source> <translation>Kanal betreten</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="547"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="549"/> <source>{0} has left {1}.</source> <translation>{0} hat den Kanal {1} verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="554"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="556"/> <source>{0} has left {1}: {2}.</source> <translation>{0} hat den Kanal {1} verlassen: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="559"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="561"/> <source>Leave Channel</source> <translation>Kanal verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="577"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="579"/> <source>{0} has quit {1}.</source> <translation>{0} hat den Server verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="581"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="583"/> <source>{0} has quit {1}: {2}.</source> <translation>{0} hat den Server verlassen: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="586"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> <source>Quit</source> <translation>Server verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="603"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="605"/> <source>You are now known as {0}.</source> <translation>Sie sind jetzt als {0} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="608"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="610"/> <source>User {0} is now known as {1}.</source> <translation>Nutzer {0} ist nun als {1} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="645"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>Away</source> <translation>Abwesend</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="645"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>{0} is away: {1}</source> <translation>{0} ist abwesend: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="660"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The channel topic is: "{0}".</source> <translation>Das Kanalthema ist: "{0}".</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="675"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="677"/> <source>The topic was set by {0} on {1}.</source> <translation>Das Thema wurde am {0} durch {1} gesetzt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="691"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="693"/> <source>Channel URL: {0}</source> <translation>Kanal URL: {0}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="714"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="716"/> <source>password protected ({0})</source> <translation>Kennwort geschützt ({0})</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="718"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="720"/> <source>limited to %n user(s)</source> <translation> <numerusform>auf einen Nutzer begrenzt</numerusform> @@ -25632,77 +25632,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="725"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>Channel modes: {0}.</source> <translation>Kanalmodi: {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="740"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="742"/> <source>This channel was created on {0}.</source> <translation>Dieser Kanal wurde am {0} erstellt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="775"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation>{0} setzt den Kanalmodus auf 'anonym'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="776"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="778"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'anonym'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="783"/> <source>{0} sets a ban on {1}.</source> <translation>{0} verhängt einen Bann auf {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="785"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="787"/> <source>{0} removes the ban on {1}.</source> <translation>{0} entfernt den Bann von {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="792"/> <source>{0} sets the channel mode to 'no colors allowed'.</source> <translation>{0} setzt den Kanalmodus 'keine Farben zugelassen'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="796"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation>{0} setzt den Kanalmodus 'Farben zugelassen'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="801"/> <source>{0} sets a ban exception on {1}.</source> <translation>{0} setzt eine Bannausnahme auf {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="805"/> <source>{0} removes the ban exception on {1}.</source> <translation>{0} entfernt die Bannausnahme auf {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="808"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="810"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation>{0} setzt den Kanalmodus 'Einladung erforderlich'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="813"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'Einladung erforderlich'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="816"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> <source>{0} sets the channel key to '{1}'.</source> <translation>{0} setzt den Kanalschlüssel auf '{1}'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="820"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> <source>{0} removes the channel key.</source> <translation>{0} entfernt den Kanalschlüssel.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="824"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation> <numerusform>{0} setzt die Kanalbegrenzung auf einen Nutzer.</numerusform> @@ -25710,242 +25710,242 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="828"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} removes the channel limit.</source> <translation>{0} entfernt die Kanalbegrenzung.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="832"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation>{0} setzt den Kanalmodus 'modereriert'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="837"/> <source>{0} sets the channel mode to 'unmoderated'.</source> <translation>{0} setzt den Kanalmodus 'unmoderiert'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="839"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> <source>{0} sets the channel mode to 'no messages from outside'.</source> <translation>{0} setzt den Kanalmodus 'keine Nachrichten von außerhalb'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="843"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation>{0} setzt den Kanalmodus auf 'Nachrichten von außerhalb zugelassen'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="850"/> <source>{0} sets the channel mode to 'private'.</source> <translation>{0} setzt den Kanalmodus 'privat'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="853"/> <source>{0} sets the channel mode to 'public'.</source> <translation>{0} setzt den Kanalmodus 'öffentlich'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="857"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation>{0} setzt den Kanalmodus 'schweigend'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="860"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'schweigend'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="865"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="867"/> <source>{0} sets the channel mode to 'secret'.</source> <translation>{0} setzt den Kanalmodus 'unsichtbar'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="868"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> <source>{0} sets the channel mode to 'visible'.</source> <translation>{0} setzt den Kanalmodus 'sichtbar'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="872"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>{0} switches on 'topic protection'.</source> <translation>{0} schaltet den 'Themenschutz' an.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="875"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="877"/> <source>{0} switches off 'topic protection'.</source> <translation>{0} schaltet den 'Themenschutz' aus.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="879"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="881"/> <source>{0} sets invitation mask {1}.</source> <translation>{0} setzt die Einladungsmaske {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="883"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="885"/> <source>{0} removes the invitation mask {1}.</source> <translation>{0} entfernt die Einladungsmaske {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="889"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="905"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="907"/> <source>{0} sets mode for {1}: {2}.</source> <translation>{0} setzt den Modus für {1}: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="931"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="933"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1055"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1057"/> <source>--- New From Here ---</source> <translation>--- Neu ab hier ---</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1135"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1137"/> <source>Save Messages</source> <translation>Nachrichten speichern</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1118"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1120"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation>HTML Dateien (*.{0});;Text Dateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1135"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1137"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1153"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1155"/> <source>Error saving Messages</source> <translation>Fehler beim Speichern der Nachrichten</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1153"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1155"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Der Nachrichteninhalt konnte nicht nach <b>{0}</b> gespeichert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1167"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1172"/> <source>Cut all</source> <translation>Alles ausschneiden</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1176"/> <source>Copy all</source> <translation>Alles kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1181"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1186"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1189"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1191"/> <source>Mark Current Position</source> <translation>Aktuellen Position markieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1192"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1194"/> <source>Remove Position Marker</source> <translation>Positionsmarke entfernen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1243"/> <source>Who Is</source> <translation>Who Is</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1247"/> <source>Private Chat</source> <translation>Private Unterhaltung</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1357"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1359"/> <source>Who</source> <translation>Who</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1337"/> <source>End of WHO list for {0}.</source> <translation>Ende der WHO Liste für {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1356"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1358"/> <source> (Away)</source> <translation>(Abwesend)</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1357"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1359"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation>{0} ist {1}@{2} ({3}){4}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1660"/> <source>Whois</source> <translation>Whois</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1377"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1379"/> <source>{0} is {1}@{2} ({3}).</source> <translation>{0} ist {1}@{2} ({3}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1424"/> <source>{0} is a user on channels: {1}</source> <translation>{0} ist ein Nutzer der Kanäle: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1428"/> <source>{0} has voice on channels: {1}</source> <translation>{0} hat Erlaubnis zu schreiben in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1432"/> <source>{0} is a halfop on channels: {1}</source> <translation>{0} hat HalfOp-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1436"/> <source>{0} is an operator on channels: {1}</source> <translation>{0} hat Operator-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1440"/> <source>{0} is owner of channels: {1}</source> <translation>{0} hat Besitzer-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1442"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1444"/> <source>{0} is admin on channels: {1}</source> <translation>{0} hat Administrator-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1460"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1462"/> <source>{0} is online via {1} ({2}).</source> <translation>{0} ist auf dem Server {1} ({2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1478"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1480"/> <source>{0} is an IRC Operator.</source> <translation>{0} ist ein IRC Operator.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1510"/> <source>%n day(s)</source> <translation> <numerusform>1 Tag</numerusform> @@ -25953,7 +25953,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1521"/> <source>%n hour(s)</source> <translation> <numerusform>1 Stunde</numerusform> @@ -25961,7 +25961,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1528"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1530"/> <source>%n minute(s)</source> <translation> <numerusform>1 Minute</numerusform> @@ -25969,7 +25969,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1529"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1531"/> <source>%n second(s)</source> <translation> <numerusform>1 Sekunde</numerusform> @@ -25977,25 +25977,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1512"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation>{0} ist seit {1}, {2}, {3} und {4} untätig.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1522"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation>{0} ist seit {1}, {2} und {3} untätig.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1530"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation>{0} ist seit {1} und {2} untätig.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1536"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1538"/> <source>{0} has been idle for %n second(s).</source> <translation> <numerusform>{0} ist seit 1 Sekunde untätig.</numerusform> @@ -26003,67 +26003,67 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1541"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1543"/> <source>{0} has been online since {1}.</source> <translation>{0} is seit dem {1} online.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1559"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1561"/> <source>End of WHOIS list for {0}.</source> <translation>Ende der WHOIS Liste für {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1575"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1577"/> <source>{0} is an identified user.</source> <translation>{0} wurde identifiziert.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1591"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1593"/> <source>{0} is available for help.</source> <translation>{0} steht für Hilfe bereit.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1607"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1609"/> <source>{0} is logged in as {1}.</source> <translation>{0} ist angemeldet als {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1625"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1627"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation>{0} verwendet den Host {1} (IP: {2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1641"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1643"/> <source>{0} is using a secure connection.</source> <translation>{0} verwendet eine sichere Verbindung.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1660"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation>{0} ist verbunden von {1} (IP: {2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="972"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="974"/> <source>CTCP</source> <translation>CTCP</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="956"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received Version request from {0}.</source> <translation>Versionsanfrage von {0} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="961"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="963"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="966"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="968"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="972"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="974"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation> </message> @@ -26073,17 +26073,17 @@ <translation>Drücken, um das Thema zu ändern</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1249"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1251"/> <source>Refresh</source> <translation>Aktualisieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1678"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1680"/> <source>Edit Channel Topic</source> <translation>Kanalthema bearbeiten</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1678"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1680"/> <source>Enter the topic for this channel:</source> <translation>Gib das Thema für diesen Kanal ein:</translation> </message> @@ -26256,62 +26256,62 @@ <translation>Gib eine Nachricht ein, die beim Verlassen eines Kanals geschickt wird</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="177"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="179"/> <source>Edit Identity</source> <translation>Identität bearbeiten</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="163"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="165"/> <source>The identity must contain at least one nick name.</source> <translation>Die Identität muss mindestens einen Spitznamen enthalten.</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="177"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="179"/> <source>The identity must have a real name.</source> <translation>Die Identität muss einen realen namen enthalten.</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="220"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="222"/> <source>Add Identity</source> <translation>Identität hinzufügen</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="265"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="267"/> <source>Identity Name:</source> <translation>Name der Identität:</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="275"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="277"/> <source>An identity named <b>{0}</b> already exists. You must provide a different name.</source> <translation>Eine Identität mit Namen <b>{0}</b> existiert bereits. Sie müssen einen anderen Namen angeben.</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="288"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="290"/> <source>The identity has to have a name.</source> <translation>Die Identität muss einen Namen haben.</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="288"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="290"/> <source>Copy Identity</source> <translation>Identität kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="275"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="277"/> <source>Rename Identity</source> <translation>Identität umbenennen</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="311"/> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="313"/> <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source> <translation>Diese Identität wirde genutzt. Wenn sie sie löschen, werden alle Netzwerkeinstellungen, die diese Identität verwenden auf die Standardidentität wechseln. Soll sie trotzdem gelöscht werden?</translation> </message> <message> - <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="315"/> - <source>Do you really want to delete all information for this identity?</source> - <translation>Sollen wirklich alle Informationen dieser Identität gelöscht werden?</translation> - </message> - <message> <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="317"/> + <source>Do you really want to delete all information for this identity?</source> + <translation>Sollen wirklich alle Informationen dieser Identität gelöscht werden?</translation> + </message> + <message> + <location filename="Network/IRC/IrcIdentitiesEditDialog.py" line="319"/> <source>Delete Identity</source> <translation>Identität löschen</translation> </message> @@ -26324,17 +26324,17 @@ <context> <name>IrcIdentity</name> <message> - <location filename="Network/IRC/IrcNetworkManager.py" line="25"/> + <location filename="Network/IRC/IrcNetworkManager.py" line="27"/> <source>Default Identity</source> <translation>Standardidentität</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkManager.py" line="27"/> - <source>Gone away for now.</source> - <translation>Bin bis auf weiteres weg.</translation> - </message> - <message> <location filename="Network/IRC/IrcNetworkManager.py" line="29"/> + <source>Gone away for now.</source> + <translation>Bin bis auf weiteres weg.</translation> + </message> + <message> + <location filename="Network/IRC/IrcNetworkManager.py" line="31"/> <source>IRC for eric5 IDE</source> <translation>IRC Client der eric5 IDE</translation> </message> @@ -26417,22 +26417,22 @@ <translation>Zeigt den Namen des Server</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkEditDialog.py" line="246"/> + <location filename="Network/IRC/IrcNetworkEditDialog.py" line="248"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkEditDialog.py" line="248"/> + <location filename="Network/IRC/IrcNetworkEditDialog.py" line="250"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkEditDialog.py" line="179"/> + <location filename="Network/IRC/IrcNetworkEditDialog.py" line="181"/> <source>Delete Channel</source> <translation>Kanal löschen</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkEditDialog.py" line="179"/> + <location filename="Network/IRC/IrcNetworkEditDialog.py" line="181"/> <source>Do you really want to delete channel <b>{0}</b>?</source> <translation>Soll der Kanal <b>{0}</b> wirklich gelöscht werden?</translation> </message> @@ -26495,42 +26495,42 @@ <translation>&Identitäten bearbeiten...</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="226"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="228"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="226"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="228"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="86"/> - <source>Identity</source> - <translation>Identität</translation> - </message> - <message> <location filename="Network/IRC/IrcNetworkListDialog.py" line="88"/> + <source>Identity</source> + <translation>Identität</translation> + </message> + <message> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="90"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="91"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="93"/> <source>Channels</source> <translation>Kanäle</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="229"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="231"/> <source>Auto-Connect</source> <translation>Automatisch Verbinden</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="157"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="159"/> <source>Delete Irc Network</source> <translation>IRC Netzwerk löschen</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkListDialog.py" line="157"/> + <location filename="Network/IRC/IrcNetworkListDialog.py" line="159"/> <source>Do you really want to delete IRC network <b>{0}</b>?</source> <translation>Soll das IRC Netzwerk <b>{0}</b> wirklich gelöscht werden?</translation> </message> @@ -26578,52 +26578,52 @@ <translation>Drücken, um den Kanal zu betreten</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="370"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="372"/> <source>Save Messages</source> <translation>Nachrichten speichern</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="353"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="355"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation>HTML Dateien (*.{0});;Text Dateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="370"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="372"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="388"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="390"/> <source>Error saving Messages</source> <translation>Fehler beim Speichern der Nachrichten</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="388"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="390"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Der Nachrichteninhalt konnte nicht nach <b>{0}</b> gespeichert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="400"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="402"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="405"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="407"/> <source>Cut all</source> <translation>Alles ausschneiden</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="409"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="411"/> <source>Copy all</source> <translation>Alles kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="414"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="416"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="Network/IRC/IrcNetworkWidget.py" line="419"/> + <location filename="Network/IRC/IrcNetworkWidget.py" line="421"/> <source>Save</source> <translation>Speichern</translation> </message> @@ -26982,77 +26982,77 @@ <context> <name>IrcUtilities</name> <message> - <location filename="Network/IRC/IrcUtilities.py" line="151"/> + <location filename="Network/IRC/IrcUtilities.py" line="153"/> <source>anonymous</source> <translation>anonym</translation> </message> <message> - <location filename="Network/IRC/IrcUtilities.py" line="152"/> - <source>ban mask</source> - <translation>Bann Maske</translation> - </message> - <message> - <location filename="Network/IRC/IrcUtilities.py" line="153"/> - <source>no colors allowed</source> - <translation>keine Farben erlaubt</translation> - </message> - <message> <location filename="Network/IRC/IrcUtilities.py" line="154"/> - <source>ban exception mask</source> - <translation>Bannausnahme Maske</translation> + <source>ban mask</source> + <translation>Bann Maske</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="155"/> - <source>invite only</source> - <translation>Einladung erforderlich</translation> + <source>no colors allowed</source> + <translation>keine Farben erlaubt</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="156"/> - <source>password protected</source> - <translation>Kennwort geschützt</translation> + <source>ban exception mask</source> + <translation>Bannausnahme Maske</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="157"/> - <source>user limit</source> - <translation>Nutzerbegrenzung</translation> + <source>invite only</source> + <translation>Einladung erforderlich</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="158"/> - <source>moderated</source> - <translation>moderiert</translation> + <source>password protected</source> + <translation>Kennwort geschützt</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="159"/> - <source>no messages from outside</source> - <translation>keine Meldung von außerhalb</translation> + <source>user limit</source> + <translation>Nutzerbegrenzung</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="160"/> - <source>private</source> - <translation>privat</translation> + <source>moderated</source> + <translation>moderiert</translation> + </message> + <message> + <location filename="Network/IRC/IrcUtilities.py" line="161"/> + <source>no messages from outside</source> + <translation>keine Meldung von außerhalb</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="162"/> - <source>reop channel</source> - <translation>Kanal übernehmen</translation> - </message> - <message> - <location filename="Network/IRC/IrcUtilities.py" line="163"/> - <source>secret</source> - <translation>unsichtbar</translation> + <source>private</source> + <translation>privat</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="164"/> - <source>topic protection</source> - <translation>Themenschutz</translation> + <source>reop channel</source> + <translation>Kanal übernehmen</translation> </message> <message> <location filename="Network/IRC/IrcUtilities.py" line="165"/> + <source>secret</source> + <translation>unsichtbar</translation> + </message> + <message> + <location filename="Network/IRC/IrcUtilities.py" line="166"/> + <source>topic protection</source> + <translation>Themenschutz</translation> + </message> + <message> + <location filename="Network/IRC/IrcUtilities.py" line="167"/> <source>invitation mask</source> <translation>Einladungsmaske</translation> </message> <message> - <location filename="Network/IRC/IrcUtilities.py" line="161"/> + <location filename="Network/IRC/IrcUtilities.py" line="163"/> <source>quiet</source> <translation>schweigend</translation> </message> @@ -27060,258 +27060,258 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="67"/> <source>Press to leave the current channel</source> <translation>Drücken, um den aktuellen Kanal zu verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="218"/> + <location filename="Network/IRC/IrcWidget.py" line="224"/> <source>Disconnect from Server</source> <translation>Verbindung zum Server beenden</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="218"/> + <location filename="Network/IRC/IrcWidget.py" line="224"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation><p>Soll die Verbindung zu <b>{0}</b> wirklich unterbrochen werden?</p><p>Alle Kanäle werden geschlossen.</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="179"/> + <location filename="Network/IRC/IrcWidget.py" line="185"/> <source>SSL Connection</source> <translation>SSL Verbindung</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="179"/> + <location filename="Network/IRC/IrcWidget.py" line="185"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation>Eine verschlüsselte Verbindung zum IRC Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern sie die Serverkonfiguration.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="458"/> + <location filename="Network/IRC/IrcWidget.py" line="464"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation>Suche nach Server {0} (Port {1}) über eine SSL verschlüsselte Verbindung...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="209"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Looking for server {0} (port {1})...</source> <translation>Suche nach Server {0} (Port {1})...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="225"/> + <location filename="Network/IRC/IrcWidget.py" line="231"/> <source>Disconnecting from server {0}...</source> <translation>Verbindung zum Server {0} wird unterbrochen...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="419"/> + <location filename="Network/IRC/IrcWidget.py" line="425"/> <source>Server found,connecting...</source> <translation>Server gefunden, Verbindung wird hergesteltl...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="426"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Connected,logging in...</source> <translation>Verbunden, Anmeldung läuft...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="458"/> + <location filename="Network/IRC/IrcWidget.py" line="464"/> <source>Server disconnected.</source> <translation>Serververbindung unterbrochen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="501"/> + <location filename="Network/IRC/IrcWidget.py" line="507"/> <source>Message Error</source> <translation>Nachrichtenfehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="501"/> + <location filename="Network/IRC/IrcWidget.py" line="507"/> <source>Unknown message received from server:<br/>{0}</source> <translation>Unbekannte Nachricht vom Server empfangen:<br/>{0}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="531"/> <source>Notice</source> <translation>Notiz</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="549"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="550"/> + <location filename="Network/IRC/IrcWidget.py" line="556"/> <source>You have left channel {0}.</source> <translation>Sie haben den Kanal {0} verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="561"/> + <location filename="Network/IRC/IrcWidget.py" line="567"/> <source>You are now known as {0}.</source> <translation>Sie sind jetzt als {0} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="566"/> + <location filename="Network/IRC/IrcWidget.py" line="572"/> <source>User {0} is now known as {1}.</source> <translation>Nutzer {0} ist nun als {1} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="571"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Server Error</source> <translation>Server Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="605"/> + <location filename="Network/IRC/IrcWidget.py" line="611"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="620"/> - <source>Welcome</source> - <translation>Willkommen</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> - <source>Support</source> - <translation>Support</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> - <source>User</source> - <translation>Nutzer</translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="626"/> - <source>MOTD</source> - <translation>MOTD</translation> + <source>Welcome</source> + <translation>Willkommen</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="628"/> - <source>Away</source> - <translation>Abwesend</translation> + <source>Support</source> + <translation>Support</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="630"/> - <source>Info ({0})</source> - <translation>Info ({0})</translation> + <source>User</source> + <translation>Nutzer</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="632"/> + <source>MOTD</source> + <translation>MOTD</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="634"/> - <source>Message of the day</source> - <translation>Nachricht des Tages</translation> + <source>Away</source> + <translation>Abwesend</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="636"/> + <source>Info ({0})</source> + <translation>Info ({0})</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="640"/> + <source>Message of the day</source> + <translation>Nachricht des Tages</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="642"/> <source>End of message of the day</source> <translation>Ende der Nachricht des Tages</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="639"/> + <location filename="Network/IRC/IrcWidget.py" line="645"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="643"/> + <location filename="Network/IRC/IrcWidget.py" line="649"/> <source>Current users on {0}: {1}, max. {2}</source> <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="647"/> + <location filename="Network/IRC/IrcWidget.py" line="653"/> <source>Current users on the network: {0}, max. {1}</source> <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="650"/> + <location filename="Network/IRC/IrcWidget.py" line="656"/> <source>You are no longer marked as being away.</source> <translation>Sie sind nicht länger als "abwesend" gekennzeichnet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="652"/> + <location filename="Network/IRC/IrcWidget.py" line="658"/> <source>You have been marked as being away.</source> <translation>Sie sind als "abwesend" gekennzeichnet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="758"/> + <location filename="Network/IRC/IrcWidget.py" line="764"/> <source>SSL Error</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="712"/> - <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> - <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="734"/> - <source>Socket Error</source> - <translation>Socker Fehler</translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="718"/> + <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> + <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="740"/> + <source>Socket Error</source> + <translation>Socker Fehler</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="724"/> <source>The host was not found. Please check the host name and port settings.</source> <translation>Der Server wurde nicht gefunden. Bitte prüfen sie den Servernamen und die Porteinstellungen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="728"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen sie den Servernamen und die Porteinstellungen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="730"/> + <location filename="Network/IRC/IrcWidget.py" line="736"/> <source>The following network error occurred:<br/>{0}</source> <translation>Der folgende Netzwerkfehler trat auf:<br/>{0}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="843"/> + <location filename="Network/IRC/IrcWidget.py" line="849"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation>{0} ({1})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="873"/> + <location filename="Network/IRC/IrcWidget.py" line="879"/> <source>Critical</source> <translation>Kritischer Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="857"/> + <location filename="Network/IRC/IrcWidget.py" line="863"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation>Es ist kein für den Server <b>{0}</b> akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="873"/> + <location filename="Network/IRC/IrcWidget.py" line="879"/> <source>The given nickname is already in use.</source> <translation>Der übergebene Spitzname wird bereits verwendet.</translation> </message> <message> + <location filename="Network/IRC/IrcWidget.py" line="836"/> + <source>CTCP</source> + <translation>CTCP</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="820"/> + <source>Received Version request from {0}.</source> + <translation>Versionsanfrage von {0} empfangen.</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="825"/> + <source>Received CTCP-PING request from {0}, sending answer.</source> + <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> + </message> + <message> <location filename="Network/IRC/IrcWidget.py" line="830"/> - <source>CTCP</source> - <translation>CTCP</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="814"/> - <source>Received Version request from {0}.</source> - <translation>Versionsanfrage von {0} empfangen.</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="819"/> - <source>Received CTCP-PING request from {0}, sending answer.</source> - <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="824"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="830"/> + <location filename="Network/IRC/IrcWidget.py" line="836"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="536"/> + <location filename="Network/IRC/IrcWidget.py" line="542"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation>Sie habe ihre persönlichen Modi auf <b>[{0}]</b> gesetzt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="540"/> + <location filename="Network/IRC/IrcWidget.py" line="546"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation>{0} hat ihre persönlichen Modi auf <b>[{0}]</b> geändert.</translation> </message> @@ -27326,22 +27326,22 @@ <translation>Netzwerk</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="726"/> + <location filename="Network/IRC/IrcWidget.py" line="732"/> <source>The SSL handshake failed.</source> <translation>Der SSL Handshake schlug fehl.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="734"/> + <location filename="Network/IRC/IrcWidget.py" line="740"/> <source>A network error occurred.</source> <translation>Ein Netzwerkfehler trat auf.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="746"/> + <location filename="Network/IRC/IrcWidget.py" line="752"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source> <translation>Es konnte keine SSL verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstütz der Server kein SSL (haben sie den richtigen Port verwendet?) oder sie haben das Zertifikat abgelehnt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="758"/> + <location filename="Network/IRC/IrcWidget.py" line="764"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source> <translation>Das SSL Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden. Die SSL Fehler wurden durch sie akzeptiert.</translation> </message> @@ -27349,27 +27349,27 @@ <context> <name>JavaScriptEricObject</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="127"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="133"/> <source>Search results provided by {0}</source> <translation>Suchergenisse durch {0} zur Verfügung gestellt</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="88"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="94"/> <source>Search!</source> <translation>Suchen!</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="86"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="92"/> <source>Welcome to eric5 Web Browser!</source> <translation>Willkommen beim eric5 Web Browser!</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="87"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="93"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="89"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="95"/> <source>About eric5</source> <translation>Über eric5</translation> </message> @@ -27442,7 +27442,7 @@ <translation>Wähle den zuzuordnenden alternativen Lexer</translation> </message> <message> - <location filename="Project/LexerAssociationDialog.py" line="123"/> + <location filename="Project/LexerAssociationDialog.py" line="125"/> <source>Alternative</source> <translation>Alternative</translation> </message> @@ -27450,222 +27450,222 @@ <context> <name>LexerPygments</name> <message> - <location filename="QScintilla/Lexers/LexerPygments.py" line="154"/> + <location filename="QScintilla/Lexers/LexerPygments.py" line="156"/> <source>Default</source> <translation>Standard</translation> </message> <message> - <location filename="QScintilla/Lexers/LexerPygments.py" line="155"/> - <source>Comment</source> - <translation>Kommentar</translation> - </message> - <message> - <location filename="QScintilla/Lexers/LexerPygments.py" line="156"/> - <source>Preprocessor</source> - <translation>Präprozessor</translation> - </message> - <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="157"/> - <source>Keyword</source> - <translation>Schlüsselwort</translation> + <source>Comment</source> + <translation>Kommentar</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="158"/> - <source>Pseudo Keyword</source> - <translation>Pseudo-Schlüsselwort</translation> + <source>Preprocessor</source> + <translation>Präprozessor</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="159"/> - <source>Type Keyword</source> - <translation>Typ-Schlüsselwort</translation> + <source>Keyword</source> + <translation>Schlüsselwort</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="160"/> - <source>Operator</source> - <translation>Operator</translation> + <source>Pseudo Keyword</source> + <translation>Pseudo-Schlüsselwort</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="161"/> - <source>Word</source> - <translation>Wort</translation> + <source>Type Keyword</source> + <translation>Typ-Schlüsselwort</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="162"/> - <source>Builtin</source> - <translation>Intern</translation> + <source>Operator</source> + <translation>Operator</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="163"/> - <source>Function or method name</source> - <translation>Funktions- oder Methodenname</translation> + <source>Word</source> + <translation>Wort</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="164"/> - <source>Class name</source> - <translation>Klassenname</translation> + <source>Builtin</source> + <translation>Intern</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="165"/> - <source>Namespace</source> - <translation>Namensraum</translation> + <source>Function or method name</source> + <translation>Funktions- oder Methodenname</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="166"/> - <source>Exception</source> - <translation>Ausnahme</translation> + <source>Class name</source> + <translation>Klassenname</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="167"/> - <source>Identifier</source> - <translation>Bezeichner</translation> + <source>Namespace</source> + <translation>Namensraum</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="168"/> - <source>Constant</source> - <translation>Konstante</translation> + <source>Exception</source> + <translation>Ausnahme</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="169"/> - <source>Label</source> - <translation>Marke</translation> + <source>Identifier</source> + <translation>Bezeichner</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="170"/> - <source>Entity</source> - <translation>Entität</translation> + <source>Constant</source> + <translation>Konstante</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="171"/> - <source>Attribute</source> - <translation>Attribut</translation> + <source>Label</source> + <translation>Marke</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="172"/> - <source>Tag</source> - <translation>Tag</translation> + <source>Entity</source> + <translation>Entität</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="173"/> - <source>Decorator</source> - <translation>Dekorator</translation> + <source>Attribute</source> + <translation>Attribut</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="174"/> - <source>String</source> - <translation>Zeichenkette</translation> + <source>Tag</source> + <translation>Tag</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="175"/> - <source>Documentation string</source> - <translation>Dokumentationszeichenkette</translation> + <source>Decorator</source> + <translation>Dekorator</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="176"/> - <source>Scalar</source> - <translation>Skalar</translation> + <source>String</source> + <translation>Zeichenkette</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="177"/> - <source>Escape</source> - <translation>Escape</translation> + <source>Documentation string</source> + <translation>Dokumentationszeichenkette</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="178"/> - <source>Regular expression</source> - <translation>Regulärer Ausdruck</translation> + <source>Scalar</source> + <translation>Skalar</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="179"/> - <source>Symbol</source> - <translation>Symbol</translation> + <source>Escape</source> + <translation>Escape</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="180"/> - <source>Other string</source> - <translation>sonstige Zeichenkette</translation> + <source>Regular expression</source> + <translation>Regulärer Ausdruck</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="181"/> - <source>Number</source> - <translation>Zahl</translation> + <source>Symbol</source> + <translation>Symbol</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="182"/> - <source>Heading</source> - <translation>Überschrift</translation> + <source>Other string</source> + <translation>sonstige Zeichenkette</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="183"/> - <source>Subheading</source> - <translation>Unterüberschrift</translation> + <source>Number</source> + <translation>Zahl</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="184"/> - <source>Deleted</source> - <translation>Gelöscht</translation> + <source>Heading</source> + <translation>Überschrift</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="185"/> - <source>Inserted</source> - <translation>Eingefügt</translation> + <source>Subheading</source> + <translation>Unterüberschrift</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="186"/> - <source>Generic error</source> - <translation>Allgemeiner Fehler</translation> + <source>Deleted</source> + <translation>Gelöscht</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="187"/> - <source>Emphasized text</source> - <translation>Hervorgehobener Text</translation> + <source>Inserted</source> + <translation>Eingefügt</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="188"/> - <source>Strong text</source> - <translation>Fetter Text</translation> + <source>Generic error</source> + <translation>Allgemeiner Fehler</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="189"/> - <source>Prompt</source> - <translation>Eingabeaufforderung</translation> + <source>Emphasized text</source> + <translation>Hervorgehobener Text</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="190"/> - <source>Output</source> - <translation>Ausgabe</translation> + <source>Strong text</source> + <translation>Fetter Text</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="191"/> - <source>Traceback</source> - <translation>Traceback</translation> + <source>Prompt</source> + <translation>Eingabeaufforderung</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="192"/> - <source>Error</source> - <translation>Fehler</translation> + <source>Output</source> + <translation>Ausgabe</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="193"/> - <source>Comment block</source> - <translation>Kommentarblock</translation> + <source>Traceback</source> + <translation>Traceback</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="194"/> - <source>Property</source> - <translation>Eigenschaft</translation> + <source>Error</source> + <translation>Fehler</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="195"/> - <source>Character</source> - <translation>Zeichen</translation> + <source>Comment block</source> + <translation>Kommentarblock</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="196"/> - <source>Here document</source> - <translation>Here Dokument</translation> + <source>Property</source> + <translation>Eigenschaft</translation> </message> <message> <location filename="QScintilla/Lexers/LexerPygments.py" line="197"/> + <source>Character</source> + <translation>Zeichen</translation> + </message> + <message> + <location filename="QScintilla/Lexers/LexerPygments.py" line="198"/> + <source>Here document</source> + <translation>Here Dokument</translation> + </message> + <message> + <location filename="QScintilla/Lexers/LexerPygments.py" line="199"/> <source>Punctuation</source> <translation>Satzzeichen</translation> </message> @@ -27673,542 +27673,542 @@ <context> <name>Lexers</name> <message> - <location filename="QScintilla/Lexers/__init__.py" line="80"/> + <location filename="QScintilla/Lexers/__init__.py" line="82"/> <source>Bash</source> <translation>Bash</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="82"/> - <source>Batch</source> - <translation>Batch</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="84"/> - <source>C/C++</source> - <translation>C/C++</translation> + <source>Batch</source> + <translation>Batch</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="86"/> - <source>C#</source> - <translation>C#</translation> + <source>C/C++</source> + <translation>C/C++</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="88"/> - <source>CMake</source> - <translation>CMake</translation> + <source>C#</source> + <translation>C#</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="90"/> - <source>CSS</source> - <translation>CSS</translation> + <source>CMake</source> + <translation>CMake</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="92"/> - <source>D</source> - <translation>D</translation> + <source>CSS</source> + <translation>CSS</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="94"/> + <source>D</source> + <translation>D</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="96"/> <source>Diff</source> <translation>Diff</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="100"/> - <source>HTML/PHP/XML</source> - <translation>HTML/PHP/XML</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="102"/> - <source>IDL</source> - <translation>IDL</translation> + <source>HTML/PHP/XML</source> + <translation>HTML/PHP/XML</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="104"/> - <source>Java</source> - <translation>Java</translation> + <source>IDL</source> + <translation>IDL</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="106"/> - <source>JavaScript</source> - <translation>JavaScript</translation> + <source>Java</source> + <translation>Java</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="108"/> - <source>Lua</source> - <translation>Lua</translation> + <source>JavaScript</source> + <translation>JavaScript</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="110"/> + <source>Lua</source> + <translation>Lua</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="112"/> <source>Makefile</source> <translation>Makefile</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="114"/> + <location filename="QScintilla/Lexers/__init__.py" line="116"/> <source>Perl</source> <translation>Perl</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="118"/> - <source>Povray</source> - <translation>Povray</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="120"/> + <source>Povray</source> + <translation>Povray</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="122"/> <source>Properties</source> <translation>Einstellungen</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="126"/> - <source>Ruby</source> - <translation>Ruby</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="128"/> + <source>Ruby</source> + <translation>Ruby</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="130"/> <source>SQL</source> <translation>SQL</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="132"/> - <source>TeX</source> - <translation>TeX</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="134"/> + <source>TeX</source> + <translation>TeX</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="136"/> <source>VHDL</source> <translation>VHDL</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="445"/> - <source>Pyrex Files (*.pyx)</source> - <translation>Pyrex Dateien (*.pyx)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="447"/> - <source>Quixote Template Files (*.ptl)</source> - <translation>Quixote Template Dateien (*.ptl)</translation> + <source>Pyrex Files (*.pyx)</source> + <translation>Pyrex Dateien (*.pyx)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="449"/> - <source>Ruby Files (*.rb)</source> - <translation>Ruby Dateien (*.rb)</translation> + <source>Quixote Template Files (*.ptl)</source> + <translation>Quixote Template Dateien (*.ptl)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="451"/> + <source>Ruby Files (*.rb)</source> + <translation>Ruby Dateien (*.rb)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="453"/> <source>IDL Files (*.idl)</source> <translation>IDL Dateien (*.idl)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="336"/> - <source>C Files (*.h *.c)</source> - <translation>C Dateien (*.h *.c)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="338"/> + <source>C Files (*.h *.c)</source> + <translation>C Dateien (*.h *.c)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="340"/> <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source> <translation>C++ Dateien (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="459"/> + <location filename="QScintilla/Lexers/__init__.py" line="461"/> <source>C# Files (*.cs)</source> <translation>C# Dateien (*.cs)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="342"/> + <location filename="QScintilla/Lexers/__init__.py" line="344"/> <source>HTML Files (*.html *.htm *.asp *.shtml)</source> <translation>HTML Dateien (*.html *.htm *.asp *.shtml)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="467"/> - <source>CSS Files (*.css)</source> - <translation>CSS Dateien (*.css)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="469"/> + <source>CSS Files (*.css)</source> + <translation>CSS Dateien (*.css)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="471"/> <source>QSS Files (*.qss)</source> <translation>QSS Dateien (*.qss)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="348"/> + <location filename="QScintilla/Lexers/__init__.py" line="350"/> <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source> <translation>PHP Dateien (*.php *.php3 *.php4 *.php5 *.phtml)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="477"/> + <location filename="QScintilla/Lexers/__init__.py" line="479"/> <source>Qt Resource Files (*.qrc)</source> <translation>Qt Resource Dateien (*.qrc)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="354"/> + <location filename="QScintilla/Lexers/__init__.py" line="356"/> <source>D Files (*.d *.di)</source> <translation>D Dateien (*.d *.di)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="483"/> - <source>Java Files (*.java)</source> - <translation>Java Dateien (*.java)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="485"/> - <source>JavaScript Files (*.js)</source> - <translation>JavaScript Dateien (*.js)</translation> + <source>Java Files (*.java)</source> + <translation>Java Dateien (*.java)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="487"/> - <source>SQL Files (*.sql)</source> - <translation>SQL Dateien (*.sql)</translation> + <source>JavaScript Files (*.js)</source> + <translation>JavaScript Dateien (*.js)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="489"/> + <source>SQL Files (*.sql)</source> + <translation>SQL Dateien (*.sql)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="491"/> <source>Docbook Files (*.docbook)</source> <translation>Docbook Dateien (*.docbook)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="364"/> + <location filename="QScintilla/Lexers/__init__.py" line="366"/> <source>Perl Files (*.pl *.pm *.ph)</source> <translation>Perl Dateien (*.pl *,pm *.ph)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="495"/> - <source>Lua Files (*.lua)</source> - <translation>Lua Dateien (*.lua)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="368"/> - <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source> - <translation>TeX Dateien (*.tex *.sty *.aux *.toc *.idx)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="497"/> + <source>Lua Files (*.lua)</source> + <translation>Lua Dateien (*.lua)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="370"/> + <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source> + <translation>TeX Dateien (*.tex *.sty *.aux *.toc *.idx)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="499"/> <source>Shell Files (*.sh)</source> <translation>Shell dateien (*.sh)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="372"/> - <source>Batch Files (*.bat *.cmd)</source> - <translation>Batch Dateien (*.bat *.cmd)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="374"/> - <source>Diff Files (*.diff *.patch)</source> - <translation>Diff Dateien (*.diff *.patch)</translation> + <source>Batch Files (*.bat *.cmd)</source> + <translation>Batch Dateien (*.bat *.cmd)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="376"/> - <source>Makefiles (*.mak)</source> - <translation>Make Dateien (*.mak)</translation> + <source>Diff Files (*.diff *.patch)</source> + <translation>Diff Dateien (*.diff *.patch)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="378"/> + <source>Makefiles (*.mak)</source> + <translation>Make Dateien (*.mak)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="380"/> <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source> <translation>Properties Dateien (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="513"/> + <location filename="QScintilla/Lexers/__init__.py" line="515"/> <source>Povray Files (*.pov)</source> <translation>Povray Dateien (*.pov)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="382"/> - <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source> - <translation>CMake Dateien (CMakeLists.txt *.cmake *.ctest)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="384"/> - <source>VHDL Files (*.vhd *.vhdl)</source> - <translation>VHDL Dateien (*.vhd *.vhdl)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="554"/> - <source>All Files (*)</source> - <translation>Alle Dateien (*)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="130"/> - <source>TCL</source> - <translation>TCL</translation> + <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source> + <translation>CMake Dateien (CMakeLists.txt *.cmake *.ctest)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="386"/> + <source>VHDL Files (*.vhd *.vhdl)</source> + <translation>VHDL Dateien (*.vhd *.vhdl)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="556"/> + <source>All Files (*)</source> + <translation>Alle Dateien (*)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="132"/> + <source>TCL</source> + <translation>TCL</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="388"/> <source>TCL/Tk Files (*.tcl *.tk)</source> <translation>TCL/Tk Dateien (*.tcl *.tk)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="453"/> - <source>C Files (*.c)</source> - <translation>C Dateien (*.c)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="455"/> - <source>C++ Files (*.cpp)</source> - <translation>C++ Dateien (*.cpp)</translation> + <source>C Files (*.c)</source> + <translation>C Dateien (*.c)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="457"/> + <source>C++ Files (*.cpp)</source> + <translation>C++ Dateien (*.cpp)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="459"/> <source>C++/C Header Files (*.h)</source> <translation>C++/C Header Dateien (*.h)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="461"/> - <source>HTML Files (*.html)</source> - <translation>HTML Dateien (*.html)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="463"/> - <source>PHP Files (*.php)</source> - <translation>PHP Dateien (*.php)</translation> + <source>HTML Files (*.html)</source> + <translation>HTML Dateien (*.html)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="465"/> + <source>PHP Files (*.php)</source> + <translation>PHP Dateien (*.php)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="467"/> <source>ASP Files (*.asp)</source> <translation>ASP Dateien (*.asp)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="471"/> - <source>XML Files (*.xml)</source> - <translation>XML Dateien (*.xml)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="473"/> - <source>XSL Files (*.xsl)</source> - <translation>XSL Dateien (*.xsl)</translation> + <source>XML Files (*.xml)</source> + <translation>XML Dateien (*.xml)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="475"/> + <source>XSL Files (*.xsl)</source> + <translation>XSL Dateien (*.xsl)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="477"/> <source>DTD Files (*.dtd)</source> <translation>DTD Dateien (*.dtd)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="479"/> - <source>D Files (*.d)</source> - <translation>D Dateien (*.d)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="481"/> + <source>D Files (*.d)</source> + <translation>D Dateien (*.d)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="483"/> <source>D Interface Files (*.di)</source> <translation>D Interface Dateien (*.di)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="491"/> - <source>Perl Files (*.pl)</source> - <translation>Perl Dateien (*.pl)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="493"/> + <source>Perl Files (*.pl)</source> + <translation>Perl Dateien (*.pl)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="495"/> <source>Perl Module Files (*.pm)</source> <translation>Perl Modul Dateien (*.pm)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="499"/> - <source>Batch Files (*.bat)</source> - <translation>Batch Dateien (*.bat)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="501"/> - <source>TeX Files (*.tex)</source> - <translation>TeX Dateien (*.tex)</translation> + <source>Batch Files (*.bat)</source> + <translation>Batch Dateien (*.bat)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="503"/> - <source>TeX Template Files (*.sty)</source> - <translation>TeX Template Dateien (*.sty)</translation> + <source>TeX Files (*.tex)</source> + <translation>TeX Dateien (*.tex)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="505"/> - <source>Diff Files (*.diff)</source> - <translation>Diff Dateien (*.diff)</translation> + <source>TeX Template Files (*.sty)</source> + <translation>TeX Template Dateien (*.sty)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="507"/> - <source>Make Files (*.mak)</source> - <translation>Make Dateien (*.mak)</translation> + <source>Diff Files (*.diff)</source> + <translation>Diff Dateien (*.diff)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="509"/> - <source>Properties Files (*.ini)</source> - <translation>Properties Dateien (*.ini)</translation> + <source>Make Files (*.mak)</source> + <translation>Make Dateien (*.mak)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="511"/> + <source>Properties Files (*.ini)</source> + <translation>Properties Dateien (*.ini)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="513"/> <source>Configuration Files (*.cfg)</source> <translation>Konfigurations Dateien (*.cfg)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="515"/> - <source>CMake Files (CMakeLists.txt)</source> - <translation>CMake Dateien (CMakeLists.txt)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="517"/> - <source>CMake Macro Files (*.cmake)</source> - <translation>CMake Makro Dateien (*.cmake)</translation> + <source>CMake Files (CMakeLists.txt)</source> + <translation>CMake Dateien (CMakeLists.txt)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="519"/> - <source>VHDL Files (*.vhd)</source> - <translation>VHDL Dateien (*.vhd)</translation> + <source>CMake Macro Files (*.cmake)</source> + <translation>CMake Makro Dateien (*.cmake)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="521"/> - <source>TCL Files (*.tcl)</source> - <translation>TCL Dateien (*.tcl)</translation> + <source>VHDL Files (*.vhd)</source> + <translation>VHDL Dateien (*.vhd)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="523"/> + <source>TCL Files (*.tcl)</source> + <translation>TCL Dateien (*.tcl)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="525"/> <source>Tk Files (*.tk)</source> <translation>Tk Dateien (*.tk)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="96"/> - <source>Fortran</source> - <translation>Fortran</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="98"/> + <source>Fortran</source> + <translation>Fortran</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="100"/> <source>Fortran77</source> <translation>Fortran77</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="112"/> + <location filename="QScintilla/Lexers/__init__.py" line="114"/> <source>Pascal</source> <translation>Pascal</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="388"/> - <source>Fortran Files (*.f90 *.f95 *.f2k)</source> - <translation>Fortran-Dateien (*.f90 *.f95 *.f2k)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="390"/> - <source>Fortran77 Files (*.f *.for)</source> - <translation>Fortran77-Dateien (*.f *.for)</translation> + <source>Fortran Files (*.f90 *.f95 *.f2k)</source> + <translation>Fortran-Dateien (*.f90 *.f95 *.f2k)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="392"/> + <source>Fortran77 Files (*.f *.for)</source> + <translation>Fortran77-Dateien (*.f *.for)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="394"/> <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source> <translation>Pascal-Dateien (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="525"/> - <source>Fortran Files (*.f95)</source> - <translation>Fortran-Dateien (*.f95)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="527"/> - <source>Fortran77 Files (*.f)</source> - <translation>Fortran77-Dateien (*.f)</translation> + <source>Fortran Files (*.f95)</source> + <translation>Fortran-Dateien (*.f95)</translation> </message> <message> <location filename="QScintilla/Lexers/__init__.py" line="529"/> + <source>Fortran77 Files (*.f)</source> + <translation>Fortran77-Dateien (*.f)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="531"/> <source>Pascal Files (*.pas)</source> <translation>Pascal-Dateien (*.pas)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="116"/> + <location filename="QScintilla/Lexers/__init__.py" line="118"/> <source>PostScript</source> <translation>PostScript</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="136"/> - <source>XML</source> - <translation>XML</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="138"/> + <source>XML</source> + <translation>XML</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="140"/> <source>YAML</source> <translation>YAML</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="350"/> + <location filename="QScintilla/Lexers/__init__.py" line="352"/> <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source> <translation>XML Dateien (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="531"/> - <source>PostScript Files (*.ps)</source> - <translation>PostScript Dateien (*.ps)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="396"/> - <source>YAML Files (*.yaml *.yml)</source> - <translation>YAML Dateien (*.yaml *.yml)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="533"/> + <source>PostScript Files (*.ps)</source> + <translation>PostScript Dateien (*.ps)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="398"/> + <source>YAML Files (*.yaml *.yml)</source> + <translation>YAML Dateien (*.yaml *.yml)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="535"/> <source>YAML Files (*.yml)</source> <translation>YAML Dateien (*.yml)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="154"/> + <location filename="QScintilla/Lexers/__init__.py" line="156"/> <source>Pygments</source> <translation>Pygments</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="324"/> - <source>Python Files (*.py *.py2 *.py3)</source> - <translation>Python Dateien (*.py *.py2 *.py3)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="326"/> + <source>Python Files (*.py *.py2 *.py3)</source> + <translation>Python Dateien (*.py *.py2 *.py3)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="328"/> <source>Python GUI Files (*.pyw *.pyw2 *.pyw3)</source> <translation>Python GUI Dateien (*.pyw *.pyw2 *.pyw3)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="439"/> - <source>Python3 Files (*.py)</source> - <translation>Python3 Dateien (*.py)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="443"/> - <source>Python3 GUI Files (*.pyw)</source> - <translation>Python3 GUI Dateien (*.pyw)</translation> - </message> - <message> - <location filename="QScintilla/Lexers/__init__.py" line="437"/> - <source>Python2 Files (*.py2)</source> - <translation>Python2 Dateien (*.py2)</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="441"/> + <source>Python3 Files (*.py)</source> + <translation>Python3 Dateien (*.py)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="445"/> + <source>Python3 GUI Files (*.pyw)</source> + <translation>Python3 GUI Dateien (*.pyw)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="439"/> + <source>Python2 Files (*.py2)</source> + <translation>Python2 Dateien (*.py2)</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="443"/> <source>Python2 GUI Files (*.pyw2)</source> <translation>Python2 GUI Dateien (*.pyw2)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="122"/> - <source>Python2</source> - <translation>Python2</translation> - </message> - <message> <location filename="QScintilla/Lexers/__init__.py" line="124"/> + <source>Python2</source> + <translation>Python2</translation> + </message> + <message> + <location filename="QScintilla/Lexers/__init__.py" line="126"/> <source>Python3</source> <translation>Python3</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="143"/> + <location filename="QScintilla/Lexers/__init__.py" line="145"/> <source>Matlab</source> <translation>Matlab</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="143"/> + <location filename="QScintilla/Lexers/__init__.py" line="145"/> <source>Octave</source> <translation>Octave</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="401"/> + <location filename="QScintilla/Lexers/__init__.py" line="403"/> <source>Matlab Files (*.m *.m.matlab)</source> <translation>Matlab Dateien (*.m *.m.matlab)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="538"/> + <location filename="QScintilla/Lexers/__init__.py" line="540"/> <source>Matlab Files (*.m)</source> <translation>Matlab Dateien (*.m)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="538"/> + <location filename="QScintilla/Lexers/__init__.py" line="540"/> <source>Octave Files (*.m.octave)</source> <translation>Octave Dateien (*.m.octave)</translation> </message> <message> - <location filename="QScintilla/Lexers/__init__.py" line="401"/> + <location filename="QScintilla/Lexers/__init__.py" line="403"/> <source>Octave Files (*.m *.m.octave)</source> <translation>Octave Dateien (*.m *.m.octave)</translation> </message> @@ -28216,57 +28216,57 @@ <context> <name>Listspace</name> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="368"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="370"/> <source>Untitled {0}</source> <translation>Unbenannt {0}</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="223"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="225"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="228"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="230"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="231"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="233"/> - <source>Save As...</source> - <translation>Speichern unter...</translation> + <source>Save</source> + <translation>Speichern</translation> </message> <message> <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="235"/> + <source>Save As...</source> + <translation>Speichern unter...</translation> + </message> + <message> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="237"/> <source>Save All</source> <translation>Alle speichern</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="242"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="244"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="473"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="475"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="239"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="241"/> <source>Open 'rejection' file</source> <translation>Öffne "Ablehnungs"-Datei</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="245"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="247"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="225"/> + <location filename="Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="227"/> <source>Close Others</source> <translation>Andere schließen</translation> </message> @@ -28274,27 +28274,27 @@ <context> <name>LogViewerEdit</name> <message> - <location filename="UI/LogView.py" line="103"/> + <location filename="UI/LogView.py" line="105"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="UI/LogView.py" line="104"/> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> <location filename="UI/LogView.py" line="106"/> - <source>Find</source> - <translation>Suchen</translation> + <source>Copy</source> + <translation>Kopieren</translation> </message> <message> <location filename="UI/LogView.py" line="108"/> - <source>Select All</source> - <translation>Alles auswählen</translation> + <source>Find</source> + <translation>Suchen</translation> </message> <message> <location filename="UI/LogView.py" line="110"/> + <source>Select All</source> + <translation>Alles auswählen</translation> + </message> + <message> + <location filename="UI/LogView.py" line="112"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> @@ -28347,27 +28347,27 @@ <translation>Zeigt eine Indikation für die Kennwortstärke an</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="34"/> + <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="36"/> <source>(not defined yet)</source> <translation>(noch nicht definiert)</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/> + <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="52"/> <source>Wrong password entered.</source> <translation>Falsches Kennwort eingegeben.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/> + <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="56"/> <source>New password must not be empty.</source> <translation>Neues Kennwort darf nicht leer sein.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="59"/> + <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/> <source>Repeated password is wrong.</source> <translation>Wiederholtes Kennwort ist falsch.</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="64"/> + <location filename="Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/> <source>Old and new password must not be the same.</source> <translation>Altes und neues Kennwort dürfen nicht gleich sein.</translation> </message> @@ -28500,27 +28500,27 @@ <context> <name>MessageBoxWizard</name> <message> - <location filename="Plugins/PluginWizardQMessageBox.py" line="120"/> + <location filename="Plugins/PluginWizardQMessageBox.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQMessageBox.py" line="120"/> + <location filename="Plugins/PluginWizardQMessageBox.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQMessageBox.py" line="73"/> + <location filename="Plugins/PluginWizardQMessageBox.py" line="75"/> <source>QMessageBox Wizard</source> <translation>QMessageBox Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQMessageBox.py" line="70"/> + <location filename="Plugins/PluginWizardQMessageBox.py" line="72"/> <source>Q&MessageBox Wizard...</source> <translation>Q&MessageBox Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQMessageBox.py" line="74"/> + <location filename="Plugins/PluginWizardQMessageBox.py" line="76"/> <source><b>QMessageBox Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QMessageBox. The generated code is inserted at the current cursor position.</p></source> <translation><b>QMessageBox Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung einer QMessageBox benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -28623,92 +28623,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="38"/> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> <source>Apply</source> <translation>Anwenden</translation> </message> <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="37"/> - <source>Abort</source> - <translation>Abbrechen (Abort)</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <source>Abort</source> + <translation>Abbrechen (Abort)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> <source>Cancel</source> <translation>Abbrechen (Cancel)</translation> </message> <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <source>Ignore</source> + <translation>Ignorieren</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <source>Save all</source> + <translation>Alles speichern</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> - <source>Ignore</source> - <translation>Ignorieren</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> - <source>Save all</source> - <translation>Alles speichern</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> <source>Discard</source> <translation>Verwerfen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <source>Open</source> + <translation>Öffnen</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <source>Reset</source> + <translation>Zurücksetzen</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <source>Ok</source> + <translation>Ok</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <source>No</source> + <translation>Nein</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <source>Help</source> + <translation>Hilfe</translation> + </message> + <message> <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> - <source>Open</source> - <translation>Öffnen</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> - <source>Reset</source> - <translation>Zurücksetzen</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> - <source>Ok</source> - <translation>Ok</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> - <source>No</source> - <translation>Nein</translation> + <source>No to all</source> + <translation>Nein zu allen</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <source>Retry</source> + <translation>Wiederholen</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <source>Restore defaults</source> + <translation>Auf Standardwerte zurücksetzen</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <source>Yes</source> + <translation>Ja</translation> </message> <message> <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> - <source>Help</source> - <translation>Hilfe</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> - <source>No to all</source> - <translation>Nein zu allen</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> - <source>Retry</source> - <translation>Wiederholen</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> - <source>Restore defaults</source> - <translation>Auf Standardwerte zurücksetzen</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> - <source>Yes</source> - <translation>Ja</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> <source>Close</source> <translation>Schließen</translation> </message> @@ -28718,12 +28718,12 @@ <translation>Wähle den Standardknopf</translation> </message> <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="36"/> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="38"/> <source>No button</source> <translation>kein Knopf</translation> </message> <message> - <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="102"/> + <location filename="Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="104"/> <source>Test</source> <translation>Test</translation> </message> @@ -28776,614 +28776,614 @@ <context> <name>MiniEditor</name> <message> - <location filename="QScintilla/MiniEditor.py" line="352"/> + <location filename="QScintilla/MiniEditor.py" line="354"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="352"/> + <location filename="QScintilla/MiniEditor.py" line="354"/> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="352"/> + <location filename="QScintilla/MiniEditor.py" line="354"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="357"/> + <location filename="QScintilla/MiniEditor.py" line="359"/> <source>Open an empty editor window</source> <translation>Öffnet ein leeres Editorfenster</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="358"/> + <location filename="QScintilla/MiniEditor.py" line="360"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Neu</b><p>Ein neues Editorfenster wird geöffnet.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="365"/> + <location filename="QScintilla/MiniEditor.py" line="367"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="365"/> + <location filename="QScintilla/MiniEditor.py" line="367"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="365"/> + <location filename="QScintilla/MiniEditor.py" line="367"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="370"/> + <location filename="QScintilla/MiniEditor.py" line="372"/> <source>Open a file</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="371"/> + <location filename="QScintilla/MiniEditor.py" line="373"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Datei öffnen</b><p>Sie werden nach dem Namen einer Datei gefragt, die geöffnet werden soll.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="378"/> + <location filename="QScintilla/MiniEditor.py" line="380"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="378"/> + <location filename="QScintilla/MiniEditor.py" line="380"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="378"/> + <location filename="QScintilla/MiniEditor.py" line="380"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="383"/> + <location filename="QScintilla/MiniEditor.py" line="385"/> <source>Save the current file</source> <translation>Speichert die aktuelle Datei</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="384"/> + <location filename="QScintilla/MiniEditor.py" line="386"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="391"/> + <location filename="QScintilla/MiniEditor.py" line="393"/> <source>Save as</source> <translation>Speichern unter</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="391"/> + <location filename="QScintilla/MiniEditor.py" line="393"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="391"/> + <location filename="QScintilla/MiniEditor.py" line="393"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="396"/> + <location filename="QScintilla/MiniEditor.py" line="398"/> <source>Save the current file to a new one</source> <translation>Speichere die aktuelle Datei unter neuem Namen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="397"/> + <location filename="QScintilla/MiniEditor.py" line="399"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Speichen unter</b><p>Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="405"/> + <location filename="QScintilla/MiniEditor.py" line="407"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="405"/> + <location filename="QScintilla/MiniEditor.py" line="407"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="405"/> + <location filename="QScintilla/MiniEditor.py" line="407"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="410"/> + <location filename="QScintilla/MiniEditor.py" line="412"/> <source>Close the editor window</source> <translation>Schließt das Editorfenster</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="411"/> + <location filename="QScintilla/MiniEditor.py" line="413"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="449"/> + <location filename="QScintilla/MiniEditor.py" line="451"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="449"/> + <location filename="QScintilla/MiniEditor.py" line="451"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="449"/> + <location filename="QScintilla/MiniEditor.py" line="451"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="449"/> + <location filename="QScintilla/MiniEditor.py" line="451"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="455"/> + <location filename="QScintilla/MiniEditor.py" line="457"/> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="456"/> + <location filename="QScintilla/MiniEditor.py" line="458"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung des aktuellen Editors rückgängig.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="463"/> + <location filename="QScintilla/MiniEditor.py" line="465"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="463"/> + <location filename="QScintilla/MiniEditor.py" line="465"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="463"/> + <location filename="QScintilla/MiniEditor.py" line="465"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="468"/> + <location filename="QScintilla/MiniEditor.py" line="470"/> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="469"/> + <location filename="QScintilla/MiniEditor.py" line="471"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung des aktuellen Editors wieder her.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="476"/> + <location filename="QScintilla/MiniEditor.py" line="478"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="476"/> + <location filename="QScintilla/MiniEditor.py" line="478"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="476"/> + <location filename="QScintilla/MiniEditor.py" line="478"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="476"/> + <location filename="QScintilla/MiniEditor.py" line="478"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="482"/> + <location filename="QScintilla/MiniEditor.py" line="484"/> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="483"/> + <location filename="QScintilla/MiniEditor.py" line="485"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="490"/> + <location filename="QScintilla/MiniEditor.py" line="492"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="490"/> + <location filename="QScintilla/MiniEditor.py" line="492"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="490"/> + <location filename="QScintilla/MiniEditor.py" line="492"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="490"/> + <location filename="QScintilla/MiniEditor.py" line="492"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="496"/> + <location filename="QScintilla/MiniEditor.py" line="498"/> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="497"/> + <location filename="QScintilla/MiniEditor.py" line="499"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="504"/> + <location filename="QScintilla/MiniEditor.py" line="506"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="504"/> + <location filename="QScintilla/MiniEditor.py" line="506"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="504"/> + <location filename="QScintilla/MiniEditor.py" line="506"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="504"/> + <location filename="QScintilla/MiniEditor.py" line="506"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="510"/> + <location filename="QScintilla/MiniEditor.py" line="512"/> <source>Paste the last cut/copied text</source> <translation>Fügt den Inhalt der Zwischenablage ein</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="511"/> + <location filename="QScintilla/MiniEditor.py" line="513"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Einfügen</b><p>Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="519"/> + <location filename="QScintilla/MiniEditor.py" line="521"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="519"/> + <location filename="QScintilla/MiniEditor.py" line="521"/> <source>Cl&ear</source> <translation>All&es löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="519"/> + <location filename="QScintilla/MiniEditor.py" line="521"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="525"/> + <location filename="QScintilla/MiniEditor.py" line="527"/> <source>Clear all text</source> <translation>Löscht den gesamten Text</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="526"/> + <location filename="QScintilla/MiniEditor.py" line="528"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Alles Löschen</b><p>Dies löscht den gesamten Text des aktuellen Editors.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1751"/> + <location filename="QScintilla/MiniEditor.py" line="1753"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1751"/> + <location filename="QScintilla/MiniEditor.py" line="1753"/> <source>&About</source> <translation>&Über</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1754"/> + <location filename="QScintilla/MiniEditor.py" line="1756"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1755"/> + <location filename="QScintilla/MiniEditor.py" line="1757"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1761"/> - <source>About Qt</source> - <translation>Über Qt</translation> - </message> - <message> - <location filename="QScintilla/MiniEditor.py" line="1761"/> - <source>About &Qt</source> - <translation>Über &Qt</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="1763"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> + <source>About Qt</source> + <translation>Über Qt</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1763"/> + <source>About &Qt</source> + <translation>Über &Qt</translation> </message> <message> <location filename="QScintilla/MiniEditor.py" line="1765"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1767"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1793"/> + <location filename="QScintilla/MiniEditor.py" line="1795"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1804"/> + <location filename="QScintilla/MiniEditor.py" line="1806"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1821"/> + <location filename="QScintilla/MiniEditor.py" line="1823"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1882"/> + <location filename="QScintilla/MiniEditor.py" line="1884"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilennummer des Editors an.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1889"/> + <location filename="QScintilla/MiniEditor.py" line="1891"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des Editors an.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1894"/> + <location filename="QScintilla/MiniEditor.py" line="1896"/> <source>Ready</source> <translation>Bereit</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1960"/> + <location filename="QScintilla/MiniEditor.py" line="1962"/> <source>File loaded</source> <translation>Datei geladen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2279"/> + <location filename="QScintilla/MiniEditor.py" line="2281"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2007"/> + <location filename="QScintilla/MiniEditor.py" line="2009"/> <source>{0}[*] - {1}</source> <translation>{0} [*] - {1}</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2007"/> + <location filename="QScintilla/MiniEditor.py" line="2009"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2319"/> + <location filename="QScintilla/MiniEditor.py" line="2321"/> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2320"/> + <location filename="QScintilla/MiniEditor.py" line="2322"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2331"/> + <location filename="QScintilla/MiniEditor.py" line="2333"/> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2334"/> + <location filename="QScintilla/MiniEditor.py" line="2336"/> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1941"/> + <location filename="QScintilla/MiniEditor.py" line="1943"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1988"/> + <location filename="QScintilla/MiniEditor.py" line="1990"/> <source>File saved</source> <translation>Datei gespeichert</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1875"/> + <location filename="QScintilla/MiniEditor.py" line="1877"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1772"/> + <location filename="QScintilla/MiniEditor.py" line="1774"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1772"/> + <location filename="QScintilla/MiniEditor.py" line="1774"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1772"/> + <location filename="QScintilla/MiniEditor.py" line="1774"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1777"/> + <location filename="QScintilla/MiniEditor.py" line="1779"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1778"/> + <location filename="QScintilla/MiniEditor.py" line="1780"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1833"/> + <location filename="QScintilla/MiniEditor.py" line="1835"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1845"/> + <location filename="QScintilla/MiniEditor.py" line="1847"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1855"/> + <location filename="QScintilla/MiniEditor.py" line="1857"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1862"/> + <location filename="QScintilla/MiniEditor.py" line="1864"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="418"/> + <location filename="QScintilla/MiniEditor.py" line="420"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="418"/> + <location filename="QScintilla/MiniEditor.py" line="420"/> <source>&Print</source> <translation>&Drucken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="418"/> + <location filename="QScintilla/MiniEditor.py" line="420"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="423"/> + <location filename="QScintilla/MiniEditor.py" line="425"/> <source>Print the current file</source> <translation>Druckt die aktuelle Datei</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2244"/> + <location filename="QScintilla/MiniEditor.py" line="2246"/> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2260"/> - <source>Printing completed</source> - <translation>Drucken beendet</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="2262"/> + <source>Printing completed</source> + <translation>Drucken beendet</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="2264"/> <source>Error while printing</source> <translation>Fehler beim Drucken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2265"/> + <location filename="QScintilla/MiniEditor.py" line="2267"/> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="424"/> + <location filename="QScintilla/MiniEditor.py" line="426"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Datei drucken</b><p>Dies druckt den Inhalt der aktuellen Datei.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="432"/> + <location filename="QScintilla/MiniEditor.py" line="434"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="436"/> - <source>Print preview of the current file</source> - <translation>Druckvorschau der aktuellen Datei</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="438"/> + <source>Print preview of the current file</source> + <translation>Druckvorschau der aktuellen Datei</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="440"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Druckvorschau</b><p>Zeift eine Druckvorschau der aktuellen Datei.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2356"/> + <location filename="QScintilla/MiniEditor.py" line="2358"/> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2376"/> + <location filename="QScintilla/MiniEditor.py" line="2378"/> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2373"/> + <location filename="QScintilla/MiniEditor.py" line="2375"/> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2390"/> + <location filename="QScintilla/MiniEditor.py" line="2392"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="2390"/> + <location filename="QScintilla/MiniEditor.py" line="2392"/> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="240"/> + <location filename="QScintilla/MiniEditor.py" line="242"/> <source>About eric5 Mini Editor</source> <translation>Über den eric5 Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="240"/> + <location filename="QScintilla/MiniEditor.py" line="242"/> <source>The eric5 Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation>Der eric5 Mini Editor ist eine Editorkomponente, die auf QScintilla basiert. Sie kann für einfachere Editieraufgaben, die nicht einen ausgewachsenen Editor benötigen, verwendet werden.</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="299"/> + <location filename="QScintilla/MiniEditor.py" line="301"/> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="303"/> + <location filename="QScintilla/MiniEditor.py" line="305"/> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1921"/> + <location filename="QScintilla/MiniEditor.py" line="1923"/> <source>eric5 Mini Editor</source> <translation>eric5 Mini Editor</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1941"/> + <location filename="QScintilla/MiniEditor.py" line="1943"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1974"/> + <location filename="QScintilla/MiniEditor.py" line="1976"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1974"/> + <location filename="QScintilla/MiniEditor.py" line="1976"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1921"/> + <location filename="QScintilla/MiniEditor.py" line="1923"/> <source>The document has unsaved changes.</source> <translation>Das Dokument hat ungesicherte Änderungen.</translation> </message> @@ -29391,207 +29391,207 @@ <context> <name>MultiProject</name> <message> - <location filename="MultiProject/MultiProject.py" line="481"/> + <location filename="MultiProject/MultiProject.py" line="483"/> <source>Save File</source> <translation>Datei sichern</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="558"/> + <location filename="MultiProject/MultiProject.py" line="560"/> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="571"/> + <location filename="MultiProject/MultiProject.py" line="573"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="583"/> + <location filename="MultiProject/MultiProject.py" line="585"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="594"/> + <location filename="MultiProject/MultiProject.py" line="596"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="605"/> + <location filename="MultiProject/MultiProject.py" line="607"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="617"/> + <location filename="MultiProject/MultiProject.py" line="619"/> <source>Add &project...</source> <translation>&Projekt hinzufügen...</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="631"/> + <location filename="MultiProject/MultiProject.py" line="633"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="654"/> + <location filename="MultiProject/MultiProject.py" line="656"/> <source>&Multiproject</source> <translation>&Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="655"/> + <location filename="MultiProject/MultiProject.py" line="657"/> <source>Open &Recent Multiprojects</source> <translation>Zu&letzt geöffnete Mehrfachprojekte</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="694"/> + <location filename="MultiProject/MultiProject.py" line="696"/> <source>Multiproject</source> <translation>Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="752"/> + <location filename="MultiProject/MultiProject.py" line="754"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="204"/> + <location filename="MultiProject/MultiProject.py" line="206"/> <source>Read multiproject file</source> <translation>Mehrfachprojektdatei lesen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="204"/> + <location filename="MultiProject/MultiProject.py" line="206"/> <source><p>The multiproject file <b>{0}</b> could not be read.</p></source> <translation><p>Die Mehrfachprojektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="244"/> + <location filename="MultiProject/MultiProject.py" line="246"/> <source>Save multiproject file</source> <translation>Mehrfachprojektdatei speichern</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="244"/> + <location filename="MultiProject/MultiProject.py" line="246"/> <source><p>The multiproject file <b>{0}</b> could not be written.</p></source> <translation><p>Die Mehrfachprojektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="571"/> + <location filename="MultiProject/MultiProject.py" line="573"/> <source>Open multiproject</source> <translation>Mehrfachprojekt öffnen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="466"/> + <location filename="MultiProject/MultiProject.py" line="468"/> <source>Multiproject Files (*.e4m)</source> <translation>Mehrfachprojekt Dateien (*.e4m)</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="605"/> + <location filename="MultiProject/MultiProject.py" line="607"/> <source>Save multiproject as</source> <translation>Mehrfachprojekt speichern unter</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="505"/> + <location filename="MultiProject/MultiProject.py" line="507"/> <source>Close Multiproject</source> <translation>Mehrfachprojekt schließen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="505"/> + <location filename="MultiProject/MultiProject.py" line="507"/> <source>The current multiproject has unsaved changes.</source> <translation>Das aktuelle Mehrfachprojekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="558"/> + <location filename="MultiProject/MultiProject.py" line="560"/> <source>New multiproject</source> <translation>Neues Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="562"/> + <location filename="MultiProject/MultiProject.py" line="564"/> <source>Generate a new multiproject</source> <translation>Erstelle ein neues Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="563"/> + <location filename="MultiProject/MultiProject.py" line="565"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new multiproject.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Mehrfachprojektes.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="575"/> + <location filename="MultiProject/MultiProject.py" line="577"/> <source>Open an existing multiproject</source> <translation>Öffnet ein bestehendes Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="576"/> + <location filename="MultiProject/MultiProject.py" line="578"/> <source><b>Open...</b><p>This opens an existing multiproject.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Mehrfachprojekt.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="583"/> + <location filename="MultiProject/MultiProject.py" line="585"/> <source>Close multiproject</source> <translation>Mehrfachprojekt schließen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="586"/> + <location filename="MultiProject/MultiProject.py" line="588"/> <source>Close the current multiproject</source> <translation>Schließt das aktuelle Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="587"/> + <location filename="MultiProject/MultiProject.py" line="589"/> <source><b>Close</b><p>This closes the current multiproject.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Mehrfachprojekt.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="594"/> + <location filename="MultiProject/MultiProject.py" line="596"/> <source>Save multiproject</source> <translation>Mehrfachprojekt speichern</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="597"/> + <location filename="MultiProject/MultiProject.py" line="599"/> <source>Save the current multiproject</source> <translation>Speichert das aktuelle Mehrfachprojekt</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="598"/> + <location filename="MultiProject/MultiProject.py" line="600"/> <source><b>Save</b><p>This saves the current multiproject.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Mehrfachprojekt.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="608"/> - <source>Save the current multiproject to a new file</source> - <translation>Speichert das aktuelle Mehrfachprojekt in eine neue Datei</translation> - </message> - <message> <location filename="MultiProject/MultiProject.py" line="610"/> + <source>Save the current multiproject to a new file</source> + <translation>Speichert das aktuelle Mehrfachprojekt in eine neue Datei</translation> + </message> + <message> + <location filename="MultiProject/MultiProject.py" line="612"/> <source><b>Save as</b><p>This saves the current multiproject to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Mehrfachprojekt in eine neue Datei.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="617"/> + <location filename="MultiProject/MultiProject.py" line="619"/> <source>Add project to multiproject</source> <translation>Projekt zum Mehrfachprojekt hinzufügen</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="621"/> - <source>Add a project to the current multiproject</source> - <translation>Ein Projekt zum aktuellen Mehrfachprojekt hinzufügen</translation> - </message> - <message> <location filename="MultiProject/MultiProject.py" line="623"/> + <source>Add a project to the current multiproject</source> + <translation>Ein Projekt zum aktuellen Mehrfachprojekt hinzufügen</translation> + </message> + <message> + <location filename="MultiProject/MultiProject.py" line="625"/> <source><b>Add project...</b><p>This opens a dialog for adding a project to the current multiproject.</p></source> <translation><b>Projekt hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem ein Projekt zum aktuellen Mehrfachprojekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="631"/> + <location filename="MultiProject/MultiProject.py" line="633"/> <source>Multiproject properties</source> <translation>Mehrfachprojekteigenschaften</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="634"/> + <location filename="MultiProject/MultiProject.py" line="636"/> <source>Show the multiproject properties</source> <translation>Zeigt die Mehrfachprojekt Eigenschaften an</translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="635"/> + <location filename="MultiProject/MultiProject.py" line="637"/> <source><b>Properties...</b><p>This shows a dialog to edit the multiproject properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Mehrfachprojekt Eigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="MultiProject/MultiProject.py" line="481"/> + <location filename="MultiProject/MultiProject.py" line="483"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> @@ -29599,27 +29599,27 @@ <context> <name>MultiProjectBrowser</name> <message> - <location filename="MultiProject/MultiProjectBrowser.py" line="239"/> + <location filename="MultiProject/MultiProjectBrowser.py" line="241"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="MultiProject/MultiProjectBrowser.py" line="240"/> + <location filename="MultiProject/MultiProjectBrowser.py" line="242"/> <source>Remove</source> <translation>Entfernen</translation> </message> <message> - <location filename="MultiProject/MultiProjectBrowser.py" line="241"/> + <location filename="MultiProject/MultiProjectBrowser.py" line="243"/> <source>Properties</source> <translation>Einstellungen</translation> </message> <message> + <location filename="MultiProject/MultiProjectBrowser.py" line="252"/> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> <location filename="MultiProject/MultiProjectBrowser.py" line="250"/> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="MultiProject/MultiProjectBrowser.py" line="248"/> <source>Add Project...</source> <translation>Projekt hinzufügen...</translation> </message> @@ -29699,7 +29699,7 @@ <translation>Wähle das Arbeitsverzeichnis mittels eines Verzeichnisauswahldialogs aus</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/MultiProjectPage.py" line="65"/> + <location filename="Preferences/ConfigurationPages/MultiProjectPage.py" line="67"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> @@ -29707,12 +29707,12 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="188"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="190"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Gib Nutzernamen und Kennwort für '{0}' ein</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="185"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="187"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Gib Nutzernamen und Kennwort für '{0}' und Realm '{1}' ein</b></translation> </message> @@ -29755,7 +29755,7 @@ <translation>Netzwerkproxy benutzen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="163"/> + <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="165"/> <source>Select download directory</source> <translation>Wähle das Downloadverzeichnis</translation> </message> @@ -29950,47 +29950,47 @@ <translation>HTTP(S) Proxy Kennworte löschen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="39"/> + <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="41"/> <source>No FTP Proxy</source> <translation>Kein FTP Proxy</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="41"/> - <source>No Proxy Authentication required</source> - <translation>Keine Proxy Authentisierung erforderlich</translation> - </message> - <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="43"/> - <source>User@Server</source> - <translation>User@Server</translation> + <source>No Proxy Authentication required</source> + <translation>Keine Proxy Authentisierung erforderlich</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="45"/> - <source>SITE</source> - <translation>SITE</translation> + <source>User@Server</source> + <translation>User@Server</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="47"/> - <source>OPEN</source> - <translation>OPEN</translation> + <source>SITE</source> + <translation>SITE</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="49"/> - <source>User@Proxyuser@Server</source> - <translation>User@Proxyuser@Server</translation> + <source>OPEN</source> + <translation>OPEN</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="51"/> - <source>Proxyuser@Server</source> - <translation>Proxyuser@Server</translation> + <source>User@Proxyuser@Server</source> + <translation>User@Proxyuser@Server</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="53"/> - <source>AUTH and RESP</source> - <translation>AUTH und RESP</translation> + <source>Proxyuser@Server</source> + <translation>Proxyuser@Server</translation> </message> <message> <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="55"/> + <source>AUTH and RESP</source> + <translation>AUTH und RESP</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/NetworkPage.py" line="57"/> <source>Bluecoat Proxy</source> <translation>Bluecoat Proxy</translation> </message> @@ -29998,7 +29998,7 @@ <context> <name>NetworkProtocolUnknownErrorReply</name> <message> - <location filename="Helpviewer/Network/NetworkProtocolUnknownErrorReply.py" line="26"/> + <location filename="Helpviewer/Network/NetworkProtocolUnknownErrorReply.py" line="28"/> <source>Protocol '{0}' not supported.</source> <translation>Protokoll '{0}' nicht unterstützt.</translation> </message> @@ -30051,7 +30051,7 @@ <translation>Gib den Namen der Datei für den Quelltext ein</translation> </message> <message> - <location filename="Project/NewDialogClassDialog.py" line="51"/> + <location filename="Project/NewDialogClassDialog.py" line="53"/> <source>Select source directory</source> <translation>Wähle das Quelltextverzeichnis</translation> </message> @@ -30137,12 +30137,12 @@ <translation>Einschalten, um die Position visuell auszuwählen, ausschalten, um sie einzulesen</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/NotificationsPage.py" line="77"/> + <location filename="Preferences/ConfigurationPages/NotificationsPage.py" line="79"/> <source>Visual Selection</source> <translation>Visuelle Auswahl</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/NotificationsPage.py" line="78"/> + <location filename="Preferences/ConfigurationPages/NotificationsPage.py" line="80"/> <source>Drag the notification window to the desired place and release the button.</source> <translation>Ziehe das Benchrichtigungsfenster an die gewünschte Position und schalte die Funktion aus.</translation> </message> @@ -30270,27 +30270,27 @@ <translation>Bytefolge umkehren</translation> </message> <message> - <location filename="UI/NumbersWidget.py" line="181"/> + <location filename="UI/NumbersWidget.py" line="183"/> <source>Auto</source> <translation>Auto</translation> </message> <message> - <location filename="UI/NumbersWidget.py" line="182"/> - <source>Dec</source> - <translation>Dez</translation> - </message> - <message> - <location filename="UI/NumbersWidget.py" line="183"/> - <source>Hex</source> - <translation>HexHex</translation> - </message> - <message> <location filename="UI/NumbersWidget.py" line="184"/> - <source>Oct</source> - <translation>Okt</translation> + <source>Dec</source> + <translation>Dez</translation> </message> <message> <location filename="UI/NumbersWidget.py" line="185"/> + <source>Hex</source> + <translation>HexHex</translation> + </message> + <message> + <location filename="UI/NumbersWidget.py" line="186"/> + <source>Oct</source> + <translation>Okt</translation> + </message> + <message> + <location filename="UI/NumbersWidget.py" line="187"/> <source>Bin</source> <translation>Bin</translation> </message> @@ -30441,27 +30441,27 @@ <translation>&Standardmaschinen</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="62"/> + <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="64"/> <source>Add search engine</source> <translation>Suchmaschine hinzufügen</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="53"/> + <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="55"/> <source>OpenSearch (*.xml);;All Files (*)</source> <translation>OpenSearch (*.xml);;Alle Dateien (*)</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="62"/> + <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="64"/> <source>{0} is not a valid OpenSearch 1.1 description or is already on your list.</source> <translation>{0} ist keine gültige OpenSearch 1.1 Beschreibung oder ist bereits registriert.</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="73"/> + <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="75"/> <source>Delete selected engines</source> <translation>Ausgewählte Suchmaschinen löschen</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="73"/> + <location filename="Helpviewer/OpenSearch/OpenSearchDialog.py" line="75"/> <source>You must have at least one search engine.</source> <translation>Es muss mindestens eine Suchmaschine existieren.</translation> </message> @@ -30537,27 +30537,27 @@ <context> <name>OpenSearchEngineModel</name> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="131"/> + <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="133"/> <source><strong>Description:</strong> {0}</source> <translation><strong>Beschreibung:</strong> {0}</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="136"/> + <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="138"/> <source><strong>Provides contextual suggestions</strong></source> <translation><strong>Unterstützt Kontext sensitive Vorschläge</strong></translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="33"/> + <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="35"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="34"/> + <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="36"/> <source>Keywords</source> <translation>Schlüsselwörter</translation> </message> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="143"/> + <location filename="Helpviewer/OpenSearch/OpenSearchEngineModel.py" line="145"/> <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source> <translation>Komma separierte Liste von Schlüsselwörtern, die in der Pfadeingabe gefolgt von Suchbegriffen eingegeben werden können, um mit dieser Suchmaschine zu suchen</translation> </message> @@ -30565,7 +30565,7 @@ <context> <name>OpenSearchManager</name> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchManager.py" line="390"/> + <location filename="Helpviewer/OpenSearch/OpenSearchManager.py" line="392"/> <source><p>Do you want to add the following engine to your list of search engines?<br/><br/>Name: {0}<br/>Searches on: {1}</p></source> <translation><p>Do you want to add the following engine to your list of search engines?<br/><br/>Name: {0}<br/>Searches on: {1}</p></translation> </message> @@ -30573,7 +30573,7 @@ <context> <name>OpenSearchReader</name> <message> - <location filename="Helpviewer/OpenSearch/OpenSearchReader.py" line="46"/> + <location filename="Helpviewer/OpenSearch/OpenSearchReader.py" line="48"/> <source>The file is not an OpenSearch 1.1 file.</source> <translation>Die Datei ist keine OpenSearch 1.1 Datei.</translation> </message> @@ -30581,34 +30581,34 @@ <context> <name>OperaImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="36"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="38"/> <source>Opera stores its bookmarks in the <b>bookmarks.adr</b> text file. This file is usually located in</source> <translation>Opera speichert die Lesezeichen in der Datei <b>bookmarks.adr</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="36"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="38"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="82"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="84"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="99"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="101"/> <source>File '{0}' cannot be read. Reason: {1}</source> <translation>Datei '{0}' kann nicht gelesen werden. Ursache: {1}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="124"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="126"/> <source>Opera Import</source> <translation>Opera Import</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="126"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/OperaImporter.py" line="128"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> @@ -30616,32 +30616,32 @@ <context> <name>PackageDiagramBuilder</name> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="48"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="50"/> <source>Package Diagram {0}: {1}</source> <translation>Package-Diagramm {0}: {1}</translation> </message> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="51"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="53"/> <source>Package Diagram: {0}</source> <translation>Package-Diagramm: {0}</translation> </message> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="140"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="142"/> <source>Parsing modules...</source> <translation>Module werden gelesen...</translation> </message> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="186"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="188"/> <source>The directory <b>'{0}'</b> is not a package.</source> <translation>Das Verzeichnis <b>'{0}'</b> ist kein Package.</translation> </message> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="194"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="196"/> <source>The package <b>'{0}'</b> does not contain any modules.</source> <translation>Das Package <b>'{0}'</b> enthält keine Module.</translation> </message> <message> - <location filename="Graphics/PackageDiagramBuilder.py" line="209"/> + <location filename="Graphics/PackageDiagramBuilder.py" line="211"/> <source>The package <b>'{0}'</b> does not contain any classes.</source> <translation>Das Package <b>'{0}'</b> enthält keine Klassen.</translation> </message> @@ -30654,27 +30654,27 @@ <translation>Bildschirmphoto</translation> </message> <message> - <location filename="Helpviewer/PageScreenDialog.py" line="90"/> + <location filename="Helpviewer/PageScreenDialog.py" line="92"/> <source>Save Page Screen</source> <translation>Bildschirmphoto speichern</translation> </message> <message> - <location filename="Helpviewer/PageScreenDialog.py" line="61"/> + <location filename="Helpviewer/PageScreenDialog.py" line="63"/> <source>screen.png</source> <translation>bildschirm.png</translation> </message> <message> - <location filename="Helpviewer/PageScreenDialog.py" line="61"/> + <location filename="Helpviewer/PageScreenDialog.py" line="63"/> <source>Portable Network Graphics File (*.png)</source> <translation>Portable Network Graphics Datei (*.png)</translation> </message> <message> - <location filename="Helpviewer/PageScreenDialog.py" line="71"/> + <location filename="Helpviewer/PageScreenDialog.py" line="73"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Helpviewer/PageScreenDialog.py" line="90"/> + <location filename="Helpviewer/PageScreenDialog.py" line="92"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: @@ -30684,57 +30684,57 @@ <context> <name>PasswordManager</name> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="138"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="140"/> <source>Saving login data</source> <translation>Anmeldedaten speichern</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="205"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="207"/> <source>Loading login data</source> <translation>Anmeldedaten laden</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="182"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="184"/> <source><p>Login data could not be loaded from <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Die Anmeldedaten konnten nicht aus der Datei <b>{0}</b> geladen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="205"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="207"/> <source><p>Login data could not be loaded from <b>{0}</b></p><p>Reason: Wrong input format</p></source> <translation><p>Die Anmeldedaten konnten nicht aus der Datei <b>{0}</b> geladen werden.</p><p>Ursache: Falsches Format</p></translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="371"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="373"/> <source><b>Would you like to save this password?</b><br/>To review passwords you have saved and remove them, use the password management dialog of the Settings menu.</source> <translation><b>Wollen sie das Kennwort speichern?</b><br/>Um die gespeicherten Kennworte anzusehen und zu löschen, verwenden sie den Kennwortmanagement Dialog aus dem Einstellungen Menü.</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="378"/> - <source>Never for this site</source> - <translation>Niemals für diese Site</translation> - </message> - <message> <location filename="Helpviewer/Passwords/PasswordManager.py" line="380"/> + <source>Never for this site</source> + <translation>Niemals für diese Site</translation> + </message> + <message> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="382"/> <source>Not now</source> <translation>Jetzt nicht</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="371"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="373"/> <source>Save password</source> <translation>Kennwort speichern</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="582"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="584"/> <source>Re-encoding saved passwords...</source> <translation>Kodieren gespeicherte Kennworte neu...</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="138"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="140"/> <source><p>Login data could not be saved to <b>{0}</b></p></source> <translation><p>Die Anmeldedaten konnten nicht in die Datei <b>{0}</b> gespeichert werden.</p></translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordManager.py" line="157"/> + <location filename="Helpviewer/Passwords/PasswordManager.py" line="159"/> <source>Error when loading login data on line {0}, column {1}: {2}</source> <translation>Fehler beim Laden der Anmeldedaten in Zeile {0}, Spalte {1}: @@ -30744,17 +30744,17 @@ <context> <name>PasswordModel</name> <message> - <location filename="Helpviewer/Passwords/PasswordModel.py" line="30"/> + <location filename="Helpviewer/Passwords/PasswordModel.py" line="32"/> <source>Website</source> <translation>Website</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordModel.py" line="31"/> + <location filename="Helpviewer/Passwords/PasswordModel.py" line="33"/> <source>Username</source> <translation>Nutzername</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordModel.py" line="32"/> + <location filename="Helpviewer/Passwords/PasswordModel.py" line="34"/> <source>Password</source> <translation>Kennwort</translation> </message> @@ -30762,7 +30762,7 @@ <context> <name>PasswordReader</name> <message> - <location filename="Helpviewer/Passwords/PasswordReader.py" line="52"/> + <location filename="Helpviewer/Passwords/PasswordReader.py" line="54"/> <source>The file is not a Passwords version 1.0 file.</source> <translation>Die Datei ist keine Kennwortdatei der Version 1.0.</translation> </message> @@ -30770,7 +30770,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="83"/> + <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="85"/> <source>Saved Passwords</source> <translation>Gespeicherte Passwörter</translation> </message> @@ -30805,17 +30805,17 @@ <translation>Drücken, um die Anzeige von Passwörtern umzuschalten</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="31"/> + <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="33"/> <source>Show Passwords</source> <translation>Passwörter anzeigen</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="32"/> + <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="34"/> <source>Hide Passwords</source> <translation>Passwörter ausblenden</translation> </message> <message> - <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="83"/> + <location filename="Helpviewer/Passwords/PasswordsDialog.py" line="85"/> <source>Do you really want to show passwords?</source> <translation>Sollen die Passwörter wirklich angezeigt werden?</translation> </message> @@ -30823,22 +30823,22 @@ <context> <name>Pep8CheckerPlugin</name> <message> - <location filename="Plugins/PluginPep8Checker.py" line="168"/> + <location filename="Plugins/PluginPep8Checker.py" line="170"/> <source>Check PEP 8 Compliance</source> <translation>Prüfe Einhaltung von PEP 8</translation> </message> <message> - <location filename="Plugins/PluginPep8Checker.py" line="168"/> + <location filename="Plugins/PluginPep8Checker.py" line="170"/> <source>PEP &8 Compliance...</source> <translation>PEP &8 Einhaltung...</translation> </message> <message> - <location filename="Plugins/PluginPep8Checker.py" line="78"/> + <location filename="Plugins/PluginPep8Checker.py" line="80"/> <source>Check PEP 8 compliance.</source> <translation>Prüfe Einhaltung von PEP 8.</translation> </message> <message> - <location filename="Plugins/PluginPep8Checker.py" line="172"/> + <location filename="Plugins/PluginPep8Checker.py" line="174"/> <source><b>Check PEP 8 Compliance...</b><p>This checks Python files for compliance to the conventions given in PEP 8.</p></source> <translation><b>Prüfe Einhaltung von PEP 8...</b><p>Dies überprüft Python Dateien auf Einhaltung der Konventionen aus PEP 8.</p></translation> </message> @@ -30960,22 +30960,22 @@ <translation>Zeigt den Fortschritt der PEP 8 Prüfung an</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="53"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="55"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="55"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="57"/> <source>Press to show all files containing an issue</source> <translation>Drücken, um alle Dateien mit Problemen anzuzeigen</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="282"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="284"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="359"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="361"/> <source>No issues found.</source> <translation>Keine Probleme gefunden.</translation> </message> @@ -31015,12 +31015,12 @@ <translation>Ausgewählte Nachrichten:</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="48"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="50"/> <source>Statistics...</source> <translation>Statistik...</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="50"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="52"/> <source>Press to show some statistics for the last run</source> <translation>Drücken, um eine Statistik für den letzten Lauf zu zeigen</translation> </message> @@ -31050,7 +31050,7 @@ <translation>Probleme automatisch beheben</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="328"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Dialog.py" line="330"/> <source>Fix: {0}</source> <translation>Lösung: {0}</translation> </message> @@ -31058,57 +31058,57 @@ <context> <name>Pep8Fixer</name> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="102"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="104"/> <source>Fix PEP 8 issues</source> <translation>PEP 8 Probleme beheben</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="102"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="104"/> <source><p>Could not save the file <b>{0}</b>. Skipping it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden. Überspringe sie.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="172"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="174"/> <source>Tab converted to 4 spaces.</source> <translation>Tabulator in 4 Leerzeichen gewandelt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="186"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="188"/> <source>Whitespace stripped from end of line.</source> <translation>Leerzeichen am Zeilenende entfernt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="199"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="201"/> <source>newline added to end of file.</source> <translation>Zeilenvorschub am Dateiende angefügt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="218"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="220"/> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>Überflüssige Leerzeilen am Dateiende gelöscht.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="232"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="234"/> <source>'<>' replaced by '!='.</source> <translation>'<>' durch '!=' ersetzt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="257"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="259"/> <source>Superfluous blank lines after function decorator removed.</source> <translation>Überflüssige Leerzeilen nach Funktionsdekorator gelöscht.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="282"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="284"/> <source>Superfluous blank lines removed.</source> <translation>Überflüssige Leerzeilen gelöscht.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="300"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="302"/> <source>One blank line inserted.</source> <translation>Eine Leerzeile eingefügt.</translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="334"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="336"/> <source>%n blank line(s) inserted.</source> <translation> <numerusform>%n Leerzeile eingefügt.</numerusform> @@ -31116,7 +31116,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="336"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="338"/> <source>%n superfluous lines removed</source> <translation> <numerusform>%n überflüssige Zeile gelöscht</numerusform> @@ -31124,22 +31124,22 @@ </translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="379"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="381"/> <source>Superfluous whitespace removed.</source> <translation>Überflüssige Leerzeichen entfernt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="481"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="483"/> <source>Missing whitespace added.</source> <translation>Fehlende Leerzeichen eingefügt.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="458"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="460"/> <source>Extraneous whitespace removed.</source> <translation>Überzählige Leerzeichen gelöscht.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="505"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Fixer.py" line="507"/> <source>Whitespace after inline comment sign corrected.</source> <translation>Leerzeichen nach Inline Kommentarzeichen korrigiert.</translation> </message> @@ -31147,12 +31147,12 @@ <context> <name>Pep8Py2Checker</name> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Checker.py" line="141"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Checker.py" line="146"/> <source>Python2 interpreter not configured.</source> <translation>Kein Python2 Interpreter konfiguriert.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8Checker.py" line="202"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8Checker.py" line="207"/> <source>Python2 interpreter did not finish within 15s.</source> <translation>Python2 Interpreter wurde nicht innerhalb von 15s beendet.</translation> </message> @@ -31180,7 +31180,7 @@ <translation>Nachricht</translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="56"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="58"/> <source>%n issue(s) found</source> <translation> <numerusform>%n Problem gefunden</numerusform> @@ -31188,7 +31188,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="60"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="62"/> <source>%n file(s) checked</source> <translation> <numerusform>%n Datei überprüft</numerusform> @@ -31196,7 +31196,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="62"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="64"/> <source>%n file(s) with issues found</source> <translation> <numerusform>%n Datei mit Problemen gefunden</numerusform> @@ -31204,7 +31204,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="58"/> + <location filename="Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py" line="60"/> <source>%n issue(s) fixed</source> <translation> <numerusform>%n Problem behoben</numerusform> @@ -31318,92 +31318,92 @@ <context> <name>PersonalInformationManager</name> <message> - <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="77"/> + <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="79"/> <source>Full Name</source> <translation>Name</translation> </message> <message> - <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="78"/> - <source>Last Name</source> - <translation>Nachname</translation> - </message> - <message> - <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="79"/> - <source>First Name</source> - <translation>Vorname</translation> - </message> - <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="80"/> - <source>E-mail</source> - <translation>Email</translation> + <source>Last Name</source> + <translation>Nachname</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="81"/> - <source>Mobile</source> - <translation>Mobiltelefon</translation> + <source>First Name</source> + <translation>Vorname</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="82"/> - <source>Phone</source> - <translation>Telefon</translation> + <source>E-mail</source> + <translation>Email</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="83"/> - <source>Address</source> - <translation>Adresse</translation> + <source>Mobile</source> + <translation>Mobiltelefon</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="84"/> - <source>City</source> - <translation>Ort</translation> + <source>Phone</source> + <translation>Telefon</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="85"/> - <source>ZIP Code</source> - <translation>Postleitzahl</translation> + <source>Address</source> + <translation>Adresse</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="86"/> - <source>State/Region</source> - <translation>Land/Region</translation> + <source>City</source> + <translation>Ort</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="87"/> - <source>Country</source> - <translation>Staat</translation> + <source>ZIP Code</source> + <translation>Postleitzahl</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="88"/> - <source>Home Page</source> - <translation>Home Page</translation> + <source>State/Region</source> + <translation>Land/Region</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="89"/> - <source>Custom 1</source> - <translation>Sonstiges 1</translation> + <source>Country</source> + <translation>Staat</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="90"/> - <source>Custom 2</source> - <translation>Sonstiges 2</translation> + <source>Home Page</source> + <translation>Home Page</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="91"/> - <source>Custom 3</source> - <translation>Sonstiges 3</translation> + <source>Custom 1</source> + <translation>Sonstiges 1</translation> </message> <message> <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="92"/> + <source>Custom 2</source> + <translation>Sonstiges 2</translation> + </message> + <message> + <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="93"/> + <source>Custom 3</source> + <translation>Sonstiges 3</translation> + </message> + <message> + <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="94"/> <source>Custom 4</source> <translation>Sonstiges 4</translation> </message> <message> - <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="136"/> + <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="138"/> <source>Insert Personal Information</source> <translation>Persönliche Informationen einfügen</translation> </message> <message> - <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="145"/> + <location filename="Helpviewer/PersonalInformationManager/PersonalInformationManager.py" line="147"/> <source>Edit Personal Information</source> <translation>Persönliche Informationen bearbeiten</translation> </message> @@ -31411,42 +31411,42 @@ <context> <name>PixmapDiagram</name> <message> - <location filename="Graphics/PixmapDiagram.py" line="149"/> + <location filename="Graphics/PixmapDiagram.py" line="151"/> <source>Pixmap-Viewer</source> <translation>Bildbetrachter</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="94"/> + <location filename="Graphics/PixmapDiagram.py" line="96"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="149"/> + <location filename="Graphics/PixmapDiagram.py" line="151"/> <source><p>The file <b>{0}</b> cannot be displayed. The format is not supported.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht angezeigt werden. Das Grafikformat wird nicht unterstützt.</p></translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="89"/> + <location filename="Graphics/PixmapDiagram.py" line="91"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="128"/> + <location filename="Graphics/PixmapDiagram.py" line="130"/> <source>Window</source> <translation>Fenster</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="132"/> + <location filename="Graphics/PixmapDiagram.py" line="134"/> <source>Graphics</source> <translation>Grafiken</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="371"/> + <location filename="Graphics/PixmapDiagram.py" line="373"/> <source>Diagram: {0}</source> <translation>Diagramm: {0}</translation> </message> <message> - <location filename="Graphics/PixmapDiagram.py" line="99"/> + <location filename="Graphics/PixmapDiagram.py" line="101"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> @@ -31507,37 +31507,37 @@ <context> <name>PluginError</name> <message> - <location filename="PluginManager/PluginExceptions.py" line="22"/> + <location filename="PluginManager/PluginExceptions.py" line="24"/> <source>Unspecific plugin error.</source> <translation>Unspezifischer Plugin-Fehler.</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="56"/> + <location filename="PluginManager/PluginExceptions.py" line="58"/> <source>Plugin paths not found or not creatable.</source> <translation>Plugin Pfade nicht gefunden oder nicht erzeugbar.</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="69"/> + <location filename="PluginManager/PluginExceptions.py" line="71"/> <source>No plugin modules found.</source> <translation>Keine Plugin Module gefunden.</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="83"/> + <location filename="PluginManager/PluginExceptions.py" line="85"/> <source>Error loading plugin module: {0}</source> <translation>Fehler beim Laden des Plugin Moduls {0}</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="98"/> + <location filename="PluginManager/PluginExceptions.py" line="100"/> <source>Error activating plugin module: {0}</source> <translation>Fehler beim Aktivieren des Plugin Moduls {0}</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="114"/> + <location filename="PluginManager/PluginExceptions.py" line="116"/> <source>The plugin module {0} is missing {1}.</source> <translation>Dem Plugin Modul {0} fehlt {1}.</translation> </message> <message> - <location filename="PluginManager/PluginExceptions.py" line="132"/> + <location filename="PluginManager/PluginExceptions.py" line="134"/> <source>The plugin class {0} of module {1} is missing {2}.</source> <translation>Der Plugin Klasse {0} des Moduls {1} fehlt {2}.</translation> </message> @@ -31580,27 +31580,27 @@ <translation>Beschreibung</translation> </message> <message> - <location filename="PluginManager/PluginInfoDialog.py" line="95"/> + <location filename="PluginManager/PluginInfoDialog.py" line="97"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="PluginManager/PluginInfoDialog.py" line="72"/> + <location filename="PluginManager/PluginInfoDialog.py" line="74"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="PluginManager/PluginInfoDialog.py" line="43"/> - <source>Show details</source> - <translation>Details anzeigen</translation> - </message> - <message> <location filename="PluginManager/PluginInfoDialog.py" line="45"/> - <source>Activate</source> - <translation>Aktivieren</translation> + <source>Show details</source> + <translation>Details anzeigen</translation> </message> <message> <location filename="PluginManager/PluginInfoDialog.py" line="47"/> + <source>Activate</source> + <translation>Aktivieren</translation> + </message> + <message> + <location filename="PluginManager/PluginInfoDialog.py" line="49"/> <source>Deactivate</source> <translation>Deaktivieren</translation> </message> @@ -31671,27 +31671,27 @@ <context> <name>PluginInstallWidget</name> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="58"/> + <location filename="PluginManager/PluginInstallDialog.py" line="63"/> <source>< Back</source> <translation>< Zurück</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="60"/> + <location filename="PluginManager/PluginInstallDialog.py" line="65"/> <source>Next ></source> <translation>Weiter ></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="69"/> - <source>User plugins directory</source> - <translation>Nutzer Plugin Verzeichnis</translation> - </message> - <message> <location filename="PluginManager/PluginInstallDialog.py" line="74"/> + <source>User plugins directory</source> + <translation>Nutzer Plugin Verzeichnis</translation> + </message> + <message> + <location filename="PluginManager/PluginInstallDialog.py" line="79"/> <source>Global plugins directory</source> <translation>Globales Plugin Verzeichnis</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="136"/> + <location filename="PluginManager/PluginInstallDialog.py" line="141"/> <source>Plugin ZIP-Archives: {0} @@ -31704,82 +31704,82 @@ {1} ({2})</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="150"/> + <location filename="PluginManager/PluginInstallDialog.py" line="155"/> <source>Select plugin ZIP-archives</source> <translation>Wähle Plugin ZIP-Archive</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="150"/> + <location filename="PluginManager/PluginInstallDialog.py" line="155"/> <source>Plugin archive (*.zip)</source> <translation>Plugin Archiv (*.zip)</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="212"/> + <location filename="PluginManager/PluginInstallDialog.py" line="217"/> <source>Installing {0} ...</source> <translation>Installiere {0} ...</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="216"/> + <location filename="PluginManager/PluginInstallDialog.py" line="221"/> <source> ok</source> <translation> ok</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="223"/> + <location filename="PluginManager/PluginInstallDialog.py" line="228"/> <source>The plugins were installed successfully.</source> <translation>Die Plugins wurden erfolgreich installiert.</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="226"/> + <location filename="PluginManager/PluginInstallDialog.py" line="231"/> <source>Some plugins could not be installed.</source> <translation>Einige Plugins konnten nicht installiert werden.</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="255"/> + <location filename="PluginManager/PluginInstallDialog.py" line="260"/> <source><p>The archive file <b>{0}</b> does not exist. Aborting...</p></source> <translation><p>Die Archivdatei <b>{0}</b> existiert nicht. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="287"/> + <location filename="PluginManager/PluginInstallDialog.py" line="292"/> <source><p>The file <b>{0}</b> is not a valid plugin ZIP-archive. Aborting...</p></source> <translation><p>Die Datei <b>{0}</b> ist kein gültiges Plugin ZIP-Archiv. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="269"/> + <location filename="PluginManager/PluginInstallDialog.py" line="274"/> <source><p>The destination directory <b>{0}</b> is not writeable. Aborting...</p></source> <translation><p>In das Zielverzeichnis <b>{0}</b> kann nicht geschrieben werden. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="325"/> + <location filename="PluginManager/PluginInstallDialog.py" line="330"/> <source><p>The plugin module <b>{0}</b> does not contain a 'packageName' attribute. Aborting...</p></source> <translation><p>Das Plugin Modul <b>{0}</b> besitzt kein Attribut 'packageName'. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="342"/> + <location filename="PluginManager/PluginInstallDialog.py" line="347"/> <source><p>The plugin package <b>{0}</b> exists. Aborting...</p></source> <translation><p>Das Plugin Package <b>{0}</b> existiert bereits. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="351"/> + <location filename="PluginManager/PluginInstallDialog.py" line="356"/> <source><p>The plugin module <b>{0}</b> exists. Aborting...</p></source> <translation><p>Das Plugin Modul <b>{0}</b> existiert bereits. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="427"/> + <location filename="PluginManager/PluginInstallDialog.py" line="432"/> <source>Error installing plugin. Reason: {0}</source> <translation>Fehler bei der Plugin-Installation. Ursache: {0}</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="433"/> + <location filename="PluginManager/PluginInstallDialog.py" line="438"/> <source>Unspecific exception installing plugin.</source> <translation>Unbekannte Ausnahme bei der Plugin-Installation.</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="62"/> + <location filename="PluginManager/PluginInstallDialog.py" line="67"/> <source>Install</source> <translation>Installieren</translation> </message> <message> - <location filename="PluginManager/PluginInstallDialog.py" line="332"/> + <location filename="PluginManager/PluginInstallDialog.py" line="337"/> <source><p>The plugin module <b>{0}</b> does not conform with the PyQt v2 API. Aborting...</p></source> <translation><p>Das Plugin Modul <b>{0}</b> verwendet nicht die PyQt API Version 2. Abbruch...</p></translation> </message> @@ -31787,42 +31787,42 @@ <context> <name>PluginManager</name> <message> - <location filename="PluginManager/PluginManager.py" line="480"/> + <location filename="PluginManager/PluginManager.py" line="482"/> <source>Incompatible plugin activation method.</source> <translation>Nicht kompatible Plugin Aktivierungsmethode.</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="306"/> + <location filename="PluginManager/PluginManager.py" line="308"/> <source>Module is missing the 'autoactivate' attribute.</source> <translation>Dem Module fehlt das Attribut 'autoactivate'.</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="315"/> + <location filename="PluginManager/PluginManager.py" line="317"/> <source>Module is missing the 'pluginType' and/or 'pluginTypename' attributes.</source> <translation>Dem Module fehlt das Attribut 'pluginType' und/oder 'pluginTypename'.</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="331"/> + <location filename="PluginManager/PluginManager.py" line="333"/> <source>Module failed to load. Error: {0}</source> <translation>Modul konnte nicht geladen werden. Fehler: {0}</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="956"/> + <location filename="PluginManager/PluginManager.py" line="958"/> <source>Plugin Manager Error</source> <translation>Plugin Manager Fehler</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="956"/> + <location filename="PluginManager/PluginManager.py" line="958"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Das Downloadverzeichnis für Plugins <b>{0}</b> konnte nicht erzeugt werden. Bitte über den Konfigurationsdialog einstellen.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="158"/> + <location filename="PluginManager/PluginManager.py" line="160"/> <source>Could not create a package for {0}.</source> <translation>Konnte kein Package für {0} erzeugen.</translation> </message> <message> - <location filename="PluginManager/PluginManager.py" line="192"/> + <location filename="PluginManager/PluginManager.py" line="194"/> <source>The internal plugin directory <b>{0}</b> does not exits.</source> <translation>Das interne Plugin-Verzeichnis <b>{0}</b> existiert nicht.</translation> </message> @@ -31870,7 +31870,7 @@ <translation>...</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/PluginManagerPage.py" line="58"/> + <location filename="Preferences/ConfigurationPages/PluginManagerPage.py" line="60"/> <source>Select plugins download directory</source> <translation>Wähle das Plugin Downloadverzeichnis</translation> </message> @@ -31956,89 +31956,89 @@ <context> <name>PluginRepositoryWidget</name> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="64"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="66"/> <source>Update</source> <translation>Aktualisieren</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="66"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="68"/> <source>Download</source> <translation>Download</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="73"/> - <source>Cancel</source> - <translation></translation> - </message> - <message> <location filename="PluginManager/PluginRepositoryDialog.py" line="75"/> + <source>Cancel</source> + <translation></translation> + </message> + <message> + <location filename="PluginManager/PluginRepositoryDialog.py" line="77"/> <source>Close && Install</source> <translation>Schließen && Installieren</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="271"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="273"/> <source>Download Plugin Files</source> <translation>Plugindateien herunterladen</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="271"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="273"/> <source>The requested plugins were downloaded.</source> <translation>Die angeforderten Plugins wurden heruntergeladen.</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="318"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="320"/> <source>Read plugins repository file</source> <translation>Plugins Repositorydatei lesen</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="318"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="320"/> <source><p>The plugins repository file <b>{0}</b> could not be read. Select Update</p></source> <translation><p>Die Plugins Repositorydatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="325"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="327"/> <source>No plugin repository file available. Select Update.</source> <translation>Es ist keine Plugins Repositorydatei verfügbar. Bitte Aktualisieren.</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="376"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="378"/> <source>Error downloading file</source> <translation>Fehler beim Herunterladen der Datei</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="376"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="378"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Die angefragte Datei konnte nicht von {0} gedownloaded werden.</p><p>Fehler: {1}</p></translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="445"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="447"/> <source>Stable</source> <translation>Stabil</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="451"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="453"/> <source>Unstable</source> <translation>Instabil</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="457"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="459"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="69"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="71"/> <source>Download && Install</source> <translation>Download && Installieren</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="312"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="314"/> <source>Plugins Repository URL Changed</source> <translation>Plugin-Repository URL Geändert</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="312"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="314"/> <source>The URL of the Plugins Repository has changed. Select the "Update" button to get the new repository file.</source> <translation>Die URL des Plugin-Repository hat sich geändert. Wählen sie den "Aktualisieren" Knopf, um die neue Repositorydatei zu erhalten.</translation> </message> @@ -32046,17 +32046,17 @@ <context> <name>PluginRepositoryWindow</name> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="604"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="606"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="604"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="606"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Prozess konnte nicht gestartet werden.<br>StellenSie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="PluginManager/PluginRepositoryDialog.py" line="604"/> + <location filename="PluginManager/PluginRepositoryDialog.py" line="606"/> <source>OK</source> <translation>OK</translation> </message> @@ -32092,37 +32092,37 @@ <context> <name>PluginUninstallWidget</name> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="53"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="55"/> <source>User plugins directory</source> <translation>Nutzer Plugin Verzeichnis</translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="58"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="60"/> <source>Global plugins directory</source> <translation>Globales Plugin Verzeichnis</translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="165"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="167"/> <source>Plugin Uninstallation</source> <translation>Plugin Deinstallation</translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="100"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="102"/> <source><p>The plugin <b>{0}</b> could not be unloaded. Aborting...</p></source> <translation><p>Das Plugin <b>{0}</b> konnte nicht entladen werden. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="110"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="112"/> <source><p>The plugin <b>{0}</b> has no 'packageName' attribute. Aborting...</p></source> <translation><p>Das Plugin <b>{0}</b> hat kein Attribut 'packageName'. Abbruch...</p></translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="148"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="150"/> <source><p>The plugin package <b>{0}</b> could not be removed. Aborting...</p><p>Reason: {1}</p></source> <translation><p>Das Plugin Packet <b>{0}</b> konnte nicht gelöscht werden. Abbruch...</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="PluginManager/PluginUninstallDialog.py" line="165"/> + <location filename="PluginManager/PluginUninstallDialog.py" line="167"/> <source><p>The plugin <b>{0}</b> was uninstalled successfully from {1}.</p></source> <translation><p>Das Plugin <b>{0}</b> wurde erfolgreich von {1} deinstalliert.</p></translation> </message> @@ -32130,27 +32130,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1138"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1165"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1165"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1259"/> <source>Select Python2 Interpreter</source> <translation>Wähle den Python2 Interpreter</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1259"/> <source>Select the Python2 interpreter to be used:</source> <translation>Wähle den zu verwendenden Python2 Interpreter aus:</translation> </message> @@ -32158,12 +32158,12 @@ <context> <name>PreferencesLexerError</name> <message> - <location filename="Preferences/PreferencesLexer.py" line="26"/> + <location filename="Preferences/PreferencesLexer.py" line="28"/> <source>Unspecific PreferencesLexer error.</source> <translation>Unspezifischer PreferencesLexer-Fehler.</translation> </message> <message> - <location filename="Preferences/PreferencesLexer.py" line="56"/> + <location filename="Preferences/PreferencesLexer.py" line="58"/> <source>Unsupported Lexer Language: {0}</source> <translation>Nicht unterstützte Lexer Sprache: {0}</translation> </message> @@ -32171,17 +32171,17 @@ <context> <name>PreviewProcessingThread</name> <message> - <location filename="UI/Previewer.py" line="400"/> + <location filename="UI/Previewer.py" line="402"/> <source><p>No preview available for this type of file.</p></source> <translation><p>Für diesen Dateityp ist keine Vorschau verfügbar.</p></translation> </message> <message> - <location filename="UI/Previewer.py" line="475"/> + <location filename="UI/Previewer.py" line="477"/> <source><p>Markdown preview requires the <b>python-markdown</b> package.<br/>Install it with your package manager or see <a href="http://pythonhosted.org/Markdown/install.html">installation instructions.</a></p></source> <translation><p>Die Markdown Voschau erfordert das <b>python-markdown</b> Paket.<br/>Installiere es mit dem Paketmanager oder siehe <a href="http://pythonhosted.org/Markdown/install.html">die Installationsanleitung.</a></p></translation> </message> <message> - <location filename="UI/Previewer.py" line="458"/> + <location filename="UI/Previewer.py" line="460"/> <source><p>ReStructuredText preview requires the <b>python-docutils</b> package.<br/>Install it with your package manager or see <a href="http://pypi.python.org/pypi/docutils">this page.</a></p></source> <translation><p>Die ReStructuredText Voschau erfordert das <b>python-docutils</b> Paket.<br/>Installiere es mit dem Paketmanager oder siehe <a href="http://pypi.python.org/pypi/docutils">diese Seite.</a></p></translation> </message> @@ -32214,17 +32214,17 @@ <translation>Server Side Includes aktivieren</translation> </message> <message> - <location filename="UI/Previewer.py" line="266"/> + <location filename="UI/Previewer.py" line="268"/> <source>Preview - {0}</source> <translation>Vorschau - {0}</translation> </message> <message> - <location filename="UI/Previewer.py" line="268"/> + <location filename="UI/Previewer.py" line="270"/> <source>Preview</source> <translation>Vorschau</translation> </message> <message> - <location filename="UI/Previewer.py" line="227"/> + <location filename="UI/Previewer.py" line="229"/> <source><p>No preview available for this type of file.</p></source> <translation><p>Für diesen Dateityp ist keine Vorschau verfügbar.</p></translation> </message> @@ -32232,7 +32232,7 @@ <context> <name>Printer</name> <message> - <location filename="QScintilla/Printer.py" line="61"/> + <location filename="QScintilla/Printer.py" line="63"/> <source>{0} - Printed on {1}, {2} - Page {3}</source> <translation>{0} - Gedruckt am {1} um {2} - Seite {3}</translation> </message> @@ -32338,42 +32338,42 @@ <translation>Version</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="44"/> + <location filename="Preferences/ProgramsDialog.py" line="50"/> <source>Search</source> <translation>Suchen</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="45"/> + <location filename="Preferences/ProgramsDialog.py" line="51"/> <source>Press to search for programs</source> <translation>Drücke, um nach Programmen zu suchen</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="139"/> + <location filename="Preferences/ProgramsDialog.py" line="145"/> <source>Forms Compiler (Ruby, Qt4)</source> <translation>Formularcompiler (Ruby, Qt4)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="143"/> + <location filename="Preferences/ProgramsDialog.py" line="149"/> <source>Resource Compiler (Ruby, Qt4)</source> <translation>Resourcencompiler (Ruby, Qt4)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="152"/> + <location filename="Preferences/ProgramsDialog.py" line="158"/> <source>CORBA IDL Compiler</source> <translation>CORBA IDL Compiler</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="241"/> + <location filename="Preferences/ProgramsDialog.py" line="247"/> <source>(not configured)</source> <translation>(nicht konfiguriert)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="276"/> + <location filename="Preferences/ProgramsDialog.py" line="282"/> <source>(not executable)</source> <translation>(nicht ausführbar)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="303"/> + <location filename="Preferences/ProgramsDialog.py" line="309"/> <source>(not found)</source> <translation>(nicht gefunden)</translation> </message> @@ -32383,67 +32383,67 @@ <translation>Externe Programme</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="274"/> + <location filename="Preferences/ProgramsDialog.py" line="280"/> <source>(unknown)</source> <translation>(unbekannt)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="169"/> + <location filename="Preferences/ProgramsDialog.py" line="175"/> <source>Spell Checker - PyEnchant</source> <translation>Rechtschreibprüfung - PyEnchant</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="129"/> + <location filename="Preferences/ProgramsDialog.py" line="135"/> <source>Forms Compiler (Python, PySide)</source> <translation>Formularcompiler (Python, PySide)</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="133"/> + <location filename="Preferences/ProgramsDialog.py" line="139"/> <source>Resource Compiler (Python, PySide)</source> <translation>Resourcencompiler (Python, PySide)</translation> </message> <message> + <location filename="Preferences/ProgramsDialog.py" line="131"/> + <source>Translation Extractor (Python, PySide)</source> + <translation>Übersetzungsextraktor (Python, PySide)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="191"/> + <source>Source Highlighter - Pygments</source> + <translation>Quelltextfärber - Pygments</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="88"/> + <source>Translation Converter (Qt)</source> + <translation>Compiler für Übersetzungsdatei (Qt)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="97"/> + <source>Qt Designer</source> + <translation>Qt Designer</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="105"/> + <source>Qt Linguist</source> + <translation>Qt Linguist</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="113"/> + <source>Qt Assistant</source> + <translation>Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="117"/> + <source>Translation Extractor (Python, Qt)</source> + <translation>Übersetzungsextraktor (Python, Qt)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="121"/> + <source>Forms Compiler (Python, Qt)</source> + <translation>Formularcompiler (Python, Qt)</translation> + </message> + <message> <location filename="Preferences/ProgramsDialog.py" line="125"/> - <source>Translation Extractor (Python, PySide)</source> - <translation>Übersetzungsextraktor (Python, PySide)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="185"/> - <source>Source Highlighter - Pygments</source> - <translation>Quelltextfärber - Pygments</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="82"/> - <source>Translation Converter (Qt)</source> - <translation>Compiler für Übersetzungsdatei (Qt)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="91"/> - <source>Qt Designer</source> - <translation>Qt Designer</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="99"/> - <source>Qt Linguist</source> - <translation>Qt Linguist</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="107"/> - <source>Qt Assistant</source> - <translation>Qt Assistant</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="111"/> - <source>Translation Extractor (Python, Qt)</source> - <translation>Übersetzungsextraktor (Python, Qt)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="115"/> - <source>Forms Compiler (Python, Qt)</source> - <translation>Formularcompiler (Python, Qt)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt)</source> <translation>Resourcencompiler (Python, Qt)</translation> </message> @@ -32451,852 +32451,852 @@ <context> <name>Project</name> <message> - <location filename="Project/Project.py" line="653"/> + <location filename="Project/Project.py" line="659"/> <source>Read project file</source> <translation>Projektdatei lesen</translation> </message> <message> - <location filename="Project/Project.py" line="1257"/> + <location filename="Project/Project.py" line="1263"/> <source>Delete translation</source> <translation>Übersetzung löschen</translation> </message> <message> - <location filename="Project/Project.py" line="1397"/> + <location filename="Project/Project.py" line="1403"/> <source>Add file</source> <translation>Datei hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="1840"/> + <location filename="Project/Project.py" line="1846"/> <source>Delete file</source> <translation>Datei löschen</translation> </message> <message> - <location filename="Project/Project.py" line="1943"/> + <location filename="Project/Project.py" line="1949"/> <source>Create project directory</source> <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="Project/Project.py" line="3092"/> + <location filename="Project/Project.py" line="3098"/> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="Project/Project.py" line="3126"/> + <location filename="Project/Project.py" line="3132"/> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> <message> - <location filename="Project/Project.py" line="2543"/> + <location filename="Project/Project.py" line="2549"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="Project/Project.py" line="2580"/> + <location filename="Project/Project.py" line="2586"/> <source>Close Project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="Project/Project.py" line="2580"/> + <location filename="Project/Project.py" line="2586"/> <source>The current project has unsaved changes.</source> <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="Project/Project.py" line="3269"/> + <location filename="Project/Project.py" line="3275"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3079"/> + <location filename="Project/Project.py" line="3085"/> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3079"/> + <location filename="Project/Project.py" line="3085"/> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="Project/Project.py" line="3083"/> + <location filename="Project/Project.py" line="3089"/> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3084"/> + <location filename="Project/Project.py" line="3090"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3092"/> + <location filename="Project/Project.py" line="3098"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="Project/Project.py" line="3096"/> + <location filename="Project/Project.py" line="3102"/> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3097"/> + <location filename="Project/Project.py" line="3103"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Projekt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3104"/> + <location filename="Project/Project.py" line="3110"/> <source>Close project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="Project/Project.py" line="3104"/> + <location filename="Project/Project.py" line="3110"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="Project/Project.py" line="3107"/> + <location filename="Project/Project.py" line="3113"/> <source>Close the current project</source> <translation>Schließt das aktuelle Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3108"/> + <location filename="Project/Project.py" line="3114"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Projekt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3115"/> + <location filename="Project/Project.py" line="3121"/> <source>Save project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3118"/> + <location filename="Project/Project.py" line="3124"/> <source>Save the current project</source> <translation>Speichert das aktuelle Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3119"/> + <location filename="Project/Project.py" line="3125"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Projekt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3129"/> + <location filename="Project/Project.py" line="3135"/> <source>Save the current project to a new file</source> <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> </message> <message> - <location filename="Project/Project.py" line="3130"/> + <location filename="Project/Project.py" line="3136"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Projekt in eine neue Datei.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3167"/> + <location filename="Project/Project.py" line="3173"/> <source>Add translation to project</source> <translation>Übersetzung zum Projekt hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="3167"/> - <source>Add &translation...</source> - <translation>&Übersetzung hinzufügen...</translation> - </message> - <message> - <location filename="Project/Project.py" line="3171"/> - <source>Add a translation to the current project</source> - <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> - </message> - <message> <location filename="Project/Project.py" line="3173"/> + <source>Add &translation...</source> + <translation>&Übersetzung hinzufügen...</translation> + </message> + <message> + <location filename="Project/Project.py" line="3177"/> + <source>Add a translation to the current project</source> + <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> + </message> + <message> + <location filename="Project/Project.py" line="3179"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Übersetzung hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3193"/> + <location filename="Project/Project.py" line="3199"/> <source>Project properties</source> <translation>Projekt Eigenschaften</translation> </message> <message> - <location filename="Project/Project.py" line="3193"/> + <location filename="Project/Project.py" line="3199"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="Project/Project.py" line="3196"/> + <location filename="Project/Project.py" line="3202"/> <source>Show the project properties</source> <translation>Zeigt die Projekt Eigenschaften an</translation> </message> <message> - <location filename="Project/Project.py" line="3197"/> + <location filename="Project/Project.py" line="3203"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Projekt Eigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3481"/> + <location filename="Project/Project.py" line="3487"/> <source>Open &Recent Projects</source> <translation>Zu&letzt geöffnete Projekte</translation> </message> <message> - <location filename="Project/Project.py" line="1502"/> + <location filename="Project/Project.py" line="1508"/> <source>The target directory must not be empty.</source> <translation>Das Zielverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="Project/Project.py" line="3181"/> + <location filename="Project/Project.py" line="3187"/> <source>Search new files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="Project/Project.py" line="3181"/> + <location filename="Project/Project.py" line="3187"/> <source>Searc&h new files...</source> <translation>Neue &Dateien suchen...</translation> </message> <message> - <location filename="Project/Project.py" line="3184"/> + <location filename="Project/Project.py" line="3190"/> <source>Search new files in the project directory.</source> <translation>Sucht neue Dateien im Projektverzeichnis.</translation> </message> <message> - <location filename="Project/Project.py" line="1512"/> + <location filename="Project/Project.py" line="1518"/> <source>Add directory</source> <translation>Verzeichnis hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="1512"/> + <location filename="Project/Project.py" line="1518"/> <source>The source directory must not be empty.</source> <translation>Das Quellverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="Project/Project.py" line="1147"/> + <location filename="Project/Project.py" line="1153"/> <source>Add Language</source> <translation>Sprache hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="3126"/> + <location filename="Project/Project.py" line="3132"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="Project/Project.py" line="3911"/> + <location filename="Project/Project.py" line="3917"/> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="Project/Project.py" line="3771"/> + <location filename="Project/Project.py" line="3777"/> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="Project/Project.py" line="3771"/> + <location filename="Project/Project.py" line="3777"/> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> <message> - <location filename="Project/Project.py" line="851"/> + <location filename="Project/Project.py" line="857"/> <source>Read project session</source> <translation>Projekt Session lesen</translation> </message> <message> - <location filename="Project/Project.py" line="1041"/> + <location filename="Project/Project.py" line="1047"/> <source>Please save the project first.</source> <translation>Bitte speichern sie zuerst das Projekt.</translation> </message> <message> - <location filename="Project/Project.py" line="882"/> + <location filename="Project/Project.py" line="888"/> <source>Save project session</source> <translation>Projekt Session speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3305"/> + <location filename="Project/Project.py" line="3311"/> <source>Load session</source> <translation>Session laden</translation> </message> <message> - <location filename="Project/Project.py" line="3308"/> + <location filename="Project/Project.py" line="3314"/> <source>Load the projects session file.</source> <translation>Laden der Projekt Session.</translation> </message> <message> - <location filename="Project/Project.py" line="3322"/> + <location filename="Project/Project.py" line="3328"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3325"/> + <location filename="Project/Project.py" line="3331"/> <source>Save the projects session file.</source> <translation>Speichern der Projekt Session.</translation> </message> <message> - <location filename="Project/Project.py" line="3309"/> + <location filename="Project/Project.py" line="3315"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session laden</b><p>Dies lädt eine Projekt Session Datei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="Project/Project.py" line="3326"/> + <location filename="Project/Project.py" line="3332"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session speichern</b><p>Dies speichert eine Projekt Session Datei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="Project/Project.py" line="3491"/> + <location filename="Project/Project.py" line="3497"/> <source>Source &Documentation</source> <translation>&Quelltextdokumentation</translation> </message> <message> - <location filename="Project/Project.py" line="3486"/> + <location filename="Project/Project.py" line="3492"/> <source>Chec&k</source> <translation>&Prüfen</translation> </message> <message> - <location filename="Project/Project.py" line="3352"/> + <location filename="Project/Project.py" line="3358"/> <source>Code Metrics</source> <translation>Quelltext Metriken</translation> </message> <message> - <location filename="Project/Project.py" line="3352"/> + <location filename="Project/Project.py" line="3358"/> <source>&Code Metrics...</source> <translation>&Quelltext Metriken...</translation> </message> <message> - <location filename="Project/Project.py" line="3355"/> + <location filename="Project/Project.py" line="3361"/> <source>Show some code metrics for the project.</source> <translation>Zeige einige Quelltext Metriken für das Projekt.</translation> </message> <message> - <location filename="Project/Project.py" line="3357"/> + <location filename="Project/Project.py" line="3363"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Quelltext Metriken...</b><p>Dies zeigt einige Quelltext Metriken für alle Python Dateien des Projektes.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3364"/> + <location filename="Project/Project.py" line="3370"/> <source>Python Code Coverage</source> <translation>Python Quelltext Abdeckung</translation> </message> <message> - <location filename="Project/Project.py" line="3364"/> + <location filename="Project/Project.py" line="3370"/> <source>Code Co&verage...</source> <translation>&Quelltext Abdeckung...</translation> </message> <message> - <location filename="Project/Project.py" line="3367"/> + <location filename="Project/Project.py" line="3373"/> <source>Show code coverage information for the project.</source> <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> </message> <message> - <location filename="Project/Project.py" line="3369"/> + <location filename="Project/Project.py" line="3375"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python Dateien des Projektes an.</p></translation> </message> <message> - <location filename="Project/Project.py" line="4087"/> + <location filename="Project/Project.py" line="4093"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="Project/Project.py" line="3377"/> + <location filename="Project/Project.py" line="3383"/> <source>&Profile Data...</source> <translation>&Profildaten...</translation> </message> <message> - <location filename="Project/Project.py" line="3380"/> + <location filename="Project/Project.py" line="3386"/> <source>Show profiling data for the project.</source> <translation>Zeige Profildaten des aktuellen Projektes.</translation> </message> <message> - <location filename="Project/Project.py" line="3382"/> + <location filename="Project/Project.py" line="3388"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> </message> <message> + <location filename="Project/Project.py" line="3494"/> + <source>Sho&w</source> + <translation>&Zeige</translation> + </message> + <message> + <location filename="Project/Project.py" line="4072"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> + </message> + <message> + <location filename="Project/Project.py" line="4025"/> + <source>Coverage Data</source> + <translation>Quelltext Abdeckungsdaten</translation> + </message> + <message> <location filename="Project/Project.py" line="3488"/> - <source>Sho&w</source> - <translation>&Zeige</translation> - </message> - <message> - <location filename="Project/Project.py" line="4066"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> - </message> - <message> - <location filename="Project/Project.py" line="4019"/> - <source>Coverage Data</source> - <translation>Quelltext Abdeckungsdaten</translation> - </message> - <message> - <location filename="Project/Project.py" line="3482"/> <source>&Version Control</source> <translation>&Versionskontrolle</translation> </message> <message> - <location filename="Project/Project.py" line="4141"/> + <location filename="Project/Project.py" line="4147"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="Project/Project.py" line="3391"/> + <location filename="Project/Project.py" line="3397"/> <source>&Application Diagram...</source> <translation>&Applikations-Diagramm...</translation> </message> <message> - <location filename="Project/Project.py" line="3394"/> + <location filename="Project/Project.py" line="3400"/> <source>Show a diagram of the project.</source> <translation>Zeigt ein Diagramm des Projektes.</translation> </message> <message> - <location filename="Project/Project.py" line="3396"/> + <location filename="Project/Project.py" line="3402"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Applikations-Diagramm...</b><p>Dies zeigt ein Diagramm des Projektes.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3489"/> + <location filename="Project/Project.py" line="3495"/> <source>&Diagrams</source> <translation>&Diagramme</translation> </message> <message> - <location filename="Project/Project.py" line="747"/> + <location filename="Project/Project.py" line="753"/> <source>Save project file</source> <translation>Projektdatei speichern</translation> </message> <message> - <location filename="Project/Project.py" line="4040"/> + <location filename="Project/Project.py" line="4046"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="Project/Project.py" line="4040"/> + <location filename="Project/Project.py" line="4046"/> <source>Please select a coverage file</source> <translation>Bitte wählen sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="Project/Project.py" line="4087"/> + <location filename="Project/Project.py" line="4093"/> <source>Please select a profile file</source> <translation>Bitte wählen sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="Project/Project.py" line="3153"/> + <location filename="Project/Project.py" line="3159"/> <source>Add directory to project</source> <translation>Verzeichnis zum Projekt hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="3153"/> - <source>Add directory...</source> - <translation>Verzeichnis hinzufügen...</translation> - </message> - <message> - <location filename="Project/Project.py" line="3157"/> - <source>Add a directory to the current project</source> - <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> - </message> - <message> <location filename="Project/Project.py" line="3159"/> + <source>Add directory...</source> + <translation>Verzeichnis hinzufügen...</translation> + </message> + <message> + <location filename="Project/Project.py" line="3163"/> + <source>Add a directory to the current project</source> + <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> + </message> + <message> + <location filename="Project/Project.py" line="3165"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1632"/> + <location filename="Project/Project.py" line="1638"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/Project.py" line="1655"/> + <location filename="Project/Project.py" line="1661"/> <source>Rename File</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/Project.py" line="2065"/> + <location filename="Project/Project.py" line="2071"/> <source>Shall the project file be added to the repository?</source> <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> </message> <message> - <location filename="Project/Project.py" line="2404"/> + <location filename="Project/Project.py" line="2410"/> <source>New Project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="2005"/> + <location filename="Project/Project.py" line="2011"/> <source>Add existing files to the project?</source> <translation>Existierende Dateien dem projekt hinzufügen?</translation> </message> <message> - <location filename="Project/Project.py" line="2112"/> + <location filename="Project/Project.py" line="2118"/> <source>Would you like to edit the VCS command options?</source> <translation>Möchten sie die VCS Befehlsoptionen bearbeiten?</translation> </message> <message> - <location filename="Project/Project.py" line="2086"/> + <location filename="Project/Project.py" line="2092"/> <source>Select version control system for the project</source> <translation>Wähle das Versionskontrollsystem für das Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="653"/> + <location filename="Project/Project.py" line="659"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="747"/> + <location filename="Project/Project.py" line="753"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="851"/> + <location filename="Project/Project.py" line="857"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projekt Session Datei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="882"/> + <location filename="Project/Project.py" line="888"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projekt Session Datei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1257"/> + <location filename="Project/Project.py" line="1263"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die ausgewählte Übersetzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="2543"/> + <location filename="Project/Project.py" line="2549"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Project/Project.py" line="1840"/> + <location filename="Project/Project.py" line="1846"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1943"/> + <location filename="Project/Project.py" line="1949"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="904"/> + <location filename="Project/Project.py" line="910"/> <source>Delete project session</source> <translation>Projekt Session löschen</translation> </message> <message> - <location filename="Project/Project.py" line="904"/> + <location filename="Project/Project.py" line="910"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Projekt Session Datei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3339"/> + <location filename="Project/Project.py" line="3345"/> <source>Delete session</source> <translation>Session löschen</translation> </message> <message> - <location filename="Project/Project.py" line="3342"/> + <location filename="Project/Project.py" line="3348"/> <source>Delete the projects session file.</source> <translation>Löscht die Projekt Session Datei.</translation> </message> <message> - <location filename="Project/Project.py" line="3343"/> + <location filename="Project/Project.py" line="3349"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Session löschen</b><p>Dies löscht die Session Datei des Projektes.</p></translation> </message> <message> - <location filename="Project/Project.py" line="186"/> + <location filename="Project/Project.py" line="192"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby Dateien (*.rb);;</translation> </message> <message> - <location filename="Project/Project.py" line="3185"/> + <location filename="Project/Project.py" line="3191"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl).</p></translation> </message> <message> - <location filename="Project/Project.py" line="232"/> + <location filename="Project/Project.py" line="238"/> <source>Console</source> <translation>Konsole</translation> </message> <message> - <location filename="Project/Project.py" line="233"/> + <location filename="Project/Project.py" line="239"/> <source>Other</source> <translation>Sonstige</translation> </message> <message> - <location filename="Project/Project.py" line="4141"/> + <location filename="Project/Project.py" line="4147"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="Project/Project.py" line="1863"/> + <location filename="Project/Project.py" line="1869"/> <source>Delete directory</source> <translation>Verzeichnis löschen</translation> </message> <message> - <location filename="Project/Project.py" line="1863"/> + <location filename="Project/Project.py" line="1869"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>Das ausgewählte Verzeichnis <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="930"/> + <location filename="Project/Project.py" line="936"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="Project/Project.py" line="930"/> + <location filename="Project/Project.py" line="936"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="948"/> + <location filename="Project/Project.py" line="954"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="Project/Project.py" line="948"/> + <location filename="Project/Project.py" line="954"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1000"/> + <location filename="Project/Project.py" line="1006"/> <source>Read debugger properties</source> <translation>Debugger Eigenschaften lesen</translation> </message> <message> - <location filename="Project/Project.py" line="1000"/> + <location filename="Project/Project.py" line="1006"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger Eigenschaften <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1030"/> + <location filename="Project/Project.py" line="1036"/> <source>Save debugger properties</source> <translation>Debugger Eigenschaften speichern</translation> </message> <message> - <location filename="Project/Project.py" line="1030"/> + <location filename="Project/Project.py" line="1036"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger Eigenschaften <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1053"/> + <location filename="Project/Project.py" line="1059"/> <source>Delete debugger properties</source> <translation>Debugger Eigenschaften löschen</translation> </message> <message> - <location filename="Project/Project.py" line="1053"/> + <location filename="Project/Project.py" line="1059"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3247"/> + <location filename="Project/Project.py" line="3253"/> <source>Debugger Properties</source> <translation>Debugger Eigenschaften</translation> </message> <message> - <location filename="Project/Project.py" line="3247"/> + <location filename="Project/Project.py" line="3253"/> <source>Debugger &Properties...</source> <translation>Debugger &Eigenschaften...</translation> </message> <message> - <location filename="Project/Project.py" line="3250"/> + <location filename="Project/Project.py" line="3256"/> <source>Show the debugger properties</source> <translation>Debugger Eigenschaften anzeigen</translation> </message> <message> - <location filename="Project/Project.py" line="3251"/> + <location filename="Project/Project.py" line="3257"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Debugger Eigenschaften...</b><p>Dies zeigt einen Dialog an, um die projektspezifischen Debugger Einstellungen zu bearbeiten.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3258"/> + <location filename="Project/Project.py" line="3264"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="Project/Project.py" line="3258"/> + <location filename="Project/Project.py" line="3264"/> <source>&Load</source> <translation>&Laden</translation> </message> <message> - <location filename="Project/Project.py" line="3261"/> + <location filename="Project/Project.py" line="3267"/> <source>Load the debugger properties</source> <translation>Debugger Eigenschaften laden</translation> </message> <message> - <location filename="Project/Project.py" line="3269"/> + <location filename="Project/Project.py" line="3275"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3272"/> + <location filename="Project/Project.py" line="3278"/> <source>Save the debugger properties</source> <translation>Debugger Eigenschaften speichern</translation> </message> <message> - <location filename="Project/Project.py" line="3280"/> + <location filename="Project/Project.py" line="3286"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/Project.py" line="3280"/> + <location filename="Project/Project.py" line="3286"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="Project/Project.py" line="3283"/> + <location filename="Project/Project.py" line="3289"/> <source>Delete the debugger properties</source> <translation>Debugger Eigenschaften löschen</translation> </message> <message> - <location filename="Project/Project.py" line="3292"/> + <location filename="Project/Project.py" line="3298"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="Project/Project.py" line="3292"/> + <location filename="Project/Project.py" line="3298"/> <source>&Reset</source> <translation>&Zurücksetzen</translation> </message> <message> - <location filename="Project/Project.py" line="3295"/> + <location filename="Project/Project.py" line="3301"/> <source>Reset the debugger properties</source> <translation>Debugger Eigenschaften zurücksetzen</translation> </message> <message> - <location filename="Project/Project.py" line="3493"/> + <location filename="Project/Project.py" line="3499"/> <source>Debugger</source> <translation>Debugger</translation> </message> <message> - <location filename="Project/Project.py" line="3490"/> + <location filename="Project/Project.py" line="3496"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="Project/Project.py" line="3262"/> + <location filename="Project/Project.py" line="3268"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Debugger Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger Einstellungen.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3273"/> + <location filename="Project/Project.py" line="3279"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Debugger Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger Einstellungen.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3284"/> + <location filename="Project/Project.py" line="3290"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Debugger Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger Einstellungen.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3296"/> + <location filename="Project/Project.py" line="3302"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Debugger Eigenschaften zurücksetzen</b><p>Dies setzt die projektspezifischen Debugger Einstellungen zurück.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3216"/> + <location filename="Project/Project.py" line="3222"/> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="Project/Project.py" line="3216"/> + <location filename="Project/Project.py" line="3222"/> <source>Filetype Associations...</source> <translation>Dateitypzuordnungen...</translation> </message> <message> - <location filename="Project/Project.py" line="3219"/> + <location filename="Project/Project.py" line="3225"/> <source>Show the project filetype associations</source> <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> </message> <message> - <location filename="Project/Project.py" line="3221"/> + <location filename="Project/Project.py" line="3227"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3494"/> + <location filename="Project/Project.py" line="3500"/> <source>Pac&kagers</source> <translation>Pa&ketierer</translation> </message> <message> - <location filename="Project/Project.py" line="3139"/> + <location filename="Project/Project.py" line="3145"/> <source>Add files to project</source> <translation>Dateien zum Projekt hinzufügen</translation> </message> <message> - <location filename="Project/Project.py" line="3139"/> + <location filename="Project/Project.py" line="3145"/> <source>Add &files...</source> <translation>&Dateien hinzufügen...</translation> </message> <message> - <location filename="Project/Project.py" line="3143"/> + <location filename="Project/Project.py" line="3149"/> <source>Add files to the current project</source> <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> </message> <message> - <location filename="Project/Project.py" line="3144"/> + <location filename="Project/Project.py" line="3150"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1655"/> + <location filename="Project/Project.py" line="1661"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="Project/Project.py" line="2528"/> + <location filename="Project/Project.py" line="2534"/> <source>Project Files (*.e4p)</source> <translation>Projektdateien (*.e4p)</translation> </message> <message> - <location filename="Project/Project.py" line="3480"/> + <location filename="Project/Project.py" line="3486"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3600"/> + <location filename="Project/Project.py" line="3606"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="Project/Project.py" line="3661"/> + <location filename="Project/Project.py" line="3667"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="Project/Project.py" line="1452"/> + <location filename="Project/Project.py" line="1458"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Project/Project.py" line="782"/> + <location filename="Project/Project.py" line="788"/> <source>Read user project properties</source> <translation>Nutzer bezogene Projektdaten lesen</translation> </message> <message> - <location filename="Project/Project.py" line="782"/> + <location filename="Project/Project.py" line="788"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="803"/> + <location filename="Project/Project.py" line="809"/> <source>Save user project properties</source> <translation>Nutzer bezogene Projektdaten sichern</translation> </message> <message> - <location filename="Project/Project.py" line="803"/> + <location filename="Project/Project.py" line="809"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="Project/Project.py" line="3204"/> + <location filename="Project/Project.py" line="3210"/> <source>User project properties</source> <translation>Nutzer bezogene Projektdaten</translation> </message> <message> - <location filename="Project/Project.py" line="3204"/> + <location filename="Project/Project.py" line="3210"/> <source>&User Properties...</source> <translation>&Nutzer bezogene Projektdaten...</translation> </message> <message> - <location filename="Project/Project.py" line="3207"/> + <location filename="Project/Project.py" line="3213"/> <source>Show the user specific project properties</source> <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> </message> <message> - <location filename="Project/Project.py" line="3209"/> + <location filename="Project/Project.py" line="3215"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Nutzer bezogene Projektdaten...</b><p>Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.</p></translation> </message> <message> - <location filename="Project/Project.py" line="2739"/> + <location filename="Project/Project.py" line="2745"/> <source>Syntax errors detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="Project/Project.py" line="2739"/> + <location filename="Project/Project.py" line="2745"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet %n Datei mit Syntaxfehlern.</numerusform> @@ -33304,262 +33304,262 @@ </translation> </message> <message> - <location filename="Project/Project.py" line="4285"/> + <location filename="Project/Project.py" line="4291"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="Project/Project.py" line="3417"/> - <source>Create &Package List</source> - <translation>Erzeuge &Paketliste</translation> - </message> - <message> - <location filename="Project/Project.py" line="4453"/> - <source>Create Plugin Archive</source> - <translation>Erzeuge Plugin Archiv</translation> - </message> - <message> - <location filename="Project/Project.py" line="3431"/> - <source>Create Plugin &Archive</source> - <translation>Erzeuge Plugin &Archiv</translation> - </message> - <message> - <location filename="Project/Project.py" line="4257"/> - <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> - <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="4285"/> - <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> - <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="4302"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Die Datei <b>PKGLIST</b> existiert nicht. Abbruch...</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="4310"/> - <source>The project does not have a main script defined. Aborting...</source> - <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> - </message> - <message> - <location filename="Project/Project.py" line="4322"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>Die Datei <b>PKGLIST</b> konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="1426"/> - <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> - <translation><p>Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="2404"/> - <source>Select Version Control System</source> - <translation>Versionskontrollsystem auswählen</translation> - </message> - <message> - <location filename="Project/Project.py" line="2092"/> - <source>None</source> - <translation>Keines</translation> - </message> - <message> - <location filename="Project/Project.py" line="320"/> - <source>Registering Project Type</source> - <translation>Projekttyp Registrierung</translation> - </message> - <message> - <location filename="Project/Project.py" line="4354"/> - <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> - <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="3446"/> - <source>Create Plugin Archive (Snapshot)</source> - <translation>Erzeuge Plugin Archiv (Snapshot)</translation> - </message> - <message> - <location filename="Project/Project.py" line="3446"/> - <source>Create Plugin Archive (&Snapshot)</source> - <translation>Erzeuge Plugin Archiv (&Snapshot)</translation> - </message> - <message> - <location filename="Project/Project.py" line="4453"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="1147"/> - <source>You have to specify a translation pattern first.</source> - <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation> - </message> - <message> - <location filename="Project/Project.py" line="2180"/> - <source>Translation Pattern</source> - <translation>Übersetzungsmuster</translation> - </message> - <message> - <location filename="Project/Project.py" line="2180"/> - <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> - <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze '%language%' anstelle des Sprachcodes):</translation> - </message> - <message> - <location filename="Project/Project.py" line="3902"/> - <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Reverting override.</p><p>{1}</p></source> - <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="3911"/> - <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> - <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="3231"/> - <source>Lexer Associations</source> - <translation>Lexer Zuordnungen</translation> - </message> - <message> - <location filename="Project/Project.py" line="3231"/> - <source>Lexer Associations...</source> - <translation>Lexer Zuordnungen...</translation> - </message> - <message> - <location filename="Project/Project.py" line="3234"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zeigt die Projekt spezifischen Lexer Zuordnungen</translation> - </message> - <message> - <location filename="Project/Project.py" line="3236"/> - <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> - <translation><b>Lexer Zuordnungen</b><p>Dies öffnet einen Dialog, um die Projekt spezifischen Lexer Zuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexer Zuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="243"/> - <source>PySide GUI</source> - <translation>PySide Oberfläche</translation> - </message> - <message> - <location filename="Project/Project.py" line="244"/> - <source>PySide Console</source> - <translation>PySide Kommandozeile</translation> - </message> - <message> - <location filename="Project/Project.py" line="183"/> - <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> - <translation>Python3 Dateien (*.py *.py3);;Python3 GUI Dateien (*.pyw *.pyw3);;</translation> - </message> - <message> - <location filename="Project/Project.py" line="231"/> - <source>Eric Plugin</source> - <translation>Eric Plugin</translation> - </message> - <message> - <location filename="Project/Project.py" line="3421"/> - <source>Create an initial PKGLIST file for an eric5 plugin.</source> - <translation>Erzeugt eine erste PKGLIST Datei für ein eric5 Plugin.</translation> - </message> - <message> <location filename="Project/Project.py" line="3423"/> - <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric5 plugin archive. The list is created from the project file.</p></source> - <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste List von Dateien, die in ein eric5 Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="3435"/> - <source>Create an eric5 plugin archive file.</source> - <translation>Erzeugt eine eric5 Plugin Archivdatei.</translation> + <source>Create &Package List</source> + <translation>Erzeuge &Paketliste</translation> + </message> + <message> + <location filename="Project/Project.py" line="4459"/> + <source>Create Plugin Archive</source> + <translation>Erzeuge Plugin Archiv</translation> </message> <message> <location filename="Project/Project.py" line="3437"/> - <source><b>Create Plugin Archive</b><p>This creates an eric5 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation><b>Erzeuge Plugin Archiv</b><p>Dies erzeugt eine eric5 Plugin Archivdatei mit den Dateien, die in der PKGLIST Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert.</p></translation> - </message> - <message> - <location filename="Project/Project.py" line="3450"/> - <source>Create an eric5 plugin archive file (snapshot release).</source> - <translation>Erzeugt eine eric5 Plugin Archivdatei (Snapshot Release).</translation> + <source>Create Plugin &Archive</source> + <translation>Erzeuge Plugin &Archiv</translation> + </message> + <message> + <location filename="Project/Project.py" line="4263"/> + <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> + <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="4291"/> + <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> + <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="4308"/> + <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> + <translation><p>Die Datei <b>PKGLIST</b> existiert nicht. Abbruch...</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="4316"/> + <source>The project does not have a main script defined. Aborting...</source> + <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> + </message> + <message> + <location filename="Project/Project.py" line="4328"/> + <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> + <translation><p>Die Datei <b>PKGLIST</b> konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="1432"/> + <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> + <translation><p>Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="2410"/> + <source>Select Version Control System</source> + <translation>Versionskontrollsystem auswählen</translation> + </message> + <message> + <location filename="Project/Project.py" line="2098"/> + <source>None</source> + <translation>Keines</translation> + </message> + <message> + <location filename="Project/Project.py" line="326"/> + <source>Registering Project Type</source> + <translation>Projekttyp Registrierung</translation> + </message> + <message> + <location filename="Project/Project.py" line="4360"/> + <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="3452"/> + <source>Create Plugin Archive (Snapshot)</source> + <translation>Erzeuge Plugin Archiv (Snapshot)</translation> </message> <message> <location filename="Project/Project.py" line="3452"/> + <source>Create Plugin Archive (&Snapshot)</source> + <translation>Erzeuge Plugin Archiv (&Snapshot)</translation> + </message> + <message> + <location filename="Project/Project.py" line="4459"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="1153"/> + <source>You have to specify a translation pattern first.</source> + <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation> + </message> + <message> + <location filename="Project/Project.py" line="2186"/> + <source>Translation Pattern</source> + <translation>Übersetzungsmuster</translation> + </message> + <message> + <location filename="Project/Project.py" line="2186"/> + <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> + <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze '%language%' anstelle des Sprachcodes):</translation> + </message> + <message> + <location filename="Project/Project.py" line="3908"/> + <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Reverting override.</p><p>{1}</p></source> + <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="3917"/> + <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> + <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="3237"/> + <source>Lexer Associations</source> + <translation>Lexer Zuordnungen</translation> + </message> + <message> + <location filename="Project/Project.py" line="3237"/> + <source>Lexer Associations...</source> + <translation>Lexer Zuordnungen...</translation> + </message> + <message> + <location filename="Project/Project.py" line="3240"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zeigt die Projekt spezifischen Lexer Zuordnungen</translation> + </message> + <message> + <location filename="Project/Project.py" line="3242"/> + <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> + <translation><b>Lexer Zuordnungen</b><p>Dies öffnet einen Dialog, um die Projekt spezifischen Lexer Zuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexer Zuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="249"/> + <source>PySide GUI</source> + <translation>PySide Oberfläche</translation> + </message> + <message> + <location filename="Project/Project.py" line="250"/> + <source>PySide Console</source> + <translation>PySide Kommandozeile</translation> + </message> + <message> + <location filename="Project/Project.py" line="189"/> + <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> + <translation>Python3 Dateien (*.py *.py3);;Python3 GUI Dateien (*.pyw *.pyw3);;</translation> + </message> + <message> + <location filename="Project/Project.py" line="237"/> + <source>Eric Plugin</source> + <translation>Eric Plugin</translation> + </message> + <message> + <location filename="Project/Project.py" line="3427"/> + <source>Create an initial PKGLIST file for an eric5 plugin.</source> + <translation>Erzeugt eine erste PKGLIST Datei für ein eric5 Plugin.</translation> + </message> + <message> + <location filename="Project/Project.py" line="3429"/> + <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric5 plugin archive. The list is created from the project file.</p></source> + <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste List von Dateien, die in ein eric5 Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="3441"/> + <source>Create an eric5 plugin archive file.</source> + <translation>Erzeugt eine eric5 Plugin Archivdatei.</translation> + </message> + <message> + <location filename="Project/Project.py" line="3443"/> + <source><b>Create Plugin Archive</b><p>This creates an eric5 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> + <translation><b>Erzeuge Plugin Archiv</b><p>Dies erzeugt eine eric5 Plugin Archivdatei mit den Dateien, die in der PKGLIST Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert.</p></translation> + </message> + <message> + <location filename="Project/Project.py" line="3456"/> + <source>Create an eric5 plugin archive file (snapshot release).</source> + <translation>Erzeugt eine eric5 Plugin Archivdatei (Snapshot Release).</translation> + </message> + <message> + <location filename="Project/Project.py" line="3458"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric5 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Erzeuge Plugin Archiv (Snapshot)</b><p>Dies erzeugt eine eric5 Plugin Archivdatei mit den Dateien, die in der PKGLIST Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="Project/Project.py" line="4333"/> + <location filename="Project/Project.py" line="4339"/> <source><p>The eric5 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Die eric5 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/Project.py" line="4373"/> + <location filename="Project/Project.py" line="4379"/> <source><p>The eric5 plugin archive file <b>{0}</b> was created successfully.</p></source> <translation><p>Die eric5 Plugin Archivdatei <b>{0}</b> wurde erfolgreich erzeugt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="1388"/> + <location filename="Project/Project.py" line="1394"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht zu <b>{1}</b> hinzugefügt werden.</p><p>Ursache: {2}</p></translation> </message> <message> - <location filename="Project/Project.py" line="1436"/> + <location filename="Project/Project.py" line="1442"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Das Zielverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/Project.py" line="180"/> + <location filename="Project/Project.py" line="186"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python2 Dateien (*.py2);;Python2 GUI Dateien (*.pyw2);;</translation> </message> <message> - <location filename="Project/Project.py" line="1995"/> + <location filename="Project/Project.py" line="2001"/> <source>Create main script</source> <translation>Hauptskript erzeugen</translation> </message> <message> - <location filename="Project/Project.py" line="1995"/> + <location filename="Project/Project.py" line="2001"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Das Hauptskript <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/Project.py" line="3403"/> + <location filename="Project/Project.py" line="3409"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="Project/Project.py" line="3403"/> + <location filename="Project/Project.py" line="3409"/> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="Project/Project.py" line="3406"/> + <location filename="Project/Project.py" line="3412"/> <source>Load a diagram from file.</source> <translation>Lade ein Diagramm aus einer Datei.</translation> </message> <message> - <location filename="Project/Project.py" line="3408"/> + <location filename="Project/Project.py" line="3414"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Diagramm laden...</b><p>Dies lädt ein Diagramm aus einer Datei.</p></translation> </message> <message> - <location filename="Project/Project.py" line="301"/> + <location filename="Project/Project.py" line="307"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>Die Programmiersprache <b>{0}</b> wird nicht unterstützt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="320"/> + <location filename="Project/Project.py" line="326"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits registriert.</p></translation> </message> <message> - <location filename="Project/Project.py" line="310"/> + <location filename="Project/Project.py" line="316"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits für die Programmiersprache <b>{1}</b> registriert.</p></translation> </message> <message> - <location filename="Project/Project.py" line="229"/> + <location filename="Project/Project.py" line="235"/> <source>Qt GUI</source> <translation>Qt Oberfläche</translation> </message> <message> - <location filename="Project/Project.py" line="230"/> + <location filename="Project/Project.py" line="236"/> <source>Qt Console</source> <translation>Qt Kommandozeile</translation> </message> @@ -33567,32 +33567,32 @@ <context> <name>ProjectBaseBrowser</name> <message> - <location filename="Project/ProjectBaseBrowser.py" line="113"/> + <location filename="Project/ProjectBaseBrowser.py" line="115"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="Project/ProjectBaseBrowser.py" line="462"/> + <location filename="Project/ProjectBaseBrowser.py" line="464"/> <source>local</source> <translation>lokal</translation> </message> <message> - <location filename="Project/ProjectBaseBrowser.py" line="502"/> + <location filename="Project/ProjectBaseBrowser.py" line="504"/> <source>Select entries</source> <translation>Einträge auswählen</translation> </message> <message> - <location filename="Project/ProjectBaseBrowser.py" line="502"/> + <location filename="Project/ProjectBaseBrowser.py" line="504"/> <source>There were no matching entries found.</source> <translation>Es wurden keine passenden Einträge gefunden.</translation> </message> <message> - <location filename="Project/ProjectBaseBrowser.py" line="286"/> + <location filename="Project/ProjectBaseBrowser.py" line="288"/> <source>Delete directories</source> <translation>Verzeichnisse löschen</translation> </message> <message> - <location filename="Project/ProjectBaseBrowser.py" line="286"/> + <location filename="Project/ProjectBaseBrowser.py" line="288"/> <source>Do you really want to delete these directories from the project?</source> <translation>Wollen Sie wirklich diese Verzeichnisse aus dem Projekt löschen?</translation> </message> @@ -33600,42 +33600,42 @@ <context> <name>ProjectBrowser</name> <message> - <location filename="Project/ProjectBrowser.py" line="68"/> + <location filename="Project/ProjectBrowser.py" line="70"/> <source>files added</source> <translation>Dateien hinzugefügt</translation> </message> <message> + <location filename="Project/ProjectBrowser.py" line="71"/> + <source>local modifications</source> + <translation>Lokale Änderungen</translation> + </message> + <message> + <location filename="Project/ProjectBrowser.py" line="74"/> + <source>update required</source> + <translation>Abgleich erforderlich</translation> + </message> + <message> + <location filename="Project/ProjectBrowser.py" line="75"/> + <source>conflict</source> + <translation>Konflikt</translation> + </message> + <message> <location filename="Project/ProjectBrowser.py" line="69"/> - <source>local modifications</source> - <translation>Lokale Änderungen</translation> - </message> - <message> - <location filename="Project/ProjectBrowser.py" line="72"/> - <source>update required</source> - <translation>Abgleich erforderlich</translation> + <source>up to date</source> + <translation>Aktuell</translation> </message> <message> <location filename="Project/ProjectBrowser.py" line="73"/> - <source>conflict</source> - <translation>Konflikt</translation> - </message> - <message> - <location filename="Project/ProjectBrowser.py" line="67"/> - <source>up to date</source> - <translation>Aktuell</translation> - </message> - <message> - <location filename="Project/ProjectBrowser.py" line="71"/> <source>files replaced</source> <translation>Dateien ersetzt</translation> </message> <message> - <location filename="Project/ProjectBrowser.py" line="70"/> + <location filename="Project/ProjectBrowser.py" line="72"/> <source>files removed</source> <translation>Dateien entfernt</translation> </message> <message> - <location filename="Project/ProjectBrowser.py" line="358"/> + <location filename="Project/ProjectBrowser.py" line="360"/> <source>unknown status</source> <translation>unbekannter Status</translation> </message> @@ -33643,17 +33643,17 @@ <context> <name>ProjectBrowserModel</name> <message> - <location filename="Project/ProjectBrowserModel.py" line="226"/> + <location filename="Project/ProjectBrowserModel.py" line="228"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="Project/ProjectBrowserModel.py" line="228"/> + <location filename="Project/ProjectBrowserModel.py" line="230"/> <source>VCS Status</source> <translation>VCS Status</translation> </message> <message> - <location filename="Project/ProjectBrowserModel.py" line="697"/> + <location filename="Project/ProjectBrowserModel.py" line="699"/> <source>local</source> <translation>lokal</translation> </message> @@ -33779,282 +33779,282 @@ <context> <name>ProjectFormsBrowser</name> <message> - <location filename="Project/ProjectFormsBrowser.py" line="67"/> + <location filename="Project/ProjectFormsBrowser.py" line="73"/> <source>Forms</source> <translation>Formulare</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="69"/> + <location filename="Project/ProjectFormsBrowser.py" line="75"/> <source><b>Project Forms Browser</b><p>This allows to easily see all forms contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Formular Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Formulare an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="134"/> + <location filename="Project/ProjectFormsBrowser.py" line="140"/> <source>Compile form</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="285"/> + <location filename="Project/ProjectFormsBrowser.py" line="291"/> <source>Compile all forms</source> <translation>Alle Formulare übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="252"/> + <location filename="Project/ProjectFormsBrowser.py" line="258"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="254"/> + <location filename="Project/ProjectFormsBrowser.py" line="260"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="663"/> + <location filename="Project/ProjectFormsBrowser.py" line="669"/> <source>Form Compilation</source> <translation>Formular übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="641"/> + <location filename="Project/ProjectFormsBrowser.py" line="647"/> <source>The compilation of the form file was successful.</source> <translation>Die Übersetzung des Formulars war erfolgreich.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="820"/> + <location filename="Project/ProjectFormsBrowser.py" line="826"/> <source>Compiling forms...</source> <translation>Formular übersetzen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="820"/> + <location filename="Project/ProjectFormsBrowser.py" line="826"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="211"/> + <location filename="Project/ProjectFormsBrowser.py" line="217"/> <source>Open in Qt-Designer</source> <translation>Mit Qt-Designer öffnen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="732"/> + <location filename="Project/ProjectFormsBrowser.py" line="738"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="292"/> + <location filename="Project/ProjectFormsBrowser.py" line="298"/> <source>Add forms directory...</source> <translation>Formularverzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="663"/> + <location filename="Project/ProjectFormsBrowser.py" line="669"/> <source>The compilation of the form file failed.</source> <translation>Die Übersetzung des Formulars ist fehlgeschlagen.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="85"/> + <location filename="Project/ProjectFormsBrowser.py" line="91"/> <source>Dialog</source> <translation>Dialog</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="86"/> - <source>Widget</source> - <translation>Widget</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="90"/> - <source>Dialog with Buttons (Bottom)</source> - <translation>Dialog mit Knöpfen (unten)</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="92"/> + <source>Widget</source> + <translation>Widget</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="96"/> + <source>Dialog with Buttons (Bottom)</source> + <translation>Dialog mit Knöpfen (unten)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="98"/> <source>Dialog with Buttons (Right)</source> <translation>Dialog mit Knöpfen (rechts)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="261"/> + <location filename="Project/ProjectFormsBrowser.py" line="267"/> <source>New form...</source> <translation>Neues Formular...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="542"/> + <location filename="Project/ProjectFormsBrowser.py" line="548"/> <source>New Form</source> <translation>Neues Formular</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="498"/> + <location filename="Project/ProjectFormsBrowser.py" line="504"/> <source>Select a form type:</source> <translation>Wähle einen Formulartyp:</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="295"/> + <location filename="Project/ProjectFormsBrowser.py" line="301"/> <source>Expand all directories</source> <translation>Alle Verzeichnisse aufklappen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="297"/> + <location filename="Project/ProjectFormsBrowser.py" line="303"/> <source>Collapse all directories</source> <translation>Alle Verzeichnisse einklappen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="213"/> + <location filename="Project/ProjectFormsBrowser.py" line="219"/> <source>Open in Editor</source> <translation>Mit Editor öffnen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="153"/> + <location filename="Project/ProjectFormsBrowser.py" line="159"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="220"/> + <location filename="Project/ProjectFormsBrowser.py" line="226"/> <source>Compile forms</source> <translation>Formulare übersetzen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="566"/> + <location filename="Project/ProjectFormsBrowser.py" line="572"/> <source>Delete forms</source> <translation>Formulare löschen</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="566"/> + <location filename="Project/ProjectFormsBrowser.py" line="572"/> <source>Do you really want to delete these forms from the project?</source> <translation>Wollen Sie wirklich diese Formulare aus dem Projekt löschen?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="542"/> + <location filename="Project/ProjectFormsBrowser.py" line="548"/> <source><p>The new form file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Die neue Formulardatei <b>{0}</b> konnte nicht erzeugt werden.<br>Problem: {1}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="130"/> + <location filename="Project/ProjectFormsBrowser.py" line="136"/> <source>Preview form</source> <translation>Formularvorschau</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="216"/> + <location filename="Project/ProjectFormsBrowser.py" line="222"/> <source>Preview translations</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="653"/> + <location filename="Project/ProjectFormsBrowser.py" line="659"/> <source><p>The compilation of the form file failed.</p><p>Reason: {0}</p></source> <translation><p>Die Übersetzung des Formulars ist fehlgeschlagen.</p<p>Grund: {0}</p></translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="732"/> + <location filename="Project/ProjectFormsBrowser.py" line="738"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="290"/> + <location filename="Project/ProjectFormsBrowser.py" line="296"/> <source>Add forms...</source> <translation>Formulare hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="87"/> + <location filename="Project/ProjectFormsBrowser.py" line="93"/> <source>Main Window</source> <translation>Hauptfenster</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="91"/> + <location filename="Project/ProjectFormsBrowser.py" line="97"/> <source>Dialog with Buttons (Bottom-Center)</source> <translation>Dialog mit Knöpfen (unten Mitte)</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="855"/> + <location filename="Project/ProjectFormsBrowser.py" line="861"/> <source>Determining changed forms...</source> <translation>Ermittle veränderte Formulare...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="882"/> + <location filename="Project/ProjectFormsBrowser.py" line="888"/> <source>Compiling changed forms...</source> <translation>Übersetze veränderte Formulare...</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="531"/> + <location filename="Project/ProjectFormsBrowser.py" line="537"/> <source>The file already exists! Overwrite it?</source> <translation>Die Datei existiert bereits. Überschreiben?</translation> </message> <message> - <location filename="Project/ProjectFormsBrowser.py" line="88"/> - <source>Dialog with Buttonbox (Bottom)</source> - <translation>Dialog mit Knöpfebox (unten)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="89"/> - <source>Dialog with Buttonbox (Right)</source> - <translation>Dialog mit Knöpfebox (rechts)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="143"/> - <source>Generate Dialog Code...</source> - <translation>Erzeuge Dialogcode...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="225"/> - <source>Open</source> - <translation>Öffnen</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="512"/> - <source>Qt User-Interface Files (*.ui);;All Files (*)</source> - <translation>Qt Formulare (*.ui);;Alle Dateien (*)</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="300"/> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="268"/> - <source>Copy Path to Clipboard</source> - <translation>Pfad in die Zwischenablage kopieren</translation> - </message> - <message> <location filename="Project/ProjectFormsBrowser.py" line="94"/> - <source>QWizard</source> - <translation>QWizard</translation> + <source>Dialog with Buttonbox (Bottom)</source> + <translation>Dialog mit Knöpfebox (unten)</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="95"/> - <source>QWizardPage</source> - <translation>QWizardPage</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="96"/> - <source>QDockWidget</source> - <translation>QDockWidget</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="97"/> - <source>QFrame</source> - <translation>QFrame</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="98"/> - <source>QGroupBox</source> - <translation>QGroupBox</translation> - </message> - <message> - <location filename="Project/ProjectFormsBrowser.py" line="99"/> - <source>QScrollArea</source> - <translation>QScrollArea</translation> + <source>Dialog with Buttonbox (Right)</source> + <translation>Dialog mit Knöpfebox (rechts)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="149"/> + <source>Generate Dialog Code...</source> + <translation>Erzeuge Dialogcode...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="231"/> + <source>Open</source> + <translation>Öffnen</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="518"/> + <source>Qt User-Interface Files (*.ui);;All Files (*)</source> + <translation>Qt Formulare (*.ui);;Alle Dateien (*)</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="306"/> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="274"/> + <source>Copy Path to Clipboard</source> + <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="100"/> - <source>QMdiArea</source> - <translation>QMdiArea</translation> + <source>QWizard</source> + <translation>QWizard</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="101"/> - <source>QTabWidget</source> - <translation>QTabWidget</translation> + <source>QWizardPage</source> + <translation>QWizardPage</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="102"/> - <source>QToolBox</source> - <translation>QToolBox</translation> + <source>QDockWidget</source> + <translation>QDockWidget</translation> </message> <message> <location filename="Project/ProjectFormsBrowser.py" line="103"/> + <source>QFrame</source> + <translation>QFrame</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="104"/> + <source>QGroupBox</source> + <translation>QGroupBox</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="105"/> + <source>QScrollArea</source> + <translation>QScrollArea</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="106"/> + <source>QMdiArea</source> + <translation>QMdiArea</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="107"/> + <source>QTabWidget</source> + <translation>QTabWidget</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="108"/> + <source>QToolBox</source> + <translation>QToolBox</translation> + </message> + <message> + <location filename="Project/ProjectFormsBrowser.py" line="109"/> <source>QStackedWidget</source> <translation>QStackedWidget</translation> </message> @@ -34062,127 +34062,127 @@ <context> <name>ProjectInterfacesBrowser</name> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="68"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="74"/> <source>Interfaces (IDL)</source> <translation>Schnittstellen (IDL)</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="70"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="76"/> <source><b>Project Interfaces Browser</b><p>This allows to easily see all interfaces (CORBA IDL files) contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Schnittstellen Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Schnittstellen (Corba IDL) an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="123"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="129"/> <source>Compile interface</source> <translation>IDL Datei übersetzen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="207"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="213"/> <source>Compile all interfaces</source> <translation>Alle IDL Dateien übersetzen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="164"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="170"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="185"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="191"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="187"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="193"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="212"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="218"/> <source>Add interfaces directory...</source> <translation>IDL Verzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="470"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="476"/> <source>Interface Compilation</source> <translation>IDL Datei Übersetzung</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="461"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="467"/> <source>The compilation of the interface file was successful.</source> <translation>Die Übersetzung der IDL Datei war erfolgreich.</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="470"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="476"/> <source>The compilation of the interface file failed.</source> <translation>Die Übersetzung der IDL Datei ist fehlgeschlagen.</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="509"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="515"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="565"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="571"/> <source>Compiling interfaces...</source> <translation>Übersetze IDL Dateien...</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="565"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="571"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="215"/> - <source>Expand all directories</source> - <translation>Alle Verzeichnisse aufklappen</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="217"/> - <source>Collapse all directories</source> - <translation>Alle Verzeichnisse einklappen</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="97"/> - <source>Rename file</source> - <translation>Datei umbenennen</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="162"/> - <source>Compile interfaces</source> - <translation>IDL Dateien übersetzen</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="391"/> - <source>Delete interfaces</source> - <translation>IDL Dateien löschen</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="391"/> - <source>Do you really want to delete these interfaces from the project?</source> - <translation>Wollen Sie wirklich diese IDL-Dateien aus dem Projekt löschen?</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="509"/> - <source><p>Could not start {0}.<br>Ensure that it is in the search path.</p></source> - <translation><p>{0} konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es über den Suchpfad verfügbar ist.</p></translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="210"/> - <source>Add interfaces...</source> - <translation>IDL Dateien hinzufügen...</translation> - </message> - <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="220"/> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> <location filename="Project/ProjectInterfacesBrowser.py" line="221"/> + <source>Expand all directories</source> + <translation>Alle Verzeichnisse aufklappen</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="223"/> + <source>Collapse all directories</source> + <translation>Alle Verzeichnisse einklappen</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="103"/> + <source>Rename file</source> + <translation>Datei umbenennen</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="168"/> + <source>Compile interfaces</source> + <translation>IDL Dateien übersetzen</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="397"/> + <source>Delete interfaces</source> + <translation>IDL Dateien löschen</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="397"/> + <source>Do you really want to delete these interfaces from the project?</source> + <translation>Wollen Sie wirklich diese IDL-Dateien aus dem Projekt löschen?</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="515"/> + <source><p>Could not start {0}.<br>Ensure that it is in the search path.</p></source> + <translation><p>{0} konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es über den Suchpfad verfügbar ist.</p></translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="216"/> + <source>Add interfaces...</source> + <translation>IDL Dateien hinzufügen...</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="226"/> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> + <location filename="Project/ProjectInterfacesBrowser.py" line="227"/> <source>Configure CORBA...</source> <translation>CORBA Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectInterfacesBrowser.py" line="194"/> + <location filename="Project/ProjectInterfacesBrowser.py" line="200"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> @@ -34190,77 +34190,77 @@ <context> <name>ProjectOthersBrowser</name> <message> - <location filename="Project/ProjectOthersBrowser.py" line="49"/> + <location filename="Project/ProjectOthersBrowser.py" line="51"/> <source>Others</source> <translation>Weiteres</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="110"/> + <location filename="Project/ProjectOthersBrowser.py" line="112"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="113"/> + <location filename="Project/ProjectOthersBrowser.py" line="115"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="98"/> + <location filename="Project/ProjectOthersBrowser.py" line="100"/> <source>Add directory...</source> <translation>Verzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="51"/> + <location filename="Project/ProjectOthersBrowser.py" line="53"/> <source><b>Project Others Browser</b><p>This allows to easily see all other files and directories contained in the current project. Several actions can be executed via the context menu. The entry which is registered in the project is shown in a different colour.</p></source> <translation><b>Projekt Weitere Browser</b><p>Dies bietet eine Übersicht aller anderen im Projekt enthaltenen Dateien und Verzeichnisse an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden. Der im Projekt registrierte Eintrag ist farblich hervorgehoben.</p></translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="116"/> - <source>Expand all directories</source> - <translation>Alle Verzeichnisse aufklappen</translation> - </message> - <message> <location filename="Project/ProjectOthersBrowser.py" line="118"/> + <source>Expand all directories</source> + <translation>Alle Verzeichnisse aufklappen</translation> + </message> + <message> + <location filename="Project/ProjectOthersBrowser.py" line="120"/> <source>Collapse all directories</source> <translation>Alle Verzeichnisse einklappen</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="72"/> + <location filename="Project/ProjectOthersBrowser.py" line="74"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="285"/> + <location filename="Project/ProjectOthersBrowser.py" line="287"/> <source>Delete files/directories</source> <translation>Dateien/Verzeichnisse löschen</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="285"/> + <location filename="Project/ProjectOthersBrowser.py" line="287"/> <source>Do you really want to delete these entries from the project?</source> <translation>Wollen Sie wirklich diese Einträge aus dem Projekt löschen?</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="96"/> + <location filename="Project/ProjectOthersBrowser.py" line="98"/> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectOthersBrowser.py" line="83"/> - <source>Refresh</source> - <translation>Erneuern</translation> - </message> - <message> - <location filename="Project/ProjectOthersBrowser.py" line="121"/> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="Project/ProjectOthersBrowser.py" line="69"/> - <source>Open in Icon Editor</source> - <translation>Mit Icon Editor öffnen</translation> - </message> - <message> <location filename="Project/ProjectOthersBrowser.py" line="85"/> + <source>Refresh</source> + <translation>Erneuern</translation> + </message> + <message> + <location filename="Project/ProjectOthersBrowser.py" line="123"/> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> + <location filename="Project/ProjectOthersBrowser.py" line="71"/> + <source>Open in Icon Editor</source> + <translation>Mit Icon Editor öffnen</translation> + </message> + <message> + <location filename="Project/ProjectOthersBrowser.py" line="87"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> @@ -34451,162 +34451,162 @@ <context> <name>ProjectResourcesBrowser</name> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="59"/> + <location filename="Project/ProjectResourcesBrowser.py" line="65"/> <source>Resources</source> <translation>Resourcen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="61"/> + <location filename="Project/ProjectResourcesBrowser.py" line="67"/> <source><b>Project Resources Browser</b><p>This allows to easily see all resources contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Resourcen Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Resourcendateien an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="87"/> + <location filename="Project/ProjectResourcesBrowser.py" line="93"/> <source>Compile resource</source> <translation>Resourcendatei übersetzen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="226"/> + <location filename="Project/ProjectResourcesBrowser.py" line="232"/> <source>Compile all resources</source> <translation>Alle Resourcendateien übersetzen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="172"/> + <location filename="Project/ProjectResourcesBrowser.py" line="178"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="101"/> + <location filename="Project/ProjectResourcesBrowser.py" line="107"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="199"/> + <location filename="Project/ProjectResourcesBrowser.py" line="205"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="201"/> + <location filename="Project/ProjectResourcesBrowser.py" line="207"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="204"/> + <location filename="Project/ProjectResourcesBrowser.py" line="210"/> <source>New resource...</source> <translation>Neue Resource...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="231"/> + <location filename="Project/ProjectResourcesBrowser.py" line="237"/> <source>Add resources...</source> <translation>Resourcen hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="233"/> + <location filename="Project/ProjectResourcesBrowser.py" line="239"/> <source>Add resources directory...</source> <translation>Resourcenverzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="236"/> + <location filename="Project/ProjectResourcesBrowser.py" line="242"/> <source>Expand all directories</source> <translation>Alle Verzeichnisse aufklappen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="238"/> + <location filename="Project/ProjectResourcesBrowser.py" line="244"/> <source>Collapse all directories</source> <translation>Alle Verzeichnisse einklappen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="167"/> + <location filename="Project/ProjectResourcesBrowser.py" line="173"/> <source>Compile resources</source> <translation>Resourcendateien übersetzen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="433"/> + <location filename="Project/ProjectResourcesBrowser.py" line="439"/> <source>New Resource</source> <translation>Neue Resource</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="393"/> + <location filename="Project/ProjectResourcesBrowser.py" line="399"/> <source>Qt Resource Files (*.qrc)</source> <translation>Qt Resource Dateien (*.qrc)</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="433"/> + <location filename="Project/ProjectResourcesBrowser.py" line="439"/> <source><p>The new resource file <b>{0}</b> could not be created.<br>Problem: {1}</p></source> <translation><p>Die neue Resourcendatei <b>{0}</b> konnte nicht erzeugt werden.<br>Problem: {1}</p></translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="458"/> + <location filename="Project/ProjectResourcesBrowser.py" line="464"/> <source>Delete resources</source> <translation>Resourcen löschen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="458"/> + <location filename="Project/ProjectResourcesBrowser.py" line="464"/> <source>Do you really want to delete these resources from the project?</source> <translation>Wollen Sie wirklich diese Resourcendateien aus dem Projekt löschen?</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="550"/> + <location filename="Project/ProjectResourcesBrowser.py" line="556"/> <source>Resource Compilation</source> <translation>Resourcen Übersetzung</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="533"/> + <location filename="Project/ProjectResourcesBrowser.py" line="539"/> <source>The compilation of the resource file was successful.</source> <translation>Die Übersetzung der Resourcendatei war erfolgreich.</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="540"/> + <location filename="Project/ProjectResourcesBrowser.py" line="546"/> <source><p>The compilation of the resource file failed.</p><p>Reason: {0}</p></source> <translation><p>Die Übersetzung der Resourcend ist fehlgeschlagen.</p<p>Grund: {0}</p></translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="550"/> + <location filename="Project/ProjectResourcesBrowser.py" line="556"/> <source>The compilation of the resource file failed.</source> <translation>Die Übersetzung der Resourcendatei ist fehlgeschlagen.</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="625"/> + <location filename="Project/ProjectResourcesBrowser.py" line="631"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="625"/> + <location filename="Project/ProjectResourcesBrowser.py" line="631"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="687"/> + <location filename="Project/ProjectResourcesBrowser.py" line="693"/> <source>Compiling resources...</source> <translation>Übersetze Resourcendateien...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="687"/> + <location filename="Project/ProjectResourcesBrowser.py" line="693"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="753"/> + <location filename="Project/ProjectResourcesBrowser.py" line="759"/> <source>Determining changed resources...</source> <translation>Ermittle veränderte Resourcen...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="786"/> + <location filename="Project/ProjectResourcesBrowser.py" line="792"/> <source>Compiling changed resources...</source> <translation>Übersetze veränderte Resourcen...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="412"/> + <location filename="Project/ProjectResourcesBrowser.py" line="418"/> <source>The file already exists! Overwrite it?</source> <translation>Die Datei existiert bereits. Überschreiben?</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="241"/> + <location filename="Project/ProjectResourcesBrowser.py" line="247"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectResourcesBrowser.py" line="209"/> + <location filename="Project/ProjectResourcesBrowser.py" line="215"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> @@ -34614,207 +34614,207 @@ <context> <name>ProjectSourcesBrowser</name> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="56"/> + <location filename="Project/ProjectSourcesBrowser.py" line="58"/> <source>Sources</source> <translation>Quellen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="58"/> + <location filename="Project/ProjectSourcesBrowser.py" line="60"/> <source><b>Project Sources Browser</b><p>This allows to easily see all sources contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Quelldateien Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Quelldateien an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="380"/> + <location filename="Project/ProjectSourcesBrowser.py" line="382"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="369"/> + <location filename="Project/ProjectSourcesBrowser.py" line="371"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="112"/> + <location filename="Project/ProjectSourcesBrowser.py" line="114"/> <source>Check</source> <translation>Prüfen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="116"/> + <location filename="Project/ProjectSourcesBrowser.py" line="118"/> <source>Code metrics...</source> <translation>Quelltext Metriken...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="117"/> - <source>Code coverage...</source> - <translation>Quelltext Abdeckung...</translation> - </message> - <message> <location filename="Project/ProjectSourcesBrowser.py" line="119"/> + <source>Code coverage...</source> + <translation>Quelltext Abdeckung...</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="121"/> <source>Profile data...</source> <translation>Profildaten...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="115"/> + <location filename="Project/ProjectSourcesBrowser.py" line="117"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="397"/> - <source>Expand all directories</source> - <translation>Alle Verzeichnisse aufklappen</translation> - </message> - <message> <location filename="Project/ProjectSourcesBrowser.py" line="399"/> + <source>Expand all directories</source> + <translation>Alle Verzeichnisse aufklappen</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="401"/> <source>Collapse all directories</source> <translation>Alle Verzeichnisse einklappen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="284"/> - <source>Class Diagram...</source> - <translation>Klassendiagramm...</translation> - </message> - <message> - <location filename="Project/ProjectSourcesBrowser.py" line="283"/> - <source>Diagrams</source> - <translation>Diagramme</translation> - </message> - <message> - <location filename="Project/ProjectSourcesBrowser.py" line="128"/> - <source>Imports Diagram...</source> - <translation>Imports-Diagramm...</translation> - </message> - <message> - <location filename="Project/ProjectSourcesBrowser.py" line="288"/> - <source>Application Diagram...</source> - <translation>Applikations-Diagramm...</translation> - </message> - <message> <location filename="Project/ProjectSourcesBrowser.py" line="286"/> + <source>Class Diagram...</source> + <translation>Klassendiagramm...</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="285"/> + <source>Diagrams</source> + <translation>Diagramme</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="130"/> + <source>Imports Diagram...</source> + <translation>Imports-Diagramm...</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="290"/> + <source>Application Diagram...</source> + <translation>Applikations-Diagramm...</translation> + </message> + <message> + <location filename="Project/ProjectSourcesBrowser.py" line="288"/> <source>Package Diagram...</source> <translation>Package Diagramm...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="774"/> + <location filename="Project/ProjectSourcesBrowser.py" line="776"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="774"/> + <location filename="Project/ProjectSourcesBrowser.py" line="776"/> <source>Please select a coverage file</source> <translation>Bitte wählen sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="828"/> + <location filename="Project/ProjectSourcesBrowser.py" line="830"/> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="828"/> + <location filename="Project/ProjectSourcesBrowser.py" line="830"/> <source>Please select a profile file</source> <translation>Bitte wählen sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="295"/> + <location filename="Project/ProjectSourcesBrowser.py" line="297"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="702"/> + <location filename="Project/ProjectSourcesBrowser.py" line="704"/> <source>Delete files</source> <translation>Dateien löschen</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="702"/> + <location filename="Project/ProjectSourcesBrowser.py" line="704"/> <source>Do you really want to delete these files from the project?</source> <translation>Wollen Sie wirklich diese Dateien aus dem Projekt löschen?</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="137"/> + <location filename="Project/ProjectSourcesBrowser.py" line="139"/> <source>Run unittest...</source> <translation>Modultest...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="384"/> + <location filename="Project/ProjectSourcesBrowser.py" line="386"/> <source>Add source directory...</source> <translation>Quelltextverzeichnis hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="865"/> + <location filename="Project/ProjectSourcesBrowser.py" line="867"/> <source>Class Diagram</source> <translation>Klassendiagramm</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="902"/> + <location filename="Project/ProjectSourcesBrowser.py" line="904"/> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="902"/> + <location filename="Project/ProjectSourcesBrowser.py" line="904"/> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="915"/> + <location filename="Project/ProjectSourcesBrowser.py" line="917"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="915"/> + <location filename="Project/ProjectSourcesBrowser.py" line="917"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="383"/> + <location filename="Project/ProjectSourcesBrowser.py" line="385"/> <source>Add source files...</source> <translation>Quelldateien hinzufügen...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="337"/> + <location filename="Project/ProjectSourcesBrowser.py" line="339"/> <source>New package...</source> <translation>Neues Package...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="644"/> + <location filename="Project/ProjectSourcesBrowser.py" line="646"/> <source>Add new Python package</source> <translation>Füge neues Python Package hinzu</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="631"/> + <location filename="Project/ProjectSourcesBrowser.py" line="633"/> <source><p>The package directory <b>{0}</b> could not be created. Aborting...</p><p>Reason: {1}</p></source> <translation><p>Das Package Verzeichnis <b>{0}</b> konnte nicht angelegt werden. Abbruch...</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="644"/> + <location filename="Project/ProjectSourcesBrowser.py" line="646"/> <source><p>The package file <b>{0}</b> could not be created. Aborting...</p><p>Reason: {1}</p></source> <translation><p>Die Package Datei <b>{0}</b> konnte nicht erzeugt werden. Abbruch...</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="884"/> + <location filename="Project/ProjectSourcesBrowser.py" line="886"/> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="884"/> + <location filename="Project/ProjectSourcesBrowser.py" line="886"/> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="402"/> + <location filename="Project/ProjectSourcesBrowser.py" line="404"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="254"/> + <location filename="Project/ProjectSourcesBrowser.py" line="256"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="330"/> + <location filename="Project/ProjectSourcesBrowser.py" line="332"/> <source>Goto</source> <translation>Gehe zu</translation> </message> <message> - <location filename="Project/ProjectSourcesBrowser.py" line="291"/> + <location filename="Project/ProjectSourcesBrowser.py" line="293"/> <source>Load Diagram...</source> <translation>Diagramm laden...</translation> </message> @@ -34822,187 +34822,187 @@ <context> <name>ProjectTranslationsBrowser</name> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="66"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="72"/> <source>Translations</source> <translation>Übersetzungen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="68"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="74"/> <source><b>Project Translations Browser</b><p>This allows to easily see all translations contained in the current project. Several actions can be executed via the context menu.</p></source> <translation><b>Projekt Übersetzungen Browser</b><p>Dies bietet eine Übersicht aller im Projekt enthaltenen Übersetzungen an. Verschieden Aktionen können über das Kontextmenü ausgeführt werden.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="302"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="308"/> <source>Generate translations</source> <translation>Übersetzungen erzeugen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="309"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="315"/> <source>Generate translations (with obsolete)</source> <translation>Übersetzungen erzeugen (mit überholten Texten)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="321"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="327"/> <source>Release translations</source> <translation>Übersetzungen freigeben</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="328"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="334"/> <source>Remove from project</source> <translation>Aus dem Projekt entfernen</translation> </message> <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="385"/> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="388"/> + <source>Add translation...</source> + <translation>Übersetzung hinzufügen...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="859"/> + <source>Translation file generation</source> + <translation>Übersetzungsdatei erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="854"/> + <source>The generation of the translation files (*.ts) was successful.</source> + <translation>Das Erzeugen der Übersetzungsdateien (*.ts) war erfolgreich.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="859"/> + <source>The generation of the translation files (*.ts) has failed.</source> + <translation>Das Erzeugen der Übersetzungsdateien (*.ts) ist fehlgeschlagen.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1014"/> + <source>Translation file release</source> + <translation>Übersetzungsdatei freigeben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1000"/> + <source>The release of the translation files (*.qm) was successful.</source> + <translation>Die Freigabe der Übersetzungsdatei (*.qm) war erfolgreich.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1014"/> + <source>The release of the translation files (*.qm) has failed.</source> + <translation>Die Freigabe der Übersetzungsdatei (*.qm) ist fehlgeschlagen.</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="284"/> + <source>Open in Qt-Linguist</source> + <translation>Mit Qt-Linguist öffnen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="1080"/> + <source>Process Generation Error</source> + <translation>Fehler beim Prozessstart</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="748"/> + <source>Write temporary project file</source> + <translation>Temporäre Projektdatei schreiben</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="322"/> + <source>Open in Editor</source> + <translation>Mit Editor öffnen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="160"/> + <source>Generate translation</source> + <translation>Übersetzung erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="167"/> + <source>Generate translation (with obsolete)</source> + <translation>Übersetzung erzeugen (mit überholten Texten)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="367"/> + <source>Generate all translations</source> + <translation>Alle Übersetzungen erzeugen</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="373"/> + <source>Generate all translations (with obsolete)</source> + <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="191"/> + <source>Release translation</source> + <translation>Übersetzung freigeben</translation> + </message> + <message> <location filename="Project/ProjectTranslationsBrowser.py" line="379"/> - <source>Delete</source> - <translation>Löschen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="382"/> - <source>Add translation...</source> - <translation>Übersetzung hinzufügen...</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="853"/> - <source>Translation file generation</source> - <translation>Übersetzungsdatei erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="848"/> - <source>The generation of the translation files (*.ts) was successful.</source> - <translation>Das Erzeugen der Übersetzungsdateien (*.ts) war erfolgreich.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="853"/> - <source>The generation of the translation files (*.ts) has failed.</source> - <translation>Das Erzeugen der Übersetzungsdateien (*.ts) ist fehlgeschlagen.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1008"/> - <source>Translation file release</source> - <translation>Übersetzungsdatei freigeben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="994"/> - <source>The release of the translation files (*.qm) was successful.</source> - <translation>Die Freigabe der Übersetzungsdatei (*.qm) war erfolgreich.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1008"/> - <source>The release of the translation files (*.qm) has failed.</source> - <translation>Die Freigabe der Übersetzungsdatei (*.qm) ist fehlgeschlagen.</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="278"/> - <source>Open in Qt-Linguist</source> - <translation>Mit Qt-Linguist öffnen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1074"/> - <source>Process Generation Error</source> - <translation>Fehler beim Prozessstart</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="742"/> - <source>Write temporary project file</source> - <translation>Temporäre Projektdatei schreiben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="316"/> - <source>Open in Editor</source> - <translation>Mit Editor öffnen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="154"/> - <source>Generate translation</source> - <translation>Übersetzung erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="161"/> - <source>Generate translation (with obsolete)</source> - <translation>Übersetzung erzeugen (mit überholten Texten)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="361"/> - <source>Generate all translations</source> - <translation>Alle Übersetzungen erzeugen</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="367"/> - <source>Generate all translations (with obsolete)</source> - <translation>Alle Übersetzungen erzeugen (mit überholten Texten)</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="185"/> - <source>Release translation</source> - <translation>Übersetzung freigeben</translation> - </message> - <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="373"/> <source>Release all translations</source> <translation>Alle Übersetzungen freigeben</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="742"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="748"/> <source><p>The temporary project file <b>{0}</b> could not be written.</p></source> <translation><p>Die temporäre Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="1074"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="1080"/> <source><p>Could not start lrelease.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>lrelease konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="139"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="145"/> <source>Preview translation</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="290"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="296"/> <source>Preview translations</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="610"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="616"/> <source>Delete translation files</source> <translation>Übersetzungsdateien löschen</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="610"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="616"/> <source>Do you really want to delete these translation files from the project?</source> <translation>Wollen Sie wirklich diese Übersetzungsdateien aus dem Projekt löschen?</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="715"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="721"/> <source>No translation files (*.ts) selected.</source> <translation>Keine Überstzungsdateien (*.ts) ausgewählt.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="938"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="944"/> <source>Could not start {0}.<br>Ensure that it is in the search path.</source> <translation>{0} konnte nicht gestartet werden.<br>Stellen sie sicher, dass es sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="350"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="356"/> <source>Preview all translations</source> <translation>Übersetzungsvorschau (alle)</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="384"/> - <source>Add translation files...</source> - <translation>Übersetzungsdateien hinzufügen...</translation> - </message> - <message> <location filename="Project/ProjectTranslationsBrowser.py" line="390"/> + <source>Add translation files...</source> + <translation>Übersetzungsdateien hinzufügen...</translation> + </message> + <message> + <location filename="Project/ProjectTranslationsBrowser.py" line="396"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="354"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="360"/> <source>Extract messages</source> <translation>Texte extrahieren</translation> </message> <message> - <location filename="Project/ProjectTranslationsBrowser.py" line="387"/> + <location filename="Project/ProjectTranslationsBrowser.py" line="393"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> @@ -35010,22 +35010,22 @@ <context> <name>PropertiesDialog</name> <message> - <location filename="Project/PropertiesDialog.py" line="146"/> + <location filename="Project/PropertiesDialog.py" line="148"/> <source>Select project directory</source> <translation>Wähle ein Projektverzeichnis aus</translation> </message> <message> - <location filename="Project/PropertiesDialog.py" line="197"/> + <location filename="Project/PropertiesDialog.py" line="199"/> <source>Select main script file</source> <translation>Wähle die Hauptdatei aus</translation> </message> <message> - <location filename="Project/PropertiesDialog.py" line="102"/> + <location filename="Project/PropertiesDialog.py" line="104"/> <source>The project is version controlled by <b>{0}</b>.</source> <translation>Das Projekt steht unter Versionskontrolle durch <b>{0}</b>.</translation> </message> <message> - <location filename="Project/PropertiesDialog.py" line="107"/> + <location filename="Project/PropertiesDialog.py" line="109"/> <source>The project is not version controlled.</source> <translation>Das Projekt steht nicht unter Versionskontrolle.</translation> </message> @@ -35241,7 +35241,7 @@ <translation>Projekt &Typ:</translation> </message> <message> - <location filename="Project/PropertiesDialog.py" line="195"/> + <location filename="Project/PropertiesDialog.py" line="197"/> <source>Source Files ({0});;All Files (*)</source> <translation>Quelldateien ({0});;Alle Dateien (*)</translation> </message> @@ -35325,22 +35325,22 @@ <context> <name>Purge</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="93"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="99"/> <source>Purge All Files</source> <translation>Alle Dateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="94"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="100"/> <source>Do really want to delete all files not tracked by Mercurial (including ignored ones)?</source> <translation>Wollen sie wirklich alle Dateien, die nicht von Mercurial überwacht werden, inklusive ignorierter Dateien löschen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="97"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="103"/> <source>Purge Files</source> <translation>Dateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="98"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/purge.py" line="104"/> <source>Do really want to delete files not tracked by Mercurial?</source> <translation>Wollen sie wirklich alle Dateien, die nicht von Mercurial überwacht werden, löschen?</translation> </message> @@ -35348,77 +35348,77 @@ <context> <name>PurgeProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="33"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="35"/> <source>Purge Files</source> <translation>Dateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="37"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="39"/> <source>Delete files and directories not known to Mercurial</source> <translation>Dateien und Verzeichnis, die Mercurial unbekannt sind, löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="40"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="42"/> <source><b>Purge Files</b><p>This deletes files and directories not known to Mercurial. That means that purge will delete:<ul><li>unknown files (marked with "not tracked" in the status dialog)</li><li>empty directories</li></ul>Note that ignored files will be left untouched.</p></source> <translation><b>Dateien löschen</b><p>Dies löscht Dateien und Verzeichnis, die Mercurial unbekannt sind. Diese Elemente werden gelöscht:<ul><li>unbekannte Dateien (mit "nicht versioniert" im Statusdialog markiert)</li><li>leere Verzeichnisse</li></ul>Hinweis: Ignorierte Dateien werden nicht berührt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="53"/> <source>Purge All Files</source> <translation>Alle Dateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="56"/> <source>Delete files and directories not known to Mercurial including ignored ones</source> <translation>Dateien und Verzeichnis, die Mercurial unbekannt sind, inklusive ignorierter Dateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="57"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="59"/> <source><b>Purge All Files</b><p>This deletes files and directories not known to Mercurial. That means that purge will delete:<ul><li>unknown files (marked with "not tracked" in the status dialog)</li><li>empty directories</li><li>ignored files and directories</li></ul></p></source> <translation><b>Dateien löschen</b><p>Dies löscht Dateien und Verzeichnis, die Mercurial unbekannt sind. Diese Elemente werden gelöscht:<ul><li>unbekannte Dateien (mit "nicht versioniert" im Statusdialog markiert)</li><li>leere Verzeichnisse</li><li>ignorierte Dateien und Verzeichnisse</li></ul></p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="71"/> <source>List Files to be Purged</source> <translation>Zu löschende Dateien auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="71"/> <source>List Files to be Purged...</source> <translation>Zu löschende Dateien auflisten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="73"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="75"/> <source>List files and directories not known to Mercurial</source> <translation>Liste Dateien und Verzeichnisse, die Mercurial nicht bekannt sind, auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="84"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="86"/> <source>List All Files to be Purged</source> <translation>Alle zu löschenden Dateien auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="84"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="86"/> <source>List All Files to be Purged...</source> <translation>Alle zu löschenden Dateien auflisten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="87"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="89"/> <source>List files and directories not known to Mercurial including ignored ones</source> <translation>Liste Dateien und Verzeichnisse, die Mercurial nicht bekannt sind, inklusive ignorierter Dateien auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="124"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="126"/> <source>Purge</source> <translation>Purge</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="78"/> <source><b>List Files to be Purged</b><p>This lists files and directories not known to Mercurial. These would be deleted by the "Purge Files" menu entry.</p></source> <translation><b>Zu löschende Dateien auflisten</b><p>Dies listet Dateien und Verzeichnisse, die Mercurial nicht bekannt sind, auf. Diese würden über den Menüeintrag "Dateien löschen" gelöscht werden.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="90"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py" line="92"/> <source><b>List All Files to be Purged</b><p>This lists files and directories not known to Mercurial including ignored ones. These would be deleted by the "Purge All Files" menu entry.</p></source> <translation><b>Alle zu löschenden Dateien auflisten</b><p>Dies listet Dateien und Verzeichnisse, die Mercurial nicht bekannt sind, inklusive ignorierter Dateien auf. Diese würden über den Menüeintrag "Alle Dateien löschen" gelöscht werden.</p></translation> </message> @@ -35454,32 +35454,32 @@ <context> <name>PyCoverageDialog</name> <message> - <location filename="DataViews/PyCoverageDialog.py" line="54"/> + <location filename="DataViews/PyCoverageDialog.py" line="56"/> <source>Annotate</source> <translation>Kommentieren</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="56"/> + <location filename="DataViews/PyCoverageDialog.py" line="58"/> <source>Annotate all</source> <translation>Alle kommentieren</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="57"/> + <location filename="DataViews/PyCoverageDialog.py" line="59"/> <source>Delete annotated files</source> <translation>Lösche kommentierte Dateien</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="60"/> + <location filename="DataViews/PyCoverageDialog.py" line="62"/> <source>Erase Coverage Info</source> <translation>Lösche Abdeckungsinfo</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="321"/> + <location filename="DataViews/PyCoverageDialog.py" line="323"/> <source>Annotating files...</source> <translation>Dateien kommentieren...</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="321"/> + <location filename="DataViews/PyCoverageDialog.py" line="323"/> <source>Abort</source> <translation>Abbrechen</translation> </message> @@ -35577,7 +35577,7 @@ <translation>Zeigt den Fortschritt der Quelltextabdeckungsermittlung an</translation> </message> <message> - <location filename="DataViews/PyCoverageDialog.py" line="51"/> + <location filename="DataViews/PyCoverageDialog.py" line="53"/> <source>Open</source> <translation>Öffnen</translation> </message> @@ -35585,62 +35585,62 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="DataViews/PyProfileDialog.py" line="80"/> + <location filename="DataViews/PyProfileDialog.py" line="82"/> <source>Erase Profiling Info</source> <translation>Lösche Profilinformationen</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="82"/> - <source>Erase Timing Info</source> - <translation>Lösche Timinginformationen</translation> - </message> - <message> <location filename="DataViews/PyProfileDialog.py" line="84"/> + <source>Erase Timing Info</source> + <translation>Lösche Timinginformationen</translation> + </message> + <message> + <location filename="DataViews/PyProfileDialog.py" line="86"/> <source>Erase All Infos</source> <translation>Lösche alle Informationen</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="215"/> + <location filename="DataViews/PyProfileDialog.py" line="217"/> <source>Profile Results</source> <translation>Profilergebnisse</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="227"/> + <location filename="DataViews/PyProfileDialog.py" line="229"/> <source>Loading Profiling Data</source> <translation>Profildaten laden</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="199"/> - <source>function calls</source> - <translation>Funktionsaufrufe</translation> - </message> - <message> <location filename="DataViews/PyProfileDialog.py" line="201"/> + <source>function calls</source> + <translation>Funktionsaufrufe</translation> + </message> + <message> + <location filename="DataViews/PyProfileDialog.py" line="203"/> <source>primitive calls</source> <translation>Einfache Aufrufe</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="202"/> + <location filename="DataViews/PyProfileDialog.py" line="204"/> <source>CPU seconds</source> <translation>CPU Zeit (s)</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="315"/> + <location filename="DataViews/PyProfileDialog.py" line="317"/> <source>Exclude Python Library</source> <translation>Python Bibliothek ausblenden</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="311"/> + <location filename="DataViews/PyProfileDialog.py" line="313"/> <source>Include Python Library</source> <translation>Python Bibliothek einblenden</translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="215"/> + <location filename="DataViews/PyProfileDialog.py" line="217"/> <source><p>There is no profiling data available for <b>{0}</b>.</p></source> <translation><p>Es sind keine Profildaten für <b>{0}</b> verfügbar.</p></translation> </message> <message> - <location filename="DataViews/PyProfileDialog.py" line="227"/> + <location filename="DataViews/PyProfileDialog.py" line="229"/> <source><p>The profiling data could not be read from file <b>{0}</b>.</p></source> <translation><p>Die Profildaten konnten nicht aus der Datei <b>{0}</b> gelesen werden.</p></translation> </message> @@ -35724,27 +35724,27 @@ <context> <name>PyRegExpWizard</name> <message> - <location filename="Plugins/PluginWizardPyRegExp.py" line="120"/> + <location filename="Plugins/PluginWizardPyRegExp.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardPyRegExp.py" line="120"/> + <location filename="Plugins/PluginWizardPyRegExp.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardPyRegExp.py" line="73"/> + <location filename="Plugins/PluginWizardPyRegExp.py" line="75"/> <source>Python re Wizard</source> <translation>Python re Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardPyRegExp.py" line="70"/> + <location filename="Plugins/PluginWizardPyRegExp.py" line="72"/> <source>&Python re Wizard...</source> <translation>&Python re Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardPyRegExp.py" line="74"/> + <location filename="Plugins/PluginWizardPyRegExp.py" line="76"/> <source><b>Python re Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a Python re string. The generated code is inserted at the current cursor position.</p></source> <translation><b>Python re Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines regulären Ausdrucks für Python benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -35752,67 +35752,67 @@ <context> <name>PyRegExpWizardCharactersDialog</name> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="43"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="45"/> <source>Normal character</source> <translation>Normales Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="44"/> - <source>Unicode character in hexadecimal notation</source> - <translation>Unicode-Zeichen in Hexadezimal-Schreibweise</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="45"/> - <source>Unicode character in octal notation</source> - <translation>Unicode-Zeichen in Oktal-Schreibweise</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="46"/> - <source>---</source> - <translation>---</translation> + <source>Unicode character in hexadecimal notation</source> + <translation>Unicode-Zeichen in Hexadezimal-Schreibweise</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="47"/> - <source>Bell character (\a)</source> - <translation>Alarmzeichen (\a)</translation> + <source>Unicode character in octal notation</source> + <translation>Unicode-Zeichen in Oktal-Schreibweise</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="48"/> - <source>Page break (\f)</source> - <translation>Seitenvorschub (\f)</translation> + <source>---</source> + <translation>---</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="49"/> - <source>Line feed (\n)</source> - <translation>Zeilenvorschub (\n)</translation> + <source>Bell character (\a)</source> + <translation>Alarmzeichen (\a)</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="50"/> - <source>Carriage return (\r)</source> - <translation>Wagenrücklauf (\r)</translation> + <source>Page break (\f)</source> + <translation>Seitenvorschub (\f)</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="51"/> - <source>Horizontal tabulator (\t)</source> - <translation>horizontaler Tabulator (\t)</translation> + <source>Line feed (\n)</source> + <translation>Zeilenvorschub (\n)</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="52"/> + <source>Carriage return (\r)</source> + <translation>Wagenrücklauf (\r)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="53"/> + <source>Horizontal tabulator (\t)</source> + <translation>horizontaler Tabulator (\t)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="54"/> <source>Vertical tabulator (\v)</source> <translation>vertikaler Tabulator (\v)</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="115"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="117"/> <source>Additional Entries</source> <translation>Weitere Einträge</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="173"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="175"/> <source>Between:</source> <translation>Zwischen:</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="178"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.py" line="180"/> <source>And:</source> <translation>Und:</translation> </message> @@ -36307,192 +36307,192 @@ <context> <name>PyRegExpWizardWidget</name> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="66"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="68"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="67"/> - <source>Save the regular expression to a file</source> - <translation>Speichere den Regulären Ausdruck in einer Datei</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="69"/> + <source>Save the regular expression to a file</source> + <translation>Speichere den Regulären Ausdruck in einer Datei</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="71"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="70"/> - <source>Load a regular expression from a file</source> - <translation>Lade einen Regulären Ausdruck aus einer Datei</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="72"/> + <source>Load a regular expression from a file</source> + <translation>Lade einen Regulären Ausdruck aus einer Datei</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="74"/> <source>Validate</source> <translation>Validieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="73"/> - <source>Validate the regular expression</source> - <translation>Den regulären Ausdruck validieren</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="75"/> + <source>Validate the regular expression</source> + <translation>Den regulären Ausdruck validieren</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="77"/> <source>Execute</source> <translation></translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="76"/> - <source>Execute the regular expression</source> - <translation>Den regulären Ausdruck ausführen</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="78"/> - <source>Next match</source> - <translation>Nächste Position</translation> + <source>Execute the regular expression</source> + <translation>Den regulären Ausdruck ausführen</translation> </message> <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="80"/> + <source>Next match</source> + <translation>Nächste Position</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="82"/> <source>Show the next match of the regular expression</source> <translation>Zeige die nächste Übereinstimmung des Regulären Ausdrucks</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="89"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="91"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="90"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="92"/> <source>Copy the regular expression to the clipboard</source> <translation>Den regulären Ausdruck in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="173"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="175"/> <source>Named reference</source> <translation>Benannte Referenz</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="168"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="170"/> <source>No named groups have been defined yet.</source> <translation>Es wurden noch keine benannten Gruppen erstellt.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="173"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="175"/> <source>Select group name:</source> <translation>Wähle einen Gruppennamen:</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="352"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="354"/> <source>Save regular expression</source> <translation>Sichere den Regulären Ausdruck</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="340"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="342"/> <source>RegExp Files (*.rx);;All Files (*)</source> <translation>RegExp Dateien (*.rx);;Alle Dateien (*)</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="352"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="354"/> <source><p>The regular expression could not be saved.</p><p>Reason: {0}</p></source> <translation><p>Der Reguläre Ausdruck konnte nicht gespeichert werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="340"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="342"/> <source>Load regular expression</source> <translation>Lade einen Regulären Ausdruck</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="395"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="397"/> <source>The regular expression is valid.</source> <translation>Der reguläre Ausdruck ist gültig.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="537"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="539"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/> <source>Invalid regular expression: {0}</source> <translation>Ungültiger regulärer Ausdruck: {0}</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="532"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="534"/> <source>Invalid regular expression: missing group name</source> <translation>Ungültiger regulärer Ausdruck: Gruppenname fehlt</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="410"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="412"/> <source>A regular expression must be given.</source> <translation>Ein regulärer Ausdruck muß eingegeben werden.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="457"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="459"/> <source>Regexp</source> <translation>Regexp</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="465"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="467"/> <source>Offset</source> <translation>Offset</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="471"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="473"/> <source>Captures</source> <translation>Speicherung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="476"/> - <source>Text</source> - <translation>Text</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/> + <source>Text</source> + <translation>Text</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/> <source>Characters</source> <translation>Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="482"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="484"/> <source>Match</source> <translation>Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="493"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="495"/> <source>Capture #{0}</source> <translation>Speicher #{0}</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="510"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="512"/> <source>No more matches</source> <translation>Keine weitere Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="515"/> <source>No matches</source> <translation>Keine Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="537"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="539"/> <source>A regular expression and a text must be given.</source> <translation>Ein regulärer Ausdruck und ein Text müssen eingegeben werden.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="565"/> - <source>Unicode</source> - <translation>Unicode</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/> + <source>Unicode</source> + <translation>Unicode</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="569"/> <source>ASCII</source> <translation>ASCII</translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="317"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="319"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="395"/> + <location filename="Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="397"/> <source>Validation</source> <translation>Validation</translation> </message> @@ -36563,27 +36563,27 @@ <context> <name>QRegExpWizard</name> <message> - <location filename="Plugins/PluginWizardQRegExp.py" line="120"/> + <location filename="Plugins/PluginWizardQRegExp.py" line="122"/> <source>No current editor</source> <translation>Kein aktueller Editor</translation> </message> <message> - <location filename="Plugins/PluginWizardQRegExp.py" line="120"/> + <location filename="Plugins/PluginWizardQRegExp.py" line="122"/> <source>Please open or create a file first.</source> <translation>Bitte öffnen oder erzeugen Sie zuerst eine Datei.</translation> </message> <message> - <location filename="Plugins/PluginWizardQRegExp.py" line="73"/> + <location filename="Plugins/PluginWizardQRegExp.py" line="75"/> <source>QRegExp Wizard</source> <translation>QRegExp Autopilot</translation> </message> <message> - <location filename="Plugins/PluginWizardQRegExp.py" line="70"/> + <location filename="Plugins/PluginWizardQRegExp.py" line="72"/> <source>Q&RegExp Wizard...</source> <translation>Q&RegExp Autopilot...</translation> </message> <message> - <location filename="Plugins/PluginWizardQRegExp.py" line="74"/> + <location filename="Plugins/PluginWizardQRegExp.py" line="76"/> <source><b>QRegExp Wizard</b><p>This wizard opens a dialog for entering all the parameters needed to create a QRegExp. The generated code is inserted at the current cursor position.</p></source> <translation><b>QRegExp Autopilot</b><p>Dieser Autopilot öffnet einen Dialog zur Eingabe der Parameter, die zur Erzeugung eines QRegExp Ausdruckes benötigt werden. Der erzeugte Quelltext wird an der aktuellen Cursorposition eingefügt.</p></translation> </message> @@ -36591,57 +36591,57 @@ <context> <name>QRegExpWizardCharactersDialog</name> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="50"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="52"/> <source>Normal character</source> <translation>Normales Zeichen</translation> </message> <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="67"/> + <source>Unicode character in hexadecimal notation</source> + <translation>Unicode-Zeichen in Hexadezimal-Schreibweise</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="59"/> + <source>Bell character (\a)</source> + <translation>Alarmzeichen (\a)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="60"/> + <source>Page break (\f)</source> + <translation>Seitenvorschub (\f)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="72"/> + <source>Line feed (\n)</source> + <translation>Zeilenvorschub (\n)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="73"/> + <source>Carriage return (\r)</source> + <translation>Wagenrücklauf (\r)</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="74"/> + <source>Horizontal tabulator (\t)</source> + <translation>horizontaler Tabulator (\t)</translation> + </message> + <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="65"/> - <source>Unicode character in hexadecimal notation</source> - <translation>Unicode-Zeichen in Hexadezimal-Schreibweise</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="57"/> - <source>Bell character (\a)</source> - <translation>Alarmzeichen (\a)</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="58"/> - <source>Page break (\f)</source> - <translation>Seitenvorschub (\f)</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="70"/> - <source>Line feed (\n)</source> - <translation>Zeilenvorschub (\n)</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="71"/> - <source>Carriage return (\r)</source> - <translation>Wagenrücklauf (\r)</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="72"/> - <source>Horizontal tabulator (\t)</source> - <translation>horizontaler Tabulator (\t)</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="63"/> <source>Vertical tabulator (\v)</source> <translation>vertikaler Tabulator (\v)</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="143"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="145"/> <source>Additional Entries</source> <translation>Weitere Einträge</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="455"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="457"/> <source>Between:</source> <translation>Zwischen:</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="460"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="462"/> <source>And:</source> <translation>Und:</translation> </message> @@ -36721,672 +36721,672 @@ <translation>Kein Buchstabe für Symbol</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="67"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="69"/> <source>ASCII/Latin1 character in octal notation</source> <translation>ASCII/Latin1-Zeichen in Oktal-Schreibweise</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="75"/> - <source>Character Category</source> - <translation>Zeichen Kategorie</translation> - </message> - <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="76"/> - <source>Character Block</source> - <translation>Zeichen Block</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="77"/> - <source>Not Character Category</source> - <translation>Nicht in Zeichen Kategorie</translation> + <source>Character Category</source> + <translation>Zeichen Kategorie</translation> </message> <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="78"/> + <source>Character Block</source> + <translation>Zeichen Block</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="79"/> + <source>Not Character Category</source> + <translation>Nicht in Zeichen Kategorie</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="80"/> <source>Not Character Block</source> <translation>Nicht in Zeichen Block</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Any</source> <translation>Buchstabe, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Uppercase</source> <translation>Buchstabe, groß</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Lowercase</source> <translation>Buchstabe, klein</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Titlecase</source> <translation>Buchstabe, Überschrift</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Modifier</source> <translation>Buchstabe, Modifizierer</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Letter, Other</source> <translation>Buchstabe, sonstige</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Mark, Any</source> <translation>Zeichen, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Mark, Nonspacing</source> <translation>Zeichen, nicht separierend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Mark, Spacing Combining</source> <translation>Zeichen, separierend und verbindend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Mark, Enclosing</source> <translation>Zeichen, einschließend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Number, Any</source> <translation>Ziffer, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Number, Decimal Digit</source> <translation>Ziffer, dezimal</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Number, Letter</source> <translation>Ziffer, Buchstabe</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Number, Other</source> <translation>Ziffer, sonstige</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Any</source> <translation>Satzzeichen, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Connector</source> <translation>Satzzeichen, verbindend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Dash</source> <translation>Satzzeichen, Bindestrich</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Open</source> <translation>Satzzeichen, öffnend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Close</source> <translation>Satzzeichen, schließend</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Initial Quote</source> <translation>Satzzeichen, öffnende Anführung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Final Quote</source> <translation>Satzzeichen, schließende Anführung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Punctuation, Other</source> <translation>Satzzeichen, sonstige</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Symbol, Any</source> <translation>Symbol, beliebeig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Symbol, Math</source> <translation>Symbol, mathematisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Symbol, Currency</source> <translation>Symbol, Währung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Symbol, Modifier</source> <translation>Symbol, Modifizierer</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Symbol, Other</source> <translation>Symbol, sonstige</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Separator, Any</source> <translation>Trenner, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Separator, Space</source> <translation>Trenner, Leerzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Separator, Line</source> <translation>Trenner, Zeile</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Separator, Paragraph</source> <translation>Trenner, Abschnitt</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Other, Any</source> <translation>Andere, beliebig</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Other, Control</source> <translation>Andere, Steuerzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Other, Format</source> <translation>Andere, Formatierung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Other, Private Use</source> <translation>Andere, private Verwendung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="156"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="158"/> <source>Other, Not Assigned</source> <translation>Andere, nicht zugewiesen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Basic Latin</source> <translation>Latein einfach</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Latin-1 Supplement</source> <translation>Latein-1 Erweiterungen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Latin Extended-A</source> <translation>Latein Erweitert-A</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Latin Extended-B</source> <translation>Latein Erweitert-B</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>IPA Extensions</source> <translation>IPA Erweiterungen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Spacing Modifier Letters</source> <translation>Zeichen zur Abstandsbestimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Combining Diacritical Marks</source> <translation>Kombinierende Diakritische Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Greek</source> <translation>Griechisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Cyrillic</source> <translation>Kyrillisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Armenian</source> <translation>Armenisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Hebrew</source> <translation>Hebräisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Arabic</source> <translation>Arabisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Syriac</source> <translation>Syrisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Thaana</source> <translation>Thaana</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Devanagari</source> <translation>Devanagari</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Bengali</source> <translation>Bengali</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Gurmukhi</source> <translation>Gurmukhi</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Gujarati</source> <translation>Gujarati</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Oriya</source> <translation>Oriya</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Tamil</source> <translation>Tamil</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Telugu</source> <translation>Telugu</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Kannada</source> <translation>Kannada</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Malayalam</source> <translation>Malyisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Sinhala</source> <translation>Sinhala</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Thai</source> <translation>Thai</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Lao</source> <translation>Laotisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Tibetan</source> <translation>Tibetisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Myanmar</source> <translation>Burmesisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Georgian</source> <translation>Georgisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Hangul Jamo</source> <translation>Hangul Jamo</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Ethiopic</source> <translation>Äthiopisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Cherokee</source> <translation>Cherokee-Schrift</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Unified Canadian Aboriginal Syllabics</source> <translation>Vereinheitlichte Silbenzeichen Kanadischer Ureinwohner</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Ogham</source> <translation>Ogham</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Runic</source> <translation>Runen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Khmer</source> <translation>Khmer</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Mongolian</source> <translation>Mongolisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Latin Extended Additional</source> <translation>Latein Zusätzlich Erweitert</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Greek Extended</source> <translation>Griechisch Erweitert</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>General Punctuation</source> <translation>Allg. Zeichensetzung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Superscripts and Subscripts</source> <translation>Hoch- und Tiefgestellte Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Currency Symbols</source> <translation>Währungssymbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Combining Marks for Symbols</source> <translation>Kombinierende Zeichen für Symbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Letterlike Symbols</source> <translation>Buchstabenartige Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Number Forms</source> <translation>Zahlzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Arrows</source> <translation>Pfeile</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Mathematical Operators</source> <translation>Mathematische Operatoren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Miscellaneous Technical</source> <translation>Verschiedene technische Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Control Pictures</source> <translation>Steuergraphiken</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Optical Character Recognition</source> <translation>Optische Zeichenerkennung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Enclosed Alphanumerics</source> <translation>Eingeschlossene Alphanumerische Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Box Drawing</source> <translation>Rahmenzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Block Elements</source> <translation>Blockelemente</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Geometric Shapes</source> <translation>Geometrische Objekte</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Miscellaneous Symbols</source> <translation>Verschiedene Symbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Dingbats</source> <translation>Dingbats</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Braille Patterns</source> <translation>Braillemuster</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Radicals Supplement</source> <translation>CJK Wortstämme Erweitert</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>KangXi Radicals</source> <translation>XangXi Wortstämme</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Ideographic Description Chars</source> <translation>Ideographisch beschreibende Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Symbols and Punctuation</source> <translation>CJK Symbole und Zeichensetzung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Hiragana</source> <translation>Hiragana</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Katakana</source> <translation>Katakana</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Bopomofo</source> <translation>Bopomofo</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Hangul Compatibility Jamo</source> <translation>Hangul Kompatibilität Jamo</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Kanbun</source> <translation>Kanbun</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Bopomofo Extended</source> <translation>Bopomofo Erweitert</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Enclosed CJK Letters and Months</source> <translation>Umschlossene CJK-Buchstaben und Monate</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Compatibility</source> <translation>CJK Kompatibilität</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Unified Ideographs Extension A</source> <translation>CJK Vereinheitlichte Ideografische Erweiterung-A</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Unified Ideographs</source> <translation>CJK Vereinheitlichte Ideographen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Yi Syllables</source> <translation>Yi Silben</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Yi Radicals</source> <translation>Yi Wortstämme</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Hangul Syllables</source> <translation>Hangul Silben</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Private Use</source> <translation>Privater Bereich</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Compatibility Ideographs</source> <translation>CJK Kompatibilitäts Ideographen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Alphabetic Presentation Forms</source> <translation>Alphabetische Darstellungsformen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Arabic Presentation Forms-A</source> <translation>Arabische Darstellungsform-A</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Combining Half Marks</source> <translation>Kombinierende Halbzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Compatibility Forms</source> <translation>CJK Kompatibilitätsformen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Small Form Variants</source> <translation>Kleinzeichen Varianten</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Arabic Presentation Forms-B</source> <translation>Arabische Darstellungsform-B</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Halfwidth and Fullwidth Forms</source> <translation>Halbbreite und Vollbreite Formen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Specials</source> <translation>Sonderzeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Old Italic</source> <translation>Alt Italienisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Gothic</source> <translation>Gothisch</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Deseret</source> <translation>Deseret</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Byzantine Musical Symbols</source> <translation>Byzantinische Musiksymbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Musical Symbols</source> <translation>Musiksymbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Mathematical Alphanumeric Symbols</source> <translation>Mathematische Alphanumerische Symbole</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Unified Ideographic Extension B</source> <translation>CJK Vereinheitlichte Ideografische Erweiterung-B</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>CJK Compatapility Ideographic Supplement</source> <translation>CJK Kompatibilitäts Ideographen Ergänzung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="196"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardCharactersDialog.py" line="198"/> <source>Tags</source> <translation>Marken</translation> </message> @@ -37437,162 +37437,162 @@ <context> <name>QRegExpWizardWidget</name> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="79"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="81"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="80"/> - <source>Save the regular expression to a file</source> - <translation>Speichere den Regulären Ausdruck in einer Datei</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="82"/> + <source>Save the regular expression to a file</source> + <translation>Speichere den Regulären Ausdruck in einer Datei</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="84"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="83"/> - <source>Load a regular expression from a file</source> - <translation>Lade einen Regulären Ausdruck aus einer Datei</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="85"/> + <source>Load a regular expression from a file</source> + <translation>Lade einen Regulären Ausdruck aus einer Datei</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="87"/> <source>Validate</source> <translation>Validieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="86"/> - <source>Validate the regular expression</source> - <translation>Den regulären Ausdruck validieren</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="88"/> + <source>Validate the regular expression</source> + <translation>Den regulären Ausdruck validieren</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="90"/> <source>Execute</source> <translation></translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="89"/> - <source>Execute the regular expression</source> - <translation>Den regulären Ausdruck ausführen</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="91"/> - <source>Next match</source> - <translation>Nächste Position</translation> + <source>Execute the regular expression</source> + <translation>Den regulären Ausdruck ausführen</translation> </message> <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="93"/> + <source>Next match</source> + <translation>Nächste Position</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="95"/> <source>Show the next match of the regular expression</source> <translation>Zeige die nächste Übereinstimmung des Regulären Ausdrucks</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="102"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="104"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="103"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="105"/> <source>Copy the regular expression to the clipboard</source> <translation>Den regulären Ausdruck in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="382"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="384"/> <source>Save regular expression</source> <translation>Sichere den Regulären Ausdruck</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="364"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="366"/> <source>RegExp Files (*.rx);;All Files (*)</source> <translation>RegExp Dateien (*.rx);;Alle Dateien (*)</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="382"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="384"/> <source><p>The regular expression could not be saved.</p><p>Reason: {0}</p></source> <translation><p>Der Reguläre Ausdruck konnte nicht gespeichert werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="364"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="366"/> <source>Load regular expression</source> <translation>Lade einen Regulären Ausdruck</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="417"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="419"/> <source>The regular expression is valid.</source> <translation>Der reguläre Ausdruck ist gültig.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="538"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="540"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="454"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="456"/> <source>Invalid regular expression: {0}</source> <translation>Ungültiger regulärer Ausdruck: {0}</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="427"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="429"/> <source>A regular expression must be given.</source> <translation>Ein regulärer Ausdruck muß eingegeben werden.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="468"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="470"/> <source>Regexp</source> <translation>Regexp</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="475"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="477"/> <source>Offset</source> <translation>Offset</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="480"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="482"/> <source>Captures</source> <translation>Speicherung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="485"/> - <source>Text</source> - <translation>Text</translation> - </message> - <message> <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="487"/> + <source>Text</source> + <translation>Text</translation> + </message> + <message> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="489"/> <source>Characters</source> <translation>Zeichen</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="491"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="493"/> <source>Match</source> <translation>Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="503"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="505"/> <source>Capture #{0}</source> <translation>Speicher #{0}</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="522"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="524"/> <source>No more matches</source> <translation>Keine weitere Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="525"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="527"/> <source>No matches</source> <translation>Keine Übereinstimmung</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="538"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="540"/> <source>A regular expression and a text must be given.</source> <translation>Ein regulärer Ausdruck und ein Text müssen eingegeben werden.</translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="339"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="341"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="417"/> + <location filename="Plugins/WizardPlugins/QRegExpWizard/QRegExpWizardDialog.py" line="419"/> <source>Validation</source> <translation>Validation</translation> </message> @@ -37906,7 +37906,7 @@ <context> <name>QtHelpAccessHandler</name> <message> - <location filename="Helpviewer/Network/QtHelpAccessHandler.py" line="116"/> + <location filename="Helpviewer/Network/QtHelpAccessHandler.py" line="118"/> <source><title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'{0}'</h3></div></source> <translation><title>Fehler 404...</title><div align="center"><br><br><h1>Die Seite konnte nicht gefunden werden.</h1><br><h3>'{0}'</h3></div></translation> </message> @@ -37934,27 +37934,27 @@ <translation>Entfernen</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="76"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="78"/> <source>Add Documentation</source> <translation>Dokumentation hinzufügen</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="57"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="59"/> <source>Qt Compressed Help Files (*.qch)</source> <translation>Qt Hilfe Dateien (*.qch)</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="68"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="70"/> <source>The file <b>{0}</b> is not a valid Qt Help File.</source> <translation>Die Datei <b>{0}</b> ist keine gültige Qt Hilfedatei.</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="76"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="78"/> <source>The namespace <b>{0}</b> is already registered.</source> <translation>Der namensraum <b>{0}</b> ist bereits registriert.</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="107"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="109"/> <source>Remove Documentation</source> <translation>Dokumentation entfernen</translation> </message> @@ -37969,12 +37969,12 @@ <translation>Die ausgewählten Dokumente entfernen</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="94"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="96"/> <source>Do you really want to remove the selected documentation sets from the database?</source> <translation>Sollen die ausgewählten Dokumentationen wirklich entfernt werden?</translation> </message> <message> - <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="107"/> + <location filename="Helpviewer/QtHelpDocumentationDialog.py" line="109"/> <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source> <translation>Einige der geöffneten Dokumente beziehen sich auf die zu entfernende Dokumentation. Das Entfernen der Dokumentation wird diese schließen. Trotzdem löschen?</translation> </message> @@ -38012,12 +38012,12 @@ <translation>Drücken, um den ausgewählten Filter zu löschen</translation> </message> <message> - <location filename="Helpviewer/QtHelpFiltersDialog.py" line="106"/> + <location filename="Helpviewer/QtHelpFiltersDialog.py" line="108"/> <source>Add Filter</source> <translation>Filter hinzufügen</translation> </message> <message> - <location filename="Helpviewer/QtHelpFiltersDialog.py" line="106"/> + <location filename="Helpviewer/QtHelpFiltersDialog.py" line="108"/> <source>Filter name:</source> <translation>Filtername:</translation> </message> @@ -38050,7 +38050,7 @@ <translation>...</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/QtPage.py" line="75"/> + <location filename="Preferences/ConfigurationPages/QtPage.py" line="77"/> <source>Select Qt4 Translations Directory</source> <translation>Wähle Qt4 Übersetzungenverzeichnis</translation> </message> @@ -38080,7 +38080,7 @@ <translation><font color="#FF0000"><b>Hinweis:</b> Diese Einstellung wird erst beim nächsten Programmstart aktiv.</font></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/QtPage.py" line="61"/> + <location filename="Preferences/ConfigurationPages/QtPage.py" line="63"/> <source>Select Qt4 Directory</source> <translation>Wähle das Qt4 Verzeichnis</translation> </message> @@ -38148,177 +38148,177 @@ <context> <name>Queues</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="265"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="271"/> <source>New Patch</source> <translation>Neuer Patch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="315"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="321"/> <source>Update Current Patch</source> <translation>Aktuellen Patch aktualisieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="368"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="374"/> <source>Pop Patches</source> <translation>Pop Patches</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="372"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="378"/> <source>Push Patches</source> <translation>Push Patches</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="376"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="382"/> <source>Go to Patch</source> <translation>zu Patch wechseln</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="509"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="515"/> <source>Select Patch</source> <translation>Patch auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="388"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="394"/> <source>Select the target patch name:</source> <translation>Wählen den Namen des Zielpatches aus:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="509"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="515"/> <source>No patches to select from.</source> <translation>Keine Patches zum Auswählen vorhanden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="440"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="446"/> <source>Finish Applied Patches</source> <translation>Angewandte Patches abschließen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="473"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="479"/> <source>Rename Patch</source> <translation>Patch umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="495"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="501"/> <source>Select the patch to be deleted:</source> <translation>Wähle den zu löschenden Patch aus:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="504"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="510"/> <source>Delete Patch</source> <translation>Patch löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="550"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="556"/> <source>Fold Patches</source> <translation>Patches zusammenfügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="546"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="552"/> <source>No patches selected.</source> <translation>Keine Patches ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="550"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="556"/> <source>No patches available to be folded.</source> <translation>Keine Patches zum Zusammenführen verfügbar.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="575"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="581"/> <source>List Guards</source> <translation>Guards anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="575"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="581"/> <source>No patches available to list guards for.</source> <translation>Keine Patches verfügbar, für die Guards angezeigt werden können.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="612"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="618"/> <source>Define Guards</source> <translation>Guards definieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="657"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="663"/> <source>No patches available to define guards for.</source> <translation>Keine Patches verfügbar, für die Guards definiert werden können.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="657"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="663"/> <source>Drop All Guards</source> <translation>Alle Guards löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="632"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="638"/> <source>Select the patch to drop guards for (leave empty for the current patch):</source> <translation>Patch auswählen dessen Guards gelöscht werden sollen (für aktuellen Patch leer lassen):</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="692"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="698"/> <source>Set Active Guards</source> <translation>Aktive Guards setzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="692"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="698"/> <source>No guards available to select from.</source> <translation>Keine Guards zur Auswahl verfügbar.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="714"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="720"/> <source>Deactivate Guards</source> <translation>Guards deaktivieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="753"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="759"/> <source>Create New Queue</source> <translation>Neue Patchschlange anlegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="755"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="761"/> <source>Rename Active Queue</source> <translation>Aktive Patchschlange umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="790"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="796"/> <source>Error while creating a new queue.</source> <translation>Fehler beim Anlegen einer neuen Patchschlange.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="793"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="799"/> <source>Error while renaming the active queue.</source> <translation>Fehler beim Umbenennen der aktiven Patchschlange.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="820"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="826"/> <source>Purge Queue</source> <translation>Patchschlange säubern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="822"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="828"/> <source>Delete Queue</source> <translation>Patchschlange löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="824"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="830"/> <source>Activate Queue</source> <translation>Patchschlange aktivieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="862"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="868"/> <source>Error while purging the queue.</source> <translation>Fehler beim Säubern der Patchschlange.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="864"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="870"/> <source>Error while deleting the queue.</source> <translation>Fehler beim Löschen der Patchschlange.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="866"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="872"/> <source>Error while setting the active queue.</source> <translation>Fehler beim Setzen der aktiven Patchschlange.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="890"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/queues.py" line="896"/> <source>Available Queues</source> <translation>Verfügbare Patchschlangen</translation> </message> @@ -38326,617 +38326,617 @@ <context> <name>QueuesProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="34"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="36"/> <source>New Patch</source> <translation>Neuer Patch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="34"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="36"/> <source>New Patch...</source> <translation>Neuer Patch...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="37"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="39"/> <source>Create a new patch</source> <translation>Erzeuge einen neuen Patch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="40"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="42"/> <source><b>New Patch</b><p>This creates a new named patch.</p></source> <translation><b>Neuer Patch</b><p>Dies erzeugt einen neuen benannten Patch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="47"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="49"/> <source>Update Current Patch</source> <translation>Aktuellen Patch aktualisieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="50"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="52"/> <source>Update the current patch</source> <translation>Aktualisiert den aktuellen Patch</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="53"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="55"/> <source><b>Update Current Patch</b><p>This updates the current patch.</p></source> <translation><b>Aktuellen Patch aktualisieren</b><p>Dies aktualisiert den aktuellen Patch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="60"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="62"/> <source>Update Current Patch (with Message)</source> <translation>Aktuellen Patch aktualisieren (mit Nachricht)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="64"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="66"/> <source>Update the current patch and edit commit message</source> <translation>Aktualisiert den aktuellen Patch und bearbeitet die Änderungsbeschreibung</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="67"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="69"/> <source><b>Update Current Patch (with Message)</b><p>This updates the current patch after giving the chance to change the current commit message.</p></source> <translation><b>Aktuellen Patch aktualisieren (mit Nachricht)</b><p>Die aktualisiert den aktuellen Patch und gibt die Möglichkeit, die aktuelle Änderungsbeschreibung zu bearbeiten.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="78"/> <source>Show Current Patch</source> <translation>Aktuellen Patch anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="78"/> <source>Show Current Patch...</source> <translation>Aktuellen Patch anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="79"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="81"/> <source>Show the contents the current patch</source> <translation>Zeigt den Inhalt des aktuellen Patches an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="84"/> <source><b>Show Current Patch</b><p>This shows the contents of the current patch including any changes which have been made in the working directory since the last refresh.</p></source> <translation><b>Aktuellen Patch anzeigen</b><p>Dies zeigt den Inhalt des aktuellen Patches inklusive aller Änderungen, die seit der letzten Aktualisierung im Arbeitsverzeichnis vorgenommen wurde, an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="91"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="93"/> <source>Show Current Message</source> <translation>Aktuelle Nachricht anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="91"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="93"/> <source>Show Current Message...</source> <translation>Aktuelle Nachricht anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="94"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="96"/> <source>Show the commit message of the current patch</source> <translation>Zeigt die Änderungsbeschreibung des aktuellen Patches an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="97"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="99"/> <source><b>Show Current Message</b><p>This shows the commit message of the current patch.</p></source> <translation><b>Aktuelle Nachricht anzeigen</b><p>Dies zeigt die Änderungsbeschreibung des aktuellen Patches an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="104"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="106"/> <source>List Patches</source> <translation>Patches auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="104"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="106"/> <source>List Patches...</source> <translation>Listen der Patches...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="107"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="109"/> <source>List applied and unapplied patches</source> <translation>Listet angewandte und nicht angewandte Patches auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="117"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="119"/> <source>Finish Applied Patches</source> <translation>Angwandte Patches abschließen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="120"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="122"/> <source>Finish applied patches</source> <translation>Angewandte Patches abschließen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="123"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="125"/> <source><b>Finish Applied Patches</b><p>This finishes the applied patches by moving them out of mq control into regular repository history.</p></source> <translation><b>Angwandte Patches abschließen</b><p>Dies schließt die angewandten Patches ab und verschiebt sie aus der Kontrolle vom mq in die normale Repositoryhistorie.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="131"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="133"/> <source>Rename Patch</source> <translation>Patch umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="134"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="136"/> <source>Rename a patch</source> <translation>Einen Patch umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="137"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="139"/> <source><b>Rename Patch</b><p>This renames the current or a named patch.</p></source> <translation><b>Patch umbenennen</b><p>Dies nennt den aktuellen oder einen benannten Patch um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="144"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="146"/> <source>Delete Patch</source> <translation>Patch löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="147"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="149"/> <source>Delete unapplied patch</source> <translation>Nicht angwandten Patch löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="150"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="152"/> <source><b>Delete Patch</b><p>This deletes an unapplied patch.</p></source> <translation><b>Patch löschen</b><p>Dies löscht einen nicht angwandten Patch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="157"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="159"/> <source>Fold Patches</source> <translation>Patches zusammenfügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="160"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="162"/> <source>Fold unapplied patches into the current patch</source> <translation>Nicht angwandte Patches mit dem aktuellen Patch zusammenführen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="163"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="165"/> <source><b>Fold Patches</b><p>This folds unapplied patches into the current patch.</p></source> <translation><b>Patches zusammenfügen</b><p>Dies führt nicht angewandte Patches mit dem aktuellen Patch zusammen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="277"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="279"/> <source>Push Next Patch</source> <translation>Nächsten Patch pushen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="182"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="184"/> <source>Push the next patch onto the stack</source> <translation>Schiebt den nächsten Patch auf den Stack</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="185"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="187"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches.</p></source> <translation><b>Nächsten Patch pushen</b><p>Dies schiebt den nächsten Patch auf den Stapel angewandter Patches.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="291"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="293"/> <source>Push All Patches</source> <translation>Alle Patches pushen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="195"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="197"/> <source>Push all patches onto the stack</source> <translation>Schiebt alle Patches auf den Stack</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="198"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="200"/> <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches.</p></source> <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="306"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="308"/> <source>Push Patches</source> <translation>Patches pushen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="208"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="210"/> <source>Push patches onto the stack</source> <translation>Schiebt Patches auf den Stack</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="321"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="323"/> <source>Pop Current Patch</source> <translation>Aktuellen Patch popen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="222"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="224"/> <source>Pop the current patch off the stack</source> <translation>Holt den aktuellen Patch vom Stapel</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="225"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="227"/> <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches.</p></source> <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="335"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="337"/> <source>Pop All Patches</source> <translation>Alle Patches popen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="235"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="237"/> <source>Pop all patches off the stack</source> <translation>Holt allen Patches vom Stapel</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="238"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="240"/> <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches.</p></source> <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="350"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="352"/> <source>Pop Patches</source> <translation>Patches popen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="248"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="250"/> <source>Pop patches off the stack</source> <translation>Holt Patches vom Stapel</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="251"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="253"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation><b>Patches popen</b><p>Dies holt Patches vom Stapel angewandter Patches bis ein benannter Patch zuoberst liegt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="364"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="366"/> <source>Go to Patch</source> <translation>Zu Patch wechseln</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="262"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="264"/> <source>Push or pop patches until named patch is at top of stack</source> <translation>Schiebt Patches auf den Stapel oder holt sie herunter bis ein benannter Patch zuoberst liegt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="265"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="267"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack.</p></source> <translation><b>Zu Patch wechseln</b><p>Dies schiebt Patches auf den Stapel oder holt sie herunter bis ein benannter Patch zuoberst liegt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="280"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="282"/> <source>Push the next patch onto the stack on top of local changes</source> <translation>Schiebt den nächsten Patch auf den Stack unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="283"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="285"/> <source><b>Push Next Patch</b><p>This pushes the next patch onto the stack of applied patches on top of local changes.</p></source> <translation><b>Nächsten Patch pushen</b><p>Dies schiebt den nächsten Patch auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="294"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="296"/> <source>Push all patches onto the stack on top of local changes</source> <translation>Schiebt alle Patches auf den Stack unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="297"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="299"/> <source><b>Push All Patches</b><p>This pushes all patches onto the stack of applied patches on top of local changes.</p></source> <translation><b>Alle Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="309"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="311"/> <source>Push patches onto the stack on top of local changes</source> <translation>Schiebt Patches auf den Stack unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="312"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="314"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack on top of local changes.</p></source> <translation><b>Patches pushen</b><p>Dies schiebt alle Patches auf den Stapel angewandter Patches bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="324"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="326"/> <source>Pop the current patch off the stack forgetting local changes</source> <translation>Holt den aktuellen Patch vom Stapel unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="327"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="329"/> <source><b>Pop Current Patch</b><p>This pops the current patch off the stack of applied patches forgetting local changes.</p></source> <translation><b>Aktuellen Patch popen</b><p>Dies holt den aktuellen Patch vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="338"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="340"/> <source>Pop all patches off the stack forgetting local changes</source> <translation>Holt allen Patches vom Stapel unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="341"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="343"/> <source><b>Pop All Patches</b><p>This pops all patches off the stack of applied patches forgetting local changes.</p></source> <translation><b>Alle Patches popen</b><p>Dies holt alle Patches vom Stapel angewandter Patches unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="353"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="355"/> <source>Pop patches off the stack forgetting local changes</source> <translation>Holt Patches vom Stapel unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="356"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="358"/> <source><b>Pop Patches</b><p>This pops patches off the stack of applied patches until a named patch is at the top of the stack forgetting local changes.</p></source> <translation><b>Patches popen</b><p>Dies holt Patches vom Stapel angewandter Patches bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="367"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="369"/> <source>Push or pop patches until named patch is at top of stack overwriting any local changes</source> <translation>Schiebt Patches auf den Stapel oder holt sie herunter bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="371"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="373"/> <source><b>Go to Patch</b><p>This pushes or pops patches until a named patch is at the top of the stack overwriting any local changes.</p></source> <translation><b>Zu Patch wechseln</b><p>Dies schiebt Patches auf den Stapel oder holt sie herunter bis ein benannter Patch zuoberst liegt unabhängig von lokalen Änderungen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="656"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="658"/> <source>Queues</source> <translation>Patchschlangen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="578"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="580"/> <source>Push/Pop</source> <translation>Push/Pop</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="590"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="592"/> <source>Push/Pop (force)</source> <translation>Push/Pop (force)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="110"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="112"/> <source><b>List Patches</b><p>This lists all applied and unapplied patches.</p></source> <translation><b>Patches auflisten</b><p>Dies listet alle angewandten und nicht angewandten Patches auf.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="211"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="213"/> <source><b>Push Patches</b><p>This pushes patches onto the stack of applied patches until a named patch is at the top of the stack.</p></source> <translation><b>Patches pushen</b><p>Dies schiebt Patches auf den Stapel angewandter Patches bis ein benannter Patch zuoberst liegt.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="386"/> <source>Define Guards</source> <translation>Guards definieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="384"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="386"/> <source>Define Guards...</source> <translation>Guards definieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="387"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="389"/> <source>Define guards for the current or a named patch</source> <translation>Guards für den aktuellen oder benannten Patch definieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="390"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="392"/> <source><b>Define Guards</b><p>This opens a dialog to define guards for the current or a named patch.</p></source> <translation><b>Guards definieren</b><p>Dies öffnet einen Dialog zur Definition von Guards für den aktuellen oder einen benannten Patch.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="398"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> <source>Drop All Guards</source> <translation>Alle Guards löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="398"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="400"/> <source>Drop All Guards...</source> <translation>Alle Guards löschen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="401"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="403"/> <source>Drop all guards of the current or a named patch</source> <translation>Alle Guards des aktuellen oder eines benannten Patches löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="404"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="406"/> <source><b>Drop All Guards</b><p>This drops all guards of the current or a named patch.</p></source> <translation><b>Alle Guards löschen</b><p>Dies löscht alle Guards des aktuellen oder eines benannten Patches.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="411"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="413"/> <source>List Guards</source> <translation>Guards anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="411"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="413"/> <source>List Guards...</source> <translation>Guards anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="414"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="416"/> <source>List guards of the current or a named patch</source> <translation>Zeigt Guards des aktuellen oder eines benannten Patches an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="417"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="419"/> <source><b>List Guards</b><p>This lists the guards of the current or a named patch.</p></source> <translation><b>Guards anzeigen</b><p>Dies zeigt Guards des aktuellen oder eines benannten Patches an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="424"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="426"/> <source>List All Guards</source> <translation>Alle Guards anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="424"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="426"/> <source>List All Guards...</source> <translation>Alle Guards anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="427"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="429"/> <source>List all guards of all patches</source> <translation>Zeigt alle Guards aller Patches an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="430"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="432"/> <source><b>List All Guards</b><p>This lists all guards of all patches.</p></source> <translation><b>Alle Guards anzeigen</b><p>Dies zeigt alle Guards aller Patches an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="439"/> <source>Set Active Guards</source> <translation>Aktive Guards setzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="437"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="439"/> <source>Set Active Guards...</source> <translation>Aktive Guards setzen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="440"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="442"/> <source>Set the list of active guards</source> <translation>Setzt die Liste aktiver Guards</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="443"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="445"/> <source><b>Set Active Guards</b><p>This opens a dialog to set the active guards.</p></source> <translation><b>Aktive Guards setzen</b><p>Dies öffnet einen Dialog, um die Liste aktiver Guards zu setzen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="452"/> <source>Deactivate Guards</source> <translation>Guards deaktivieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="450"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="452"/> <source>Deactivate Guards...</source> <translation>Guards deaktivieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="453"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="455"/> <source>Deactivate all active guards</source> <translation>Alle Guards deaktivieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="456"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="458"/> <source><b>Deactivate Guards</b><p>This deactivates all active guards.</p></source> <translation><b>Guards deaktivieren</b><p>Dies deaktiviert alle Guards.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="466"/> <source>Identify Active Guards</source> <translation>Aktive Guards anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="464"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="466"/> <source>Identify Active Guards...</source> <translation>Aktive Guards anzeigen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="468"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="470"/> <source>Show a list of active guards</source> <translation>Zeigt eine Liste aktiver Guards</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="471"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="473"/> <source><b>Identify Active Guards</b><p>This opens a dialog showing a list of active guards.</p></source> <translation><b>Aktive Guards anzeigen</b><p>Dies öffnet einen Dialog zur Anzeige einer Liste aktiver Guards.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="602"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="604"/> <source>Guards</source> <translation>Guards</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="483"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="485"/> <source>Create Queue</source> <translation>Patchschlange anlegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="486"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="488"/> <source>Create a new patch queue</source> <translation>Erzeugt eine neue Patchschlange</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="489"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="491"/> <source><b>Create Queue</b><p>This creates a new patch queue.</p></source> <translation><b>Patchschlange anlegen</b><p>Dies erzeugt eine neue Patchschlange.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="497"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="499"/> <source>Rename Queue</source> <translation>Patchschlange umbenennen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="500"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="502"/> <source>Rename the active patch queue</source> <translation>Benennt die aktive Patchschlange um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="503"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="505"/> <source><b>Rename Queue</b><p>This renames the active patch queue.</p></source> <translation><b>Patchschlange umbenennen</b><p>Dies benennt die aktive Patchschlange um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="511"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="513"/> <source>Delete Queue</source> <translation>Patchschlange löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="514"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="516"/> <source>Delete the reference to a patch queue</source> <translation>Löscht die Referenz auf eine Patchschlange</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="517"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="519"/> <source><b>Delete Queue</b><p>This deletes the reference to a patch queue.</p></source> <translation><b>Patchschlange löschen</b><p>Dies löscht die Referenz auf eine Patchschlange.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="525"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="527"/> <source>Purge Queue</source> <translation>Patchschlange säubern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="528"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="530"/> <source>Delete the reference to a patch queue and remove the patch directory</source> <translation>Löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="531"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="533"/> <source><b>Purge Queue</b><p>This deletes the reference to a patch queue and removes the patch directory.</p></source> <translation><b>Patchschlange säubern</b><p>Dies löscht die Referenz auf eine Patchschlange und entfernt das Patchverzeichnis.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="540"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="542"/> <source>Activate Queue</source> <translation>Patchschlange aktivieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="543"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="545"/> <source>Set the active queue</source> <translation>Setzt die aktive Patchschlange</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="546"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="548"/> <source><b>Activate Queue</b><p>This sets the active queue.</p></source> <translation><b>Patchschlange aktivieren</b><p>Dies setzt die aktive Patchschlange.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="554"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="556"/> <source>List Queues</source> <translation>Patchschlangen auflisten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="554"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="556"/> <source>List Queues...</source> <translation>Patchschlangen auflisten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="557"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="559"/> <source>List the available queues</source> <translation>Listet die verfügbaren Patchschlangen auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="560"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="562"/> <source><b>List Queues</b><p>This opens a dialog showing all available queues.</p></source> <translation><b>Patchschlangen auflisten</b><p>Dies öffnet einen Dialog zur Anzeige aller verfügbaren Patchschlangen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="615"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="617"/> <source>Queue Management</source> <translation>Patchschlangenverwaltung</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="712"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="714"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="712"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/QueuesExtension/ProjectHelper.py" line="714"/> <source>Changing Applied Patches</source> <translation>Angewandte Patches ändern</translation> </message> @@ -38944,17 +38944,17 @@ <context> <name>Rebase</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="79"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="81"/> <source>Rebase Changesets</source> <translation>Änderungssätze umgruppieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="106"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="108"/> <source>Rebase Changesets (Continue)</source> <translation>Änderungssätze umgruppieren (Fortsetzung)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="133"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/rebase.py" line="135"/> <source>Rebase Changesets (Abort)</source> <translation>Änderungssätze umgruppieren (Abbruch)</translation> </message> @@ -38962,67 +38962,67 @@ <context> <name>RebaseProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="108"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="110"/> <source>Rebase Changesets</source> <translation>Änderungssätze umgruppieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="38"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="40"/> <source>Rebase changesets to another branch</source> <translation>Änderungssätze in einen anderen Zweig umgruppieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="41"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="43"/> <source><b>Rebase Changesets</b><p>This rebases changesets to another branch.</p></source> <translation><b>Änderungssätze umgruppieren</b><p>Dies gruppiert Änderungssätze in einen anderen Zweig um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="48"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="50"/> <source>Continue Rebase Session</source> <translation>Umgruppierungssitzung fortsetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="52"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="54"/> <source>Continue the last rebase session after repair</source> <translation>Setzt die letzte Umgruppierungssitzung nach Reparatur fort</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="55"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="57"/> <source><b>Continue Rebase Session</b><p>This continues the last rebase session after repair.</p></source> <translation><b>Umgruppierungssitzung fortsetzen</b><p>Dies setzt die letzte Umgruppierungssitzung nach Reparatur fort.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="62"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="64"/> <source>Abort Rebase Session</source> <translation>Umgruppierungssitzung abbrechen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="66"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="68"/> <source>Abort the last rebase session</source> <translation>Bricht die letzte Umgruppierungssitzung ab</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="71"/> <source><b>Abort Rebase Session</b><p>This aborts the last rebase session.</p></source> <translation><b>Umgruppierungssitzung abbrechen</b><p>Dies bricht die letzte Umgruppierungssitzung ab.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="101"/> <source>Rebase</source> <translation>Umgruppieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="136"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="138"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="122"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="124"/> <source>Rebase Changesets (Continue)</source> <translation>Änderungssätze umgruppieren (Fortsetzung)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="136"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/RebaseExtension/ProjectHelper.py" line="138"/> <source>Rebase Changesets (Abort)</source> <translation>Änderungssätze umgruppieren (Abbruch)</translation> </message> @@ -39103,34 +39103,34 @@ <context> <name>SafariImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="38"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="40"/> <source>Apple Safari stores its bookmarks in the <b>Bookmarks.plist</b> file. This file is usually located in</source> <translation>Apple Safari speichert die Lesezeichen in der Datei <b>Bookmarks.plist</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="38"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="40"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="84"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="86"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="99"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="101"/> <source>Bookmarks file cannot be read. Reason: {0}</source> <translation>Lesezeichendatei '{0}' kann nicht gelesen werden. Ursache: {1}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="110"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="112"/> <source>Apple Safari Import</source> <translation>Apple Safari Import</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="112"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/SafariImporter.py" line="114"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> @@ -39138,32 +39138,32 @@ <context> <name>SearchReplaceWidget</name> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="516"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="518"/> <source>'{0}' was not found.</source> <translation>'{0}' wurde nicht gefunden.</translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="592"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="594"/> <source>Replaced {0} occurrences.</source> <translation>{0} Vorkommen ersetzt.</translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="596"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="598"/> <source>Nothing replaced because '{0}' was not found.</source> <translation>Es wurde nichts ersetzt, da '{0}' nicht gefunden wurde.</translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="130"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="132"/> <source>Find Next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="137"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="139"/> <source>Find Prev</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="55"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="57"/> <source> <b>Find and Replace</b> <p>This dialog is used to find some text and replace it with another text. @@ -39177,7 +39177,7 @@ kann ein regulärer Ausdruck sein. In einem regulären Ausdruck können folgende Spezialzeichen verwendet werden:</p></translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="66"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="68"/> <source> <b>Find</b> <p>This dialog is used to find some text. By checking the various checkboxes, the search @@ -39190,7 +39190,7 @@ kann ein regulärer Ausdruck sein. In einem regulären Ausdruck können folgende Spezialzeichen verwendet werden:</p></translation> </message> <message> - <location filename="QScintilla/SearchReplaceWidget.py" line="77"/> + <location filename="QScintilla/SearchReplaceWidget.py" line="79"/> <source> <table border="0"> <tr><td><code>.</code></td><td>Matches any character</td></tr> @@ -39313,7 +39313,7 @@ <translation>nur Auswahl</translation> </message> <message> - <location filename="Helpviewer/SearchWidget.py" line="91"/> + <location filename="Helpviewer/SearchWidget.py" line="93"/> <source>Expression was not found.</source> <translation>Ausdruck nicht gefunden.</translation> </message> @@ -39323,7 +39323,7 @@ <translation>Alle hervorheben</translation> </message> <message> - <location filename="UI/SearchWidget.py" line="171"/> + <location filename="UI/SearchWidget.py" line="173"/> <source>'{0}' was not found.</source> <translation>'{0}' wurde nicht gefunden.</translation> </message> @@ -39389,7 +39389,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="Helpviewer/Network/SendRefererWhitelistDialog.py" line="49"/> + <location filename="Helpviewer/Network/SendRefererWhitelistDialog.py" line="51"/> <source>Send Referer Whitelist</source> <translation>Referer Whitelist</translation> </message> @@ -39429,7 +39429,7 @@ <translation>&Alle entfernen</translation> </message> <message> - <location filename="Helpviewer/Network/SendRefererWhitelistDialog.py" line="49"/> + <location filename="Helpviewer/Network/SendRefererWhitelistDialog.py" line="51"/> <source>Enter host name to add to the whitelist:</source> <translation>Gib den hinzuzufügenden Hostnamen ein:</translation> </message> @@ -39437,141 +39437,141 @@ <context> <name>Shell</name> <message> - <location filename="QScintilla/Shell.py" line="112"/> + <location filename="QScintilla/Shell.py" line="114"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="219"/> - <source>Clear</source> - <translation>Löschen</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="220"/> - <source>Reset</source> - <translation>Zurücksetzen</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="110"/> - <source>Shell - Passive</source> - <translation>Shell - Passiv</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="181"/> - <source>Passive >>> </source> - <translation>Passiv >>> </translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="213"/> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="214"/> - <source>Paste</source> - <translation>Einfügen</translation> - </message> - <message> <location filename="QScintilla/Shell.py" line="221"/> + <source>Clear</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="222"/> + <source>Reset</source> + <translation>Zurücksetzen</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="112"/> + <source>Shell - Passive</source> + <translation>Shell - Passiv</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="183"/> + <source>Passive >>> </source> + <translation>Passiv >>> </translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="215"/> + <source>Copy</source> + <translation>Kopieren</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="216"/> + <source>Paste</source> + <translation>Einfügen</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="223"/> <source>Reset and Clear</source> <translation>Zurücksetzen und Löschen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1494"/> + <location filename="QScintilla/Shell.py" line="1496"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="610"/> - <source>No.</source> - <translation>Nr.</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="1494"/> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> ist keine Datei.</p></translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="196"/> - <source>Start</source> - <translation>Starten</translation> - </message> - <message> <location filename="QScintilla/Shell.py" line="612"/> + <source>No.</source> + <translation>Nr.</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="1496"/> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> ist keine Datei.</p></translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="198"/> + <source>Start</source> + <translation>Starten</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="614"/> <source>{0} on {1}, {2}</source> <translation>{0} auf {1}, {2}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="114"/> + <location filename="QScintilla/Shell.py" line="116"/> <source><b>The Shell Window</b><p>This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.</p><p>You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys. Pressing the up or down key after some text has been entered will start an incremental search.</p><p>The shell has some special commands. 'reset' kills the shell and starts a new one. 'clear' clears the display of the shell window. 'start' is used to switch the shell language and must be followed by a supported language. Supported languages are listed by the 'languages' command. These commands (except 'languages') are available through the context menu as well.</p><p>Pressing the Tab key after some text has been entered will show a list of possible commandline completions. The relevant entry may be selected from this list. If only one entry is available, this will inserted automatically.</p><p>In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.</p></source> <translation><b>Das Shell-Fenster</b><p>Dies ist ein Interpreter ihres Systems. Es ist derjenige der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass sie jedes Python Kommando ausführend können, auch während ihr Programm läuft.</p><p>Benutzen sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine History-Funktion, die mit der Cursortasten hoch und runter bedient wird. Eine inkrementelle Suche wird gestartet, indem die Cursortasten hoch und runter nach Eingabe von Text gedrückt werden.</p><p>Die Shell hat einige spezielle Kommandos. 'reset' beendet den Interpreter und startet einen neuen. 'clear' löscht die Anzeige des Shell Fensters. 'start' wird benutzt, um die Sprache der Shell umzuschalten, und muß von einer unterstützten Sprache gefolgt werden. Unterstützte Sprachen werden durch 'languages' aufgelistet. Diese Befehle (Ausnahme 'languages') sind auch über das Kontextmenu verfügbar.</p><p>Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.</p><p>Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.</p></translation> </message> <message> - <location filename="QScintilla/Shell.py" line="1224"/> + <location filename="QScintilla/Shell.py" line="1226"/> <source>Shell language "{0}" not supported. </source> <translation>Die Shell Sprache "{0}" wird nicht unterstützt. </translation> </message> <message> - <location filename="QScintilla/Shell.py" line="607"/> + <location filename="QScintilla/Shell.py" line="609"/> <source>Passive Debug Mode</source> <translation>Passiver Debugmodus</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="673"/> + <location filename="QScintilla/Shell.py" line="675"/> <source>StdOut: {0}</source> <translation>StdOut: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="681"/> + <location filename="QScintilla/Shell.py" line="683"/> <source>StdErr: {0}</source> <translation>StdErr: {0}</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="205"/> - <source>History</source> - <translation>Historie</translation> - </message> - <message> - <location filename="QScintilla/Shell.py" line="206"/> - <source>Select entry</source> - <translation>Eintrag auswählen</translation> - </message> - <message> <location filename="QScintilla/Shell.py" line="207"/> + <source>History</source> + <translation>Historie</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="208"/> + <source>Select entry</source> + <translation>Eintrag auswählen</translation> + </message> + <message> + <location filename="QScintilla/Shell.py" line="209"/> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="557"/> + <location filename="QScintilla/Shell.py" line="559"/> <source>Select History</source> <translation>Eintrag auswählen</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="557"/> + <location filename="QScintilla/Shell.py" line="559"/> <source>Select the history entry to execute (most recent shown last).</source> <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="608"/> + <location filename="QScintilla/Shell.py" line="610"/> <source> Not connected</source> <translation> nicht verbunden</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="226"/> + <location filename="QScintilla/Shell.py" line="228"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="212"/> + <location filename="QScintilla/Shell.py" line="214"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="QScintilla/Shell.py" line="217"/> + <location filename="QScintilla/Shell.py" line="219"/> <source>Find</source> <translation>Suchen</translation> </message> @@ -39808,22 +39808,22 @@ <context> <name>Shortcuts</name> <message> - <location filename="Preferences/Shortcuts.py" line="200"/> + <location filename="Preferences/Shortcuts.py" line="202"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> <message> - <location filename="Preferences/Shortcuts.py" line="229"/> + <location filename="Preferences/Shortcuts.py" line="231"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="Preferences/Shortcuts.py" line="229"/> + <location filename="Preferences/Shortcuts.py" line="231"/> <source><p>The keyboard shortcuts could not be read from file <b>{0}</b>.</p></source> <translation><p>Die Tastaturkurzbefehle konnten nicht aus der Datei <b>{0}</b> gelesen werden.</p></translation> </message> <message> - <location filename="Preferences/Shortcuts.py" line="200"/> + <location filename="Preferences/Shortcuts.py" line="202"/> <source><p>The keyboard shortcuts could not be written to file <b>{0}</b>.</p></source> <translation><p>Die Tastaturkurzbefehle konnten nicht in die Datei <b>{0}</b> geschrieben werden.</p></translation> </message> @@ -39831,77 +39831,77 @@ <context> <name>ShortcutsDialog</name> <message> - <location filename="Preferences/ShortcutsDialog.py" line="117"/> + <location filename="Preferences/ShortcutsDialog.py" line="119"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="121"/> + <location filename="Preferences/ShortcutsDialog.py" line="123"/> <source>General</source> <translation>Allgemein</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="129"/> + <location filename="Preferences/ShortcutsDialog.py" line="131"/> <source>Debug</source> <translation>Debug</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="125"/> + <location filename="Preferences/ShortcutsDialog.py" line="127"/> <source>Wizards</source> <translation>Autopiloten</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="133"/> + <location filename="Preferences/ShortcutsDialog.py" line="135"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="137"/> + <location filename="Preferences/ShortcutsDialog.py" line="139"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="141"/> + <location filename="Preferences/ShortcutsDialog.py" line="143"/> <source>Search</source> <translation>Suchen</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="145"/> + <location filename="Preferences/ShortcutsDialog.py" line="147"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="163"/> + <location filename="Preferences/ShortcutsDialog.py" line="165"/> <source>Window</source> <translation>Fenster</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="328"/> + <location filename="Preferences/ShortcutsDialog.py" line="330"/> <source>Edit shortcuts</source> <translation>Kurzbefehle bearbeiten</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="149"/> + <location filename="Preferences/ShortcutsDialog.py" line="151"/> <source>Macro</source> <translation>Makro</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="153"/> + <location filename="Preferences/ShortcutsDialog.py" line="155"/> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="294"/> + <location filename="Preferences/ShortcutsDialog.py" line="296"/> <source><p><b>{0}</b> has already been allocated to the <b>{1}</b> action. Remove this binding?</p></source> <translation><p><b>{0}</b> wurde bereits der Aktion <b>{1}</b> zugewiesen. Diese Bindung löschen?</p></translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="313"/> + <location filename="Preferences/ShortcutsDialog.py" line="315"/> <source><p><b>{0}</b> hides the <b>{1}</b> action. Remove this binding?</p></source> <translation><p><b>{0}</b> verdeckt die Aktion <b>{1}</b>. Diese Bindung löschen?</p></translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="328"/> + <location filename="Preferences/ShortcutsDialog.py" line="330"/> <source><p><b>{0}</b> is hidden by the <b>{1}</b> action. Remove this binding?</p></source> <translation><p><b>{0}</b> wird durch die Aktion <b>{1}</b> verdeckt. Diese Bindung löschen?</p></translation> </message> @@ -39973,12 +39973,12 @@ <translation>Auswählen, um basierend auf den Kurzbefehlen oder Alternativen zu filtern</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="157"/> + <location filename="Preferences/ShortcutsDialog.py" line="159"/> <source>Spelling</source> <translation>Rechtschreibung</translation> </message> <message> - <location filename="Preferences/ShortcutsDialog.py" line="177"/> + <location filename="Preferences/ShortcutsDialog.py" line="179"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> @@ -40061,37 +40061,37 @@ <translation>Sicherheit</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="185"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="187"/> <source>Preview not available.</source> <translation>Vorschau nicht verfügbar.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="201"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="203"/> <source>Copy Image Location to Clipboard</source> <translation>Bildadresse in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="204"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="206"/> <source>Copy Image Name to Clipboard</source> <translation>Bildbezeichnung in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="261"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="263"/> <source>Save Image</source> <translation>Bild speichern</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="243"/> <source>This image is not available.</source> <translation>Dieses Bild ist nicht verfügbar.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="251"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="261"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="263"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation><p>In die Datei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> @@ -40121,7 +40121,7 @@ <translation>Pfad:</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="143"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="145"/> <source>No databases are used by this page.</source> <translation>Diese Seite verwendet keine Datenbanken.</translation> </message> @@ -40134,7 +40134,7 @@ <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="490"/> + <location filename="Snapshot/SnapWidget.py" line="492"/> <source>eric5 Snapshot</source> <translation>eric5 Bildschirmfoto</translation> </message> @@ -40179,107 +40179,107 @@ <translation>Bildschirmfoto &aufnehmen ...</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="54"/> + <location filename="Snapshot/SnapWidget.py" line="56"/> <source>Fullscreen</source> <translation>Vollbild</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="56"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Rectangular Selection</source> <translation>Rechteck-Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="109"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation>Windows Bitmap Datei (*.bmp)</translation> - </message> - <message> - <location filename="Snapshot/SnapWidget.py" line="110"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format Datei (*.gif)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon Datei (*.ico)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation>Windows Bitmap Datei (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>JPEG File (*.jpg)</source> - <translation>JPEG Datei (*.jpg)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format Datei (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon Datei (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation>Portable Bitmap Datei (*.pbm)</translation> + <source>JPEG File (*.jpg)</source> + <translation>JPEG Datei (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation>Paintbrush Bitmap Datei (*.pcx)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap Datei (*.pgm)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation>Portable Bitmap Datei (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics Datei (*.png)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation>Paintbrush Bitmap Datei (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation>Portable Pixmap Datei (*.ppm)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap Datei (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation>Silicon Graphics Bild Datei (*.sgi)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics Datei (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation>Scalable Vector Graphics Datei (*.svg)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation>Portable Pixmap Datei (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Targa Graphic File (*.tga)</source> - <translation>Targa Grapfik Datei (*.tga)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation>Silicon Graphics Bild Datei (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF Datei (*.tif)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation>Scalable Vector Graphics Datei (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap Datei (*.xbm)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation>Targa Grapfik Datei (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> + <source>TIFF File (*.tif)</source> + <translation>TIFF Datei (*.tif)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="125"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap Datei (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="126"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap Datei (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="234"/> + <location filename="Snapshot/SnapWidget.py" line="236"/> <source>Save Snapshot</source> <translation>Bildschirmfoto speichern</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="215"/> + <location filename="Snapshot/SnapWidget.py" line="217"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="234"/> + <location filename="Snapshot/SnapWidget.py" line="236"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: @@ -40316,32 +40316,32 @@ <translation>Zeigt den Namen des zum Speichern verwendeten Verzeichnisses</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="58"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Ellipical Selection</source> <translation>Elliptische Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="60"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Freehand Selection</source> <translation>Freihändige Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="65"/> <source>Current Screen</source> <translation>Aktueller Bildschirm</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="74"/> + <location filename="Snapshot/SnapWidget.py" line="76"/> <source>snapshot</source> <translation>bildschirmfoto</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="467"/> + <location filename="Snapshot/SnapWidget.py" line="469"/> <source>The application contains an unsaved snapshot.</source> <translation>Die Anwendung enthält ein nicht gespeichertes Bildschirmfoto.</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="419"/> + <location filename="Snapshot/SnapWidget.py" line="421"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation>Vorschau des Bildschirmfotos ({0:n} x {1:n})</translation> </message> @@ -40349,7 +40349,7 @@ <context> <name>SnapshotFreehandGrabber</name> <message> - <location filename="Snapshot/SnapshotFreehandGrabber.py" line="65"/> + <location filename="Snapshot/SnapshotFreehandGrabber.py" line="67"/> <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source> <translation>Wählen sie mit der Maus einen Bereich aus. Um das Bildschirmfoto aufzunehmen, drücken sie die Eingabetaste oder tätigen sie einen Doppelklick. Zum Abbrechen drücken sie Escape.</translation> </message> @@ -40357,7 +40357,7 @@ <context> <name>SnapshotRegionGrabber</name> <message> - <location filename="Snapshot/SnapshotRegionGrabber.py" line="94"/> + <location filename="Snapshot/SnapshotRegionGrabber.py" line="96"/> <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source> <translation>Wählen sie mit der Maus einen Bereich aus. Um das Bildschirmfoto aufzunehmen, drücken sie die Eingabetaste oder tätigen sie einen Doppelklick. Zum Abbrechen drücken sie Escape.</translation> </message> @@ -40365,7 +40365,7 @@ <context> <name>SnapshotTimer</name> <message numerus="yes"> - <location filename="Snapshot/SnapshotTimer.py" line="99"/> + <location filename="Snapshot/SnapshotTimer.py" line="101"/> <source>Snapshot will be taken in %n seconds</source> <translation> <numerusform>Bildschirmfoto wird in einer Sekunde erstellt</numerusform> @@ -40376,17 +40376,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="369"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="375"/> <source>Unable to load</source> <translation>Fehler beim Laden</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="200"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="206"/> <source>Saving Speed Dial data</source> <translation>Speichere Schnellwahl Daten</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="200"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="206"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation><p>Die Schnellwahl Daten konnten nicht in die Datei <b>{0}</b> gespeichert werden</p></translation> </message> @@ -40394,7 +40394,7 @@ <context> <name>SpeedDialReader</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDialReader.py" line="54"/> + <location filename="Helpviewer/SpeedDial/SpeedDialReader.py" line="56"/> <source>The file is not a SpeedDial version 1.0 file.</source> <translation>Die Datei ist keine Schnellwahl Datei der Version 1.0.</translation> </message> @@ -40578,22 +40578,22 @@ <translation>Wähle die Projektausnahmenliste mittels eines Dateiauswahldialoges</translation> </message> <message> - <location filename="Project/SpellingPropertiesDialog.py" line="46"/> + <location filename="Project/SpellingPropertiesDialog.py" line="48"/> <source><default></source> <translation><Standard></translation> </message> <message> - <location filename="Project/SpellingPropertiesDialog.py" line="77"/> + <location filename="Project/SpellingPropertiesDialog.py" line="79"/> <source>Select project word list</source> <translation>Wähle Projektwörterliste</translation> </message> <message> - <location filename="Project/SpellingPropertiesDialog.py" line="97"/> + <location filename="Project/SpellingPropertiesDialog.py" line="99"/> <source>Dictionary File (*.dic);;All Files (*)</source> <translation>Wörterbuch (*.dic);;Alle Dateien(*)</translation> </message> <message> - <location filename="Project/SpellingPropertiesDialog.py" line="97"/> + <location filename="Project/SpellingPropertiesDialog.py" line="99"/> <source>Select project exclude list</source> <translation>Wähle Projektausnahmenliste</translation> </message> @@ -40606,128 +40606,128 @@ <context> <name>SqlBrowser</name> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="184"/> + <location filename="SqlBrowser/SqlBrowser.py" line="186"/> <source>SQL Browser</source> <translation>SQL Browser</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="60"/> + <location filename="SqlBrowser/SqlBrowser.py" line="62"/> <source>Invalid URL: {0}</source> <translation>Ungültige URL: {0}</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="77"/> + <location filename="SqlBrowser/SqlBrowser.py" line="79"/> <source>SQL Browser startup problem</source> <translation>SQL Browser Startproblem</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="91"/> + <location filename="SqlBrowser/SqlBrowser.py" line="93"/> <source>Add Connection</source> <translation>Neue Verbindung</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="91"/> + <location filename="SqlBrowser/SqlBrowser.py" line="93"/> <source>Add &Connection...</source> <translation>Neue &Verbindung...</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="95"/> - <source>Open a dialog to add a new database connection</source> - <translation>Öffnet einen Dialog, um eine neue Datenbankverbindung hinzuzufügen</translation> - </message> - <message> <location filename="SqlBrowser/SqlBrowser.py" line="97"/> + <source>Open a dialog to add a new database connection</source> + <translation>Öffnet einen Dialog, um eine neue Datenbankverbindung hinzuzufügen</translation> + </message> + <message> + <location filename="SqlBrowser/SqlBrowser.py" line="99"/> <source><b>Add Connection</b><p>This opens a dialog to add a new database connection.</p></source> <translation><b>Neue Verbindung</b><p>Dies öffnet einen Dialog, um eine neue Datenbankverbindung hinzuzufügen.</p></translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="104"/> + <location filename="SqlBrowser/SqlBrowser.py" line="106"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="104"/> + <location filename="SqlBrowser/SqlBrowser.py" line="106"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="104"/> + <location filename="SqlBrowser/SqlBrowser.py" line="106"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="109"/> + <location filename="SqlBrowser/SqlBrowser.py" line="111"/> <source>Quit the SQL browser</source> <translation>Beendet den SQL Browser</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="110"/> + <location filename="SqlBrowser/SqlBrowser.py" line="112"/> <source><b>Quit</b><p>Quit the SQL browser.</p></source> <translation><b>Beenden</b><p>Beendet den SQL-Browser.</p></translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="116"/> + <location filename="SqlBrowser/SqlBrowser.py" line="118"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="116"/> + <location filename="SqlBrowser/SqlBrowser.py" line="118"/> <source>&About</source> <translation>Ü&ber</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="119"/> + <location filename="SqlBrowser/SqlBrowser.py" line="121"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="120"/> + <location filename="SqlBrowser/SqlBrowser.py" line="122"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="127"/> + <location filename="SqlBrowser/SqlBrowser.py" line="129"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="127"/> + <location filename="SqlBrowser/SqlBrowser.py" line="129"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="130"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> <location filename="SqlBrowser/SqlBrowser.py" line="132"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="SqlBrowser/SqlBrowser.py" line="134"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation></translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="145"/> + <location filename="SqlBrowser/SqlBrowser.py" line="147"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="153"/> + <location filename="SqlBrowser/SqlBrowser.py" line="155"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="162"/> + <location filename="SqlBrowser/SqlBrowser.py" line="164"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="173"/> + <location filename="SqlBrowser/SqlBrowser.py" line="175"/> <source><h3>About SQL Browser</h3><p>The SQL browser window is a little tool to examine the data and the schema of a database and to execute queries on a database.</p></source> <translation><h3>Über SQL Browser</h3><p>Der SQL Browser ist ein kleines Werkzeug, um die Daten und das Schema einer Datenbank zu erforschen sowie Abfragen an sie zu stellen.</p></translation> </message> <message> - <location filename="SqlBrowser/SqlBrowser.py" line="67"/> + <location filename="SqlBrowser/SqlBrowser.py" line="69"/> <source>Unable to open connection: {0}</source> <translation>Verbindung konnte nicht geöffnet werden: {0}</translation> </message> @@ -40785,32 +40785,32 @@ <translation>Löscht die aktuelle Zeile</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="42"/> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="44"/> <source>No database drivers found</source> <translation>Keine Datenbanktreiber gefunden</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="42"/> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="44"/> <source>This tool requires at least one Qt database driver. Please check the Qt documentation how to build the Qt SQL plugins.</source> <translation>Diese Tool erfordert mindestens einen Qt Datenbanktreiber. Bitte prüfen sie die Dokumentation für Angaben, um die Qt SQL Plugins zu bauen.</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="52"/> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="54"/> <source>Ready</source> <translation>Bereit</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="152"/> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="154"/> <source>Unable to open database</source> <translation>Datenbank kann nicht geöffnet werden</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="291"/> - <source>Query OK.</source> - <translation>Abfrage OK.</translation> - </message> - <message> <location filename="SqlBrowser/SqlBrowserWidget.py" line="293"/> + <source>Query OK.</source> + <translation>Abfrage OK.</translation> + </message> + <message> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="295"/> <source>Query OK, number of affected rows: {0}</source> <translation>Abfrage OK, Anzahl betroffener Zeilen: {0}</translation> </message> @@ -40820,7 +40820,7 @@ <translation>eric5 SQL Browser</translation> </message> <message> - <location filename="SqlBrowser/SqlBrowserWidget.py" line="152"/> + <location filename="SqlBrowser/SqlBrowserWidget.py" line="154"/> <source>An error occurred while opening the connection.</source> <translation>Ein Fehler trat beim Öffnen der Datenbankverbindung auf.</translation> </message> @@ -40903,12 +40903,12 @@ <translation>Standard</translation> </message> <message> - <location filename="SqlBrowser/SqlConnectionDialog.py" line="92"/> + <location filename="SqlBrowser/SqlConnectionDialog.py" line="94"/> <source>Select Database File</source> <translation>Wähle Datenbankdatei</translation> </message> <message> - <location filename="SqlBrowser/SqlConnectionDialog.py" line="92"/> + <location filename="SqlBrowser/SqlConnectionDialog.py" line="94"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> @@ -40916,17 +40916,17 @@ <context> <name>SqlConnectionWidget</name> <message> - <location filename="SqlBrowser/SqlConnectionWidget.py" line="41"/> + <location filename="SqlBrowser/SqlConnectionWidget.py" line="43"/> <source>Database</source> <translation>Datenbank</translation> </message> <message> - <location filename="SqlBrowser/SqlConnectionWidget.py" line="46"/> + <location filename="SqlBrowser/SqlConnectionWidget.py" line="48"/> <source>Refresh</source> <translation>Erneuern</translation> </message> <message> - <location filename="SqlBrowser/SqlConnectionWidget.py" line="47"/> + <location filename="SqlBrowser/SqlConnectionWidget.py" line="49"/> <source>Show Schema</source> <translation>Zeige Schema</translation> </message> @@ -41289,12 +41289,12 @@ <context> <name>StartDialog</name> <message> - <location filename="Debugger/StartDialog.py" line="120"/> + <location filename="Debugger/StartDialog.py" line="122"/> <source>Working directory</source> <translation>Arbeitsverzeichnis</translation> </message> <message> - <location filename="Debugger/StartDialog.py" line="76"/> + <location filename="Debugger/StartDialog.py" line="78"/> <source>Clear Histories</source> <translation>Histories löschen</translation> </message> @@ -41627,42 +41627,42 @@ <context> <name>StatusMonitorLed</name> <message> - <location filename="VCS/StatusMonitorLed.py" line="43"/> + <location filename="VCS/StatusMonitorLed.py" line="45"/> <source><p>This LED indicates the operating status of the VCS monitor thread (off = monitoring off, green = monitoring on and ok, red = monitoring on, but not ok, yellow = checking VCS status). A status description is given in the tooltip.</p></source> <translation><p>Diese LED signalisiert den Status des VCS Monitors (aus = Monitor abgeschaltet, grün = Monitor an und ok, rot = Monitor an aber nicht ok, gelb = VCS Status wird geprüft). Ein Statustext wird als Tooltip angezeigt.</p></translation> </message> <message> - <location filename="VCS/StatusMonitorLed.py" line="50"/> + <location filename="VCS/StatusMonitorLed.py" line="52"/> <source>Repository status checking is switched off</source> <translation>Repository Statusüberprüfung ist ausgeschaltet</translation> </message> <message> - <location filename="VCS/StatusMonitorLed.py" line="58"/> - <source>Check status</source> - <translation>Status überprüfen</translation> - </message> - <message> <location filename="VCS/StatusMonitorLed.py" line="60"/> + <source>Check status</source> + <translation>Status überprüfen</translation> + </message> + <message> + <location filename="VCS/StatusMonitorLed.py" line="62"/> <source>Set interval...</source> <translation>Intervall einstellen...</translation> </message> <message> - <location filename="VCS/StatusMonitorLed.py" line="120"/> + <location filename="VCS/StatusMonitorLed.py" line="122"/> <source>VCS Status Monitor</source> <translation>VCS Statusüberwachung</translation> </message> <message> - <location filename="VCS/StatusMonitorLed.py" line="120"/> + <location filename="VCS/StatusMonitorLed.py" line="122"/> <source>Enter monitor interval [s]</source> <translation>Gib das Statusintervall [s] an</translation> </message> <message> - <location filename="VCS/StatusMonitorLed.py" line="63"/> - <source>Switch on</source> - <translation>Einschalten</translation> - </message> - <message> <location filename="VCS/StatusMonitorLed.py" line="65"/> + <source>Switch on</source> + <translation>Einschalten</translation> + </message> + <message> + <location filename="VCS/StatusMonitorLed.py" line="67"/> <source>Switch off</source> <translation>Ausschalten</translation> </message> @@ -41670,461 +41670,461 @@ <context> <name>Subversion</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="287"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="289"/> <source>Importing project into Subversion repository</source> <translation>Lade das Projekt in das Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="337"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="339"/> <source>Subversion Checkout</source> <translation>Subversion Checkout</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="358"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="360"/> <source>Checking project out of Subversion repository</source> <translation>Lade das Projekt aus dem Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="419"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="421"/> <source>Exporting project from Subversion repository</source> <translation>Expotiere das Projekt aus dem Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1155"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1157"/> <source>Subversion Error</source> <translation>Subversion Fehler</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="997"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="999"/> <source>The URL of the project repository could not be retrieved from the working copy. The tag operation will be aborted</source> <translation>Die URL des Projektrepositories konnte nicht aus der Arbeitskopie ermittelt werden. Die Tag Operation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1022"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1024"/> <source>The URL of the project repository has an invalid format. The tag operation will be aborted</source> <translation>Die URL des Projektrepositories hat ein ungültiges Format. Die Tag Operation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1057"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1059"/> <source>Tagging {0} in the Subversion repository</source> <translation>Markiere {0} im Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1130"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1132"/> <source>The URL of the project repository could not be retrieved from the working copy. The switch operation will be aborted</source> <translation>Die URL des Projektrepositories konnte nicht aus der Arbeitskopie ermittelt werden. Die Umschaltoperation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1155"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1157"/> <source>The URL of the project repository has an invalid format. The switch operation will be aborted</source> <translation>Die URL des Projektrepositories hat ein ungültiges Format. Die Umschaltoperation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1177"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1179"/> <source>Switching to {0}</source> <translation>Schalte {0} um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1280"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1282"/> <source>Merging {0}</source> <translation>Arbeite Änderungen in {0} ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1557"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1559"/> <source>Cleaning up {0}</source> <translation>Räume {0} auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1596"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1598"/> <source>Subversion command</source> <translation>Subversion Befehl</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1745"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1747"/> <source>Copying {0}</source> <translation>Kopiere {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="890"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="892"/> <source>Moving {0}</source> <translation>Verschiebe {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="399"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="401"/> <source>The tag must be a normal tag (tags) or a branch tag (branches). Please select from the list.</source> <translation>Das Tag muß ein normales Tag (tags) oder ein Zweigtag (branches) sein. Bitte aus der Liste auswählen.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="399"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="401"/> <source>Subversion Export</source> <translation>Subversion Export</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1814"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1816"/> <source>Subversion Set Property</source> <translation>Subversion Eigenschaft definieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1848"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1850"/> <source>You have to supply a property name. Aborting.</source> <translation>Sie müssen einen Namen für die Eigenschaft angeben. Abbruch.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1866"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1868"/> <source>Subversion Delete Property</source> <translation>Subversion Eigenschaft löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1688"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1694"/> <source>Enter property name</source> <translation>Gib den Namen der Eigenschaft ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="536"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="538"/> <source>Commiting changes to Subversion repository</source> <translation>Pflege Änderungen in das Subversion Repository ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="592"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="594"/> <source>Synchronizing with the Subversion repository</source> <translation>Gleiche mit dem Subversion Repository ab</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="693"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="695"/> <source>Adding files/directories to the Subversion repository</source> <translation>Füge Dateien/Verzeichnisse dem Subversion Repository hinzu</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="792"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="794"/> <source>Adding directory trees to the Subversion repository</source> <translation>Füge Verzeichnisbäume dem Subversion Repository hinzu</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="827"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="829"/> <source>Removing files/directories from the Subversion repository</source> <translation>Lösche Dateien/Verzeichnisse aus dem Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1103"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1105"/> <source>Reverting changes</source> <translation>Mache Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1705"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1707"/> <source>Resolving conficts</source> <translation>Löse Konflikte</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="195"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="197"/> <source>Create project in repository</source> <translation>Projekt im Repository anlegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="195"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="197"/> <source>The project could not be created in the repository. Maybe the given repository doesn't exist or the repository server is down.</source> <translation>Das Projekt konnte nicht im Repository angelegt werden. Vielleicht existiert das angegebene Repository nicht oder der Repository-Server ist nicht verfügbar.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="217"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="219"/> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="217"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="219"/> <source>The project could not be checked out of the repository.<br />Restoring the original contents.</source> <translation>Das Projekt konnte nicht aus dem Repository geladen werden.<br />Stelle das Original wieder her.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="930"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="932"/> <source>Subversion Log</source> <translation>Subversion Log</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="930"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="932"/> <source>Select number of entries to show.</source> <translation>Wähle Anzahl der anzuzeigenden Einträge.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2039"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2041"/> <source>Locking in the Subversion repository</source> <translation>Sperren im Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2077"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2079"/> <source>Unlocking in the Subversion repository</source> <translation>Entsperren im Subversion Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="561"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="563"/> <source>Committed revision {0}.</source> <translation>Revision {0} eingepflegt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1184"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1186"/> <source>Revision {0}. </source> <translation>Revision {0}. </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1830"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1832"/> <source>Property set.</source> <translation>Eigenschaft definiert.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1881"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1883"/> <source>Property deleted.</source> <translation>Eigenschaft gelöscht.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2019"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2021"/> <source>Subversion Lock</source> <translation>Subversion Sperre</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2019"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2021"/> <source>Enter lock comment</source> <translation>Gib eine Kommentar für die Sperre ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2124"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2126"/> <source>Relocating</source> <translation>Relozierung</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="44"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="46"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="47"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="49"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="22"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="24"/> <source>Modify</source> <translation>Modifizieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="25"/> - <source>Replace</source> - <translation>Ersetzen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="27"/> + <source>Replace</source> + <translation>Ersetzen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="29"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="31"/> - <source>Failed revert</source> - <translation>Rückkehren fehlgeschlagen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="33"/> - <source>Resolve</source> - <translation>Auflösen</translation> + <source>Failed revert</source> + <translation>Rückkehren fehlgeschlagen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="35"/> - <source>Restore</source> - <translation>Wiederherstellen</translation> + <source>Resolve</source> + <translation>Auflösen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="37"/> - <source>Revert</source> - <translation>Rückkehren</translation> + <source>Restore</source> + <translation>Wiederherstellen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="39"/> + <source>Revert</source> + <translation>Rückkehren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="41"/> <source>Skip</source> <translation>Überspringen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="49"/> - <source>External</source> - <translation>Extern</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="51"/> - <source>Update</source> - <translation>Aktualisieren</translation> + <source>External</source> + <translation>Extern</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="53"/> + <source>Update</source> + <translation>Aktualisieren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="55"/> <source>Annotate</source> <translation>Kommentieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="57"/> - <source>Locking</source> - <translation>Sperren</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="59"/> - <source>Unlocking</source> - <translation>Entsperren</translation> + <source>Locking</source> + <translation>Sperren</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="61"/> - <source>Failed lock</source> - <translation>Sperren fehlgeschlagen</translation> + <source>Unlocking</source> + <translation>Entsperren</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="63"/> + <source>Failed lock</source> + <translation>Sperren fehlgeschlagen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="65"/> <source>Failed unlock</source> <translation>Entsperren fehlgeschlagen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="74"/> - <source>added</source> - <translation>hinzugefügt</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="76"/> - <source>conflict</source> - <translation>Konflikt</translation> + <source>added</source> + <translation>hinzugefügt</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="78"/> - <source>deleted</source> - <translation>gelöscht</translation> + <source>conflict</source> + <translation>Konflikt</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="80"/> - <source>external</source> - <translation>extern</translation> + <source>deleted</source> + <translation>gelöscht</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="82"/> - <source>ignored</source> - <translation>ignoriert</translation> + <source>external</source> + <translation>extern</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="84"/> - <source>incomplete</source> - <translation>unvollständig</translation> + <source>ignored</source> + <translation>ignoriert</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="86"/> - <source>missing</source> - <translation>fehlt</translation> + <source>incomplete</source> + <translation>unvollständig</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="88"/> - <source>merged</source> - <translation>fusioniert</translation> + <source>missing</source> + <translation>fehlt</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="90"/> + <source>merged</source> + <translation>fusioniert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="92"/> <source>modified</source> <translation>modifiziert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="94"/> - <source>normal</source> - <translation>normal</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="96"/> - <source>type error</source> - <translation>Typfehler</translation> + <source>normal</source> + <translation>normal</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="98"/> - <source>replaced</source> - <translation>ersetzt</translation> + <source>type error</source> + <translation>Typfehler</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="100"/> + <source>replaced</source> + <translation>ersetzt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="102"/> <source>unversioned</source> <translation>unversioniert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="303"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="305"/> <source>Imported revision {0}. </source> <translation>Revision {0} importiert. </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="169"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="175"/> <source>The svn process finished with the exit code {0}</source> <translation>Der svn Prozess endete mit dem Code {0}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="172"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="178"/> <source>The svn process did not finish within 30s.</source> <translation>Der svn Prozess endete nicht innerhalb von 30s.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="174"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="180"/> <source>Could not start the svn executable.</source> <translation>Das svn Programm konnte nicht gestartet werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2150"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2152"/> <source>Repository Browser</source> <translation>Repository Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2150"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2152"/> <source>Enter the repository URL.</source> <translation>Gib die URL des Repository ein.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2175"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2177"/> <source>Remove from changelist</source> <translation>Von Änderungsliste entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2212"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2214"/> <source>Add to changelist</source> <translation>Zu Änderungsliste hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2201"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2203"/> <source>Enter name of the changelist:</source> <translation>Gib deb Namen der Änderungsliste ein:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="66"/> - <source>Changelist clear</source> - <translation>Von Änderungsliste entfernt</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="68"/> - <source>Changelist set</source> - <translation>Zur Änderungsliste hinzugefügt</translation> + <source>Changelist clear</source> + <translation>Von Änderungsliste entfernt</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="70"/> + <source>Changelist set</source> + <translation>Zur Änderungsliste hinzugefügt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnConst.py" line="72"/> <source>Changelist moved</source> <translation>Zur Änderungsliste verschoben</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="494"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="496"/> <source>Commit Changes</source> <translation>Änderungen einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="494"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="496"/> <source>The commit affects files, that have unsaved changes. Shall the commit be continued?</source> <translation>Das Einpflegen von Änderungen betrifft Dateien mit ungesicherten Änderungen. Soll die Aktion fortgesetzt werden?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1098"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1089"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1091"/> <source>Do you really want to revert all changes to these files or directories?</source> <translation>Wollen Sie wirklich alle Änderungen an den folgenden Datein oder Verzeichnissen rückgängig machen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1096"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1098"/> <source>Do you really want to revert all changes of the project?</source> <translation>Wollen Sie wirklich alle Änderungen des Projektes rückgängig machen?</translation> </message> @@ -42190,37 +42190,37 @@ <context> <name>SvgDiagram</name> <message> - <location filename="Graphics/SvgDiagram.py" line="49"/> + <location filename="Graphics/SvgDiagram.py" line="51"/> <source>SVG-Viewer</source> <translation>SVG-Betrachter</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="90"/> + <location filename="Graphics/SvgDiagram.py" line="92"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="95"/> + <location filename="Graphics/SvgDiagram.py" line="97"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="129"/> + <location filename="Graphics/SvgDiagram.py" line="131"/> <source>Window</source> <translation>Fenster</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="133"/> + <location filename="Graphics/SvgDiagram.py" line="135"/> <source>Graphics</source> <translation>Grafiken</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="345"/> + <location filename="Graphics/SvgDiagram.py" line="347"/> <source>Diagram: {0}</source> <translation>Diagramm: {0}</translation> </message> <message> - <location filename="Graphics/SvgDiagram.py" line="100"/> + <location filename="Graphics/SvgDiagram.py" line="102"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> @@ -42293,12 +42293,12 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="105"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="99"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="105"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -42375,22 +42375,22 @@ <translation>Alt+K</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="75"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="81"/> <source>Files (relative to {0}):</source> <translation>Dateien (relativ zu {0}):</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="138"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="144"/> <source>No changelists found</source> <translation>Keine Änderungslisten gefunden</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="109"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="109"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -42398,7 +42398,7 @@ <context> <name>SvnCommandDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.py" line="70"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCommandDialog.py" line="72"/> <source>Working directory</source> <translation>Arbeitsverzeichnis</translation> </message> @@ -42541,12 +42541,12 @@ <context> <name>SvnCopyDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py" line="46"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py" line="48"/> <source>Subversion Move</source> <translation>Subversion Verschieben</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py" line="81"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnCopyDialog.py" line="83"/> <source>Select target</source> <translation>Wähle Ziel aus</translation> </message> @@ -42627,7 +42627,7 @@ <context> <name>SvnDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="145"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="151"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> @@ -42687,26 +42687,26 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="78"/> <source>Revision {0}. </source> <translation>Revision {0}. </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="81"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="83"/> <source> (binary)</source> <translation> (binär)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/> <source>{0} {1}{2} </source> <translation>{0} {1}{2} </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="145"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="151"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -42714,27 +42714,27 @@ <context> <name>SvnDialogMixin</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="95"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="97"/> <source>Subversion SSL Server Certificate</source> <translation>Subversion SSL Serverzertifikat</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="113"/> - <source>&Permanent accept</source> - <translation>&Immer akzeptieren</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="115"/> - <source>&Temporary accept</source> - <translation>&Vorläufig akzeptieren</translation> + <source>&Permanent accept</source> + <translation>&Immer akzeptieren</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="117"/> + <source>&Temporary accept</source> + <translation>&Vorläufig akzeptieren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="119"/> <source>&Reject</source> <translation>&Ablehnen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="95"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py" line="97"/> <source><p>Accept the following SSL certificate?</p><table><tr><td>Realm:</td><td>{0}</td></tr><tr><td>Hostname:</td><td>{1}</td></tr><tr><td>Fingerprint:</td><td>{2}</td></tr><tr><td>Valid from:</td><td>{3}</td></tr><tr><td>Valid until:</td><td>{4}</td></tr><tr><td>Issuer name:</td><td>{5}</td></tr></table></source> <translation><p>Das folgende SSL Zertifikat akzeptieren?</p><table><tr><td>Domäne:</td><td>{0}</td></tr><tr><td>Servername:</td><td>{1}</td></tr><tr><td>Fingerprint:</td><td>{2}</td></tr><tr><td>Gültig ab:</td><td>{3}</td></tr><tr><td>Gültig bis:</td><td>{4}</td></tr><tr><td>Herausgeber:</td><td>{5}</td></tr></table></translation> </message> @@ -42742,27 +42742,27 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="158"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="160"/> <source>Subversion Diff</source> <translation>Subversion Diff</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="250"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="252"/> <source>There is no difference.</source> <translation>Es gibt keinen Unterschied.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="393"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="395"/> <source>Patch Files (*.diff)</source> <translation>Patchdateien (*.diff)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="425"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="427"/> <source>Save Diff</source> <translation>Diff speichern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="425"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="427"/> <source><p>The patch file <b>{0}</b> could not be saved.<br>Reason: {1}</p></source> <translation><p>Die Patchdatei <b>{0}</b> konnte nicht gespeichert werden.<br>Grund: {1}</p></translation> </message> @@ -42822,39 +42822,39 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="174"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="180"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="158"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="160"/> <source>There is no temporary directory available.</source> <translation>Es steht kein temporäres Verzeichnis zur verfügung.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="200"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="202"/> <source>Processing file '{0}'... </source> <translation>Bearbeite Datei '{0}'... </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="174"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="180"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="410"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="412"/> <source><p>The patch file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Patchdatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="317"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="319"/> <source><Start></source> <translation><Anfang></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="318"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="320"/> <source><End></source> <translation><Ende></translation> </message> @@ -42862,142 +42862,142 @@ <context> <name>SvnInfoDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="67"/> <source><tr><td><b>Path (relative to project):</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Pfad (relativ zum Projekt):</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="69"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="71"/> <source><tr><td><b>Url:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Url:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="73"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="75"/> <source><tr><td><b>Revision:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Revision:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="77"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="79"/> <source><tr><td><b>Repository root URL:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Repository Start-URL:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="81"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="83"/> <source><tr><td><b>Repository UUID:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Repository UUID:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="85"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="87"/> <source><tr><td><b>Last changed author:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Autor der letzten Änderung:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="91"/> <source><tr><td><b>Last Changed Date:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Datum der letzten Änderung:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="94"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="96"/> <source><tr><td><b>Last changed revision:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Revision der letzten Änderung:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="99"/> - <source>file</source> - <translation>Datei</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="101"/> - <source>directory</source> - <translation>Verzeichnis</translation> + <source>file</source> + <translation>Datei</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="103"/> - <source>none</source> - <translation>Keines</translation> + <source>directory</source> + <translation>Verzeichnis</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="105"/> + <source>none</source> + <translation>Keines</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="107"/> <source>unknown</source> <translation>Unbekannt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="106"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="108"/> <source><tr><td><b>Node kind:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Knotentyp:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="111"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="113"/> <source><tr><td><b>Lock Owner:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Besitzer der Sperre:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="114"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="116"/> <source><tr><td><b>Lock Creation Date:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Erstellungsdatum der Sperre:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="119"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="121"/> <source><tr><td><b>Lock Expiration Date:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Verfallsdatum der Sperre:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="122"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="124"/> <source><tr><td><b>Lock Token:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Zeichen der Sperre:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="125"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="127"/> <source><tr><td><b>Lock Comment:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Kommentar der Sperre:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="132"/> - <source>normal</source> - <translation>normal</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="134"/> - <source>add</source> - <translation>hinzufügen</translation> + <source>normal</source> + <translation>normal</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="136"/> - <source>delete</source> - <translation>löschen</translation> + <source>add</source> + <translation>hinzufügen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="138"/> + <source>delete</source> + <translation>löschen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="140"/> <source>replace</source> <translation>ersetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="139"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="141"/> <source><tr><td><b>Schedule:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Plan:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="143"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="145"/> <source><tr><td><b>Copied From URL:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Kopiert von URL:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="146"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="148"/> <source><tr><td><b>Copied From Rev:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Kopiert von Rev.:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="150"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="152"/> <source><tr><td><b>Text Last Updated:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Letzte Aktualisierung Text:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="154"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="156"/> <source><tr><td><b>Properties Last Updated:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Letzte Aktualisierung Eigenschaften:</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="158"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnInfoDialog.py" line="160"/> <source><tr><td><b>Checksum:</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Prüfsumme:</b></td><td>{0}</td></tr></translation> </message> @@ -43010,12 +43010,12 @@ <translation>Subversion Log</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="552"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="558"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="549"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="555"/> <source>Author</source> <translation>Autor</translation> </message> @@ -43025,7 +43025,7 @@ <translation>Datum</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="53"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="59"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -43085,22 +43085,22 @@ <translation>&Vergleiche Revisionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="88"/> <source>Added</source> <translation>Hinzugefügt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="83"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="89"/> <source>Deleted</source> <translation>Gelöscht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="84"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/> <source>Modified</source> <translation>Modifiziert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="427"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="429"/> <source>Subversion Error</source> <translation>Subversion Fehler</translation> </message> @@ -43155,12 +43155,12 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="242"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="248"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="242"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="248"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -43205,7 +43205,7 @@ <translation>Bei Kopieren/Umbenennen anhalten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="85"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/> <source>Replaced</source> <translation>Ersetzt</translation> </message> @@ -43213,27 +43213,27 @@ <context> <name>SvnLogDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="56"/> <source>Added</source> <translation>Hinzugefügt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="55"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="57"/> <source>Deleted</source> <translation>Gelöscht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="56"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="58"/> <source>Modified</source> <translation>Modifiziert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="59"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="61"/> <source>revision</source> <translation>Revision</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="137"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="139"/> <source>diff to {0}</source> <translation>Unterschied zu {0}</translation> </message> @@ -43303,36 +43303,36 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py" line="127"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py" line="133"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="145"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="147"/> <source><i>author: {0}</i><br /> </source> <translation><i>Autor: {0}</i><br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="148"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="150"/> <source><i>date: {0}</i><br /> </source> <translation><i>Datum: {0}</i><br /> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="165"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="167"/> <source> (copied from {0}, revision {1})</source> <translation> (kopiert von {0}, Revision {1})</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="48"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLogDialog.py" line="50"/> <source><b>Processing your request, please wait...</b></source> <translation><b>Verarbeite ihre Anfrage, bitte warten...</b></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py" line="127"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnLogDialog.py" line="133"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -43375,7 +43375,7 @@ <translation>Gib den Nutzernamen ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py" line="31"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnLoginDialog.py" line="33"/> <source><b>Enter login data for realm {0}.</b></source> <translation><b>Anmeldedaten für die Domäne {0} eingeben.</b></translation> </message> @@ -43447,12 +43447,12 @@ <context> <name>SvnNewProjectOptionsDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="63"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="65"/> <source>Select Repository-Directory</source> <translation>Wähle Repository-Verzeichnis</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="91"/> <source>Select Project Directory</source> <translation>Wähle Projektverzeichnis</translation> </message> @@ -43498,7 +43498,7 @@ <translation>&Protokoll:</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="125"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="127"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -43557,7 +43557,7 @@ <translation><b>URL</b><p>Gib die URL des Moduls ein. Für ein Repository mit Standardstruktur darf diese nicht den trunk, tags oder branches Anteil enthalten.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="119"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py" line="121"/> <source>Pat&h:</source> <translation>&Pfad:</translation> </message> @@ -43570,7 +43570,7 @@ <context> <name>SvnOptionsDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="62"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="64"/> <source>Select Repository-Directory</source> <translation>Wähle Repository-Verzeichnis</translation> </message> @@ -43619,7 +43619,7 @@ <translation>...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="97"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="99"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -43656,7 +43656,7 @@ <translation><b>URL</b><p>Gib die URL des Moduls ein. Für ein Repository mit Standardstruktur darf diese nicht den trunk, tags oder branches Anteil enthalten.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="91"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py" line="93"/> <source>Pat&h:</source> <translation>&Pfad:</translation> </message> @@ -43669,167 +43669,167 @@ <context> <name>SvnProjectBrowserHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="587"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="589"/> <source>Update from repository</source> <translation>Abgleich mit Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="590"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="592"/> <source>Commit changes to repository...</source> <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="595"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="597"/> <source>Add to repository</source> <translation>Zum Repository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="350"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="352"/> <source>Add tree to repository</source> <translation>Verzeichnisbaum zum Repository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="598"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="600"/> <source>Remove from repository (and disk)</source> <translation>Vom Repository (und der Platte) löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="507"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="509"/> <source>Show log</source> <translation>Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="611"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="613"/> <source>Show status</source> <translation>Status anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="617"/> <source>Show difference</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="620"/> <source>Show difference (extended)</source> <translation>Unterschiede anzeigen (erweitert)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="627"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="629"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="630"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="632"/> <source>Merge changes</source> <translation>Änderungen einarbeiten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636"/> - <source>Set Property</source> - <translation>Eigenschaft definieren</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638"/> - <source>List Properties</source> - <translation>Eigenschaften listen</translation> + <source>Set Property</source> + <translation>Eigenschaft definieren</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640"/> + <source>List Properties</source> + <translation>Eigenschaften listen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="642"/> <source>Delete Property</source> <translation>Eigenschaft löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643"/> - <source>Select all local file entries</source> - <translation>Alle lokalen Dateieinträge auswählen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="645"/> - <source>Select all versioned file entries</source> - <translation>Alle versionierten Dateieinträge auswählen</translation> + <source>Select all local file entries</source> + <translation>Alle lokalen Dateieinträge auswählen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647"/> - <source>Select all local directory entries</source> - <translation>Alle lokalen Verzeichniseinträge auswählen</translation> + <source>Select all versioned file entries</source> + <translation>Alle versionierten Dateieinträge auswählen</translation> </message> <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="649"/> + <source>Select all local directory entries</source> + <translation>Alle lokalen Verzeichniseinträge auswählen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="651"/> <source>Select all versioned directory entries</source> <translation>Alle versionierten Verzeichniseinträge auswählen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="388"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="390"/> <source>Lock</source> <translation>Sperren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="391"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="393"/> <source>Unlock</source> <translation>Entsperren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="394"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="396"/> <source>Break Lock</source> <translation>Sperre brechen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="397"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399"/> <source>Steal Lock</source> <translation>Sperre stehlen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="576"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578"/> <source>Version Control</source> <translation>Versionskontrolle</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="270"/> <source>Show annotated file</source> <translation>Zeige kommentierte Datei</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="517"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="519"/> <source>Show repository info</source> <translation>Zeige Repository Informationen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="624"/> <source>Show difference (URLs)</source> <translation>Unterschiede anzeigen (URLs)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="510"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512"/> <source>Show log browser</source> <translation>Zeige Log Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="652"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="654"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="604"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="606"/> <source>Add to Changelist</source> <translation>Zu Änderungsliste hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="607"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609"/> <source>Remove from Changelist</source> <translation>Von Änderungsliste entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635"/> <source>Conflict resolved</source> <translation>Konflikt gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="494"/> - <source>Copy</source> - <translation>Kopieren</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="496"/> + <source>Copy</source> + <translation>Kopieren</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="498"/> <source>Move</source> <translation>Verschieben</translation> </message> @@ -43837,557 +43837,557 @@ <context> <name>SvnProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="48"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="50"/> <source>New from repository</source> <translation>Neu aus Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="48"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="50"/> <source>&New from repository...</source> <translation>&Neu aus Repository...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="51"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="53"/> <source>Create a new project from the VCS repository</source> <translation>Erzeuge ein neues Projekt aus dem VCS Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="54"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="56"/> <source><b>New from repository</b><p>This creates a new local project from the VCS repository.</p></source> <translation><b>Neu aus Repository</b><p>Dies erzeugt ein neues Projekt aus dem VCS Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="63"/> <source>Update from repository</source> <translation>Abgleich mit Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="61"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="63"/> <source>&Update from repository</source> <translation>&Abgleich mit Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="67"/> <source>Update the local project from the VCS repository</source> <translation>Abgleich des lokalen Projektes mit dem VCS Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="68"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="70"/> <source><b>Update from repository</b><p>This updates the local project from the VCS repository.</p></source> <translation><b>Abgleich mit Repository</b><p>Dies gleicht das lokale Projekt mit dem Repository ab.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="75"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="77"/> <source>Commit changes to repository</source> <translation>Änderungen in Repository einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="75"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="77"/> <source>&Commit changes to repository...</source> <translation>&Änderungen in Repository einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="79"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="81"/> <source>Commit changes to the local project to the VCS repository</source> <translation>Änderungen am lokalen Projekt in das VCS Repository einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="82"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="84"/> <source><b>Commit changes to repository</b><p>This commits changes to the local project to the VCS repository.</p></source> <translation><b>Änderungen in Repository einpflegen</b><p>Dies pflegt Änderungen am lokalen Projekt in das VCS Repository ein.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="91"/> <source>Show log</source> <translation>Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="91"/> <source>Show &log</source> <translation>&Beschreibungen anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="93"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="95"/> <source>Show the log of the local project</source> <translation>Zeigt die Änderungsbeschreibungen des lokalen Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="96"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="98"/> <source><b>Show log</b><p>This shows the log of the local project.</p></source> <translation><b>Beschreibungen anzeigen</b><p>Dies zeigt die Änderungsbeschreibungen (Log) des lokalen Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="119"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="121"/> <source>Show difference</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="119"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="121"/> <source>Show &difference</source> <translation>&Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="123"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="125"/> <source>Show the difference of the local project to the repository</source> <translation>Zeigt den Unterschied des lokalen Projektes zum Repository an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="126"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="128"/> <source><b>Show difference</b><p>This shows the difference of the local project to the repository.</p></source> <translation><b>Unterschiede anzeigen</b><p>Dies zeigt den Unterschied des lokalen Projektes zum Repository an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="133"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="135"/> <source>Show difference (extended)</source> <translation>Unterschiede anzeigen (erweitert)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="137"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="139"/> <source>Show the difference of revisions of the project to the repository</source> <translation>Zeigt den Unterschied von Revisionen des Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="140"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="142"/> <source><b>Show difference (extended)</b><p>This shows the difference of selectable revisions of the project.</p></source> <translation><b>Unterschiede anzeigen (erweitert)</b><p>Dies zeigt den Unterschied von Revisionen des Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="162"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="164"/> <source>Show status</source> <translation>Status anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="162"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="164"/> <source>Show &status</source> <translation>Status an&zeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="166"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="168"/> <source>Show the status of the local project</source> <translation>Zeige den Status des lokalen Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="169"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="171"/> <source><b>Show status</b><p>This shows the status of the local project.</p></source> <translation><b>Status anzeigen</b><p>Dies zeigt den Status des lokalen Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="206"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="208"/> <source>Tag in repository</source> <translation>Im Repository markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="206"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="208"/> <source>&Tag in repository...</source> <translation>Im Repository &markieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="210"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="212"/> <source>Tag the local project in the repository</source> <translation>Das lokale Projekt im Repository markieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="213"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="215"/> <source><b>Tag in repository</b><p>This tags the local project in the repository.</p></source> <translation><b>Im Repository markieren</b><p>Dies markiert das lokale Projekt im Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="220"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="222"/> <source>Export from repository</source> <translation>Export aus Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="220"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="222"/> <source>&Export from repository...</source> <translation>&Export aus Repository...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="224"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="226"/> <source>Export a project from the repository</source> <translation>Exportiert ein Projekt aus dem Repository</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="227"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="229"/> <source><b>Export from repository</b><p>This exports a project from the repository.</p></source> <translation><b>Export aus Repository</b<<p>Dies exportiert ein Projekt aus dem Repository.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="234"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="236"/> <source>Command options</source> <translation>Befehlsoptionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="234"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="236"/> <source>Command &options...</source> <translation>Befehls&optionen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="237"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="239"/> <source>Show the VCS command options</source> <translation>Zeigt die VCS Befehlsoptionen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="238"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="240"/> <source><b>Command options...</b><p>This shows a dialog to edit the VCS command options.</p></source> <translation><b>Befehlsoptionen...</b><p>Dies öffnet einen Dialog zur Eingabe der VCS Befehlsoptionen.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="245"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="247"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="245"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="247"/> <source>Re&vert changes</source> <translation>Änderungen &rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="249"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="251"/> <source>Revert all changes made to the local project</source> <translation>Alle Änderungen am lokalen Projekt werden rückgängig gemacht</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="252"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="254"/> <source><b>Revert changes</b><p>This reverts all changes made to the local project.</p></source> <translation><b>Änderungen rückgängig</b><p>Dies macht alle Änderungen am lokalen Projekt werden rückgängig.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="259"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="261"/> <source>Merge</source> <translation>Änderungen einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="259"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="261"/> <source>Mer&ge changes...</source> <translation>Änderungen ein&pflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="263"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="265"/> <source>Merge changes of a tag/revision into the local project</source> <translation>Pflege Änderungen eines Tags/Zweiges in das lokale Projekt ein</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="266"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="268"/> <source><b>Merge</b><p>This merges changes of a tag/revision into the local project.</p></source> <translation><b>Änderungen einpflegen</b><p>Dies pfleget Änderungen eines Tags/Zweiges in das lokale Projekt ein.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="273"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="275"/> <source>Switch</source> <translation>Umschalten</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="273"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="275"/> <source>S&witch...</source> <translation>Umschal&ten...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="277"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="279"/> <source>Switch the local copy to another tag/branch</source> <translation>Schalte die lokale Kopie auf ein anderes Tag/anderen Zweig um</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="280"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="282"/> <source><b>Switch</b><p>This switches the local copy to another tag/branch.</p></source> <translation><b>Umschalten</b><p>Dies schaltet die lokale Kopie auf ein anderes Tag/anderen Zweig um.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="300"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="302"/> <source>Cleanup</source> <translation>Aufräumen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="300"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="302"/> <source>Cleanu&p</source> <translation>Au&fräumen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="303"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="305"/> <source>Cleanup the local project</source> <translation>Räume das lokale Projekt auf</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="306"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="308"/> <source><b>Cleanup</b><p>This performs a cleanup of the local project.</p></source> <translation><b>Aufräumen</b><p>Dies räumt das lokale Projekt auf.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="313"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="315"/> <source>Execute command</source> <translation>Befehl ausführen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="313"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="315"/> <source>E&xecute command...</source> <translation>Befehl ausf&ühren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="316"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="318"/> <source>Execute an arbitrary VCS command</source> <translation>Führe einen beliebigen VCS Befehl aus</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="319"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="321"/> <source><b>Execute command</b><p>This opens a dialog to enter an arbitrary VCS command.</p></source> <translation><b>Befehl ausführen</b><p>Dies öffnet einen Dialog zur Eingabe eines beliebeigen VCS Befehls.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="326"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="328"/> <source>List tags</source> <translation>Marken listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="326"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="328"/> <source>List tags...</source> <translation>Marken listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="329"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="331"/> <source>List tags of the project</source> <translation>Listet Marken des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="332"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="334"/> <source><b>List tags</b><p>This lists the tags of the project.</p></source> <translation><b>Marken listen</b><p>Dies listet die Marken des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="339"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="341"/> <source>List branches</source> <translation>Zweige listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="339"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="341"/> <source>List branches...</source> <translation>Zweige listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="342"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="344"/> <source>List branches of the project</source> <translation>Listet Zweige des Projektes</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="345"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="347"/> <source><b>List branches</b><p>This lists the branches of the project.</p></source> <translation><b>Zweige listen</b><p>Dies listet die Zweige des Projektes.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="352"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="354"/> <source>List repository contents</source> <translation>Repository Inhalt listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="352"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="354"/> <source>List repository contents...</source> <translation>Repository Inhalt listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="355"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="357"/> <source>Lists the contents of the repository</source> <translation>Listet den Inhalt des Repositories</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="358"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="360"/> <source><b>List repository contents</b><p>This lists the contents of the repository.</p></source> <translation><b>Repository Inhalt listen</b><p>Dies listet den Inhalt des Repositories.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="365"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="367"/> <source>Set Property</source> <translation>Eigenschaft definieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="365"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="367"/> <source>Set Property...</source> <translation>Eigenschaft definieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="368"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="370"/> <source>Set a property for the project files</source> <translation>Definiert eine Eigenschaft für alle Projektdateien</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="371"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="373"/> <source><b>Set Property</b><p>This sets a property for the project files.</p></source> <translation><b>Eigenschaft definieren</b><p>Dies definiert eine Eigenschaft für alle Projektdateien.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="378"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="380"/> <source>List Properties</source> <translation>Eigenschaften listen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="378"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="380"/> <source>List Properties...</source> <translation>Eigenschaften listen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="381"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="383"/> <source>List properties of the project files</source> <translation>Listet Eigenschaften der Projektdateien</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="384"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="386"/> <source><b>List Properties</b><p>This lists the properties of the project files.</p></source> <translation><b>Eigenschaften listen</b<p>Dies listet die Eigenschaften der Projektdateien.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="391"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="393"/> <source>Delete Property</source> <translation>Eigenschaft löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="391"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="393"/> <source>Delete Property...</source> <translation>Eigenschaft löschen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="394"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="396"/> <source>Delete a property for the project files</source> <translation>Eine Eigenschaft für alle Projektdateien löschen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="397"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="399"/> <source><b>Delete Property</b><p>This deletes a property for the project files.</p></source> <translation><b>Eigenschaft löschen</b><p>Dies löscht eine Eigenschaft für alle Projektdateien.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="191"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="193"/> <source>Show repository info</source> <translation>Zeige Repository Informationen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="195"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="197"/> <source>Show some repository related information for the local project</source> <translation>Zeige Repository bezogene Informationen des lokalen Projektes an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="404"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="406"/> <source>Relocate</source> <translation>Relozieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="404"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="406"/> <source>Relocate...</source> <translation>Relozieren...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="408"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="410"/> <source>Relocate the working copy to a new repository URL</source> <translation>Reloziere die Arbeitskopie zu einer neuen Repository URL</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="411"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="413"/> <source><b>Relocate</b><p>This relocates the working copy to a new repository URL.</p></source> <translation><b>Relozieren</b><p>Dies reloziert die Arbeitskopie zu einer neuen Repository URL.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="198"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="200"/> <source><b>Show repository info</b><p>This shows some repository related information for the local project.</p></source> <translation><b>Zeige Repository Informationen</b><p>Dies zeigt Repository bezogene Informationen des lokalen Projektes an.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="147"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="149"/> <source>Show difference (URLs)</source> <translation>Unterschiede anzeigen (URLs)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="151"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="153"/> <source>Show the difference of the project between two repository URLs</source> <translation>Zeigt den Unterschied des Projektes zwischen zwei Repository URLs</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="154"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="156"/> <source><b>Show difference (URLs)</b><p>This shows the difference of the project between two repository URLs.</p></source> <translation><b>Unterschiede anzeigen (URLs)</b><p>Dies zeigt den Unterschied des Projektes zwischen zwei Repository URLs.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="418"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="420"/> <source>Repository Browser</source> <translation>Repository Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="418"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="420"/> <source>Repository Browser...</source> <translation>Repository Browser...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="422"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="424"/> <source>Show the Repository Browser dialog</source> <translation>Zeigt den Repository Browser Dialog</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="425"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="427"/> <source><b>Repository Browser</b><p>This shows the Repository Browser dialog.</p></source> <translation><b>Repository Browser...</b><p>Dies zeigt den Repository Browser Dialog.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="103"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="105"/> <source>Show log browser</source> <translation>Zeige Log Browser</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="107"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="109"/> <source>Show a dialog to browse the log of the local project</source> <translation>Zeigt einen Dialog, um das Log des lokalen Projektes durchzusehen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="110"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="112"/> <source><b>Show log browser</b><p>This shows a dialog to browse the log of the local project. A limited number of entries is shown first. More can be retrieved later on.</p></source> <translation><b>Zeige Log Browser</b><p>Dies zeigt einen Dialog, um das Log des lokalen Projektes durchzusehen. Zunächst wird nur eine begrenzte Anzahl an Einträgen angezeigt. Weitere können später geholt werden.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="432"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="434"/> <source>Configure</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="432"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="434"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="435"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="437"/> <source>Show the configuration dialog with the Subversion page selected</source> <translation>Zeigt den Konfigurationsdialog mit ausgewählter Subversion Seite</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="438"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="440"/> <source><b>Configure</b><p>Show the configuration dialog with the Subversion page selected.</p></source> <translation><b>Einstellungen</b><p>Zeigt den Konfigurationsdialog mit ausgewählter Subversion Seite.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="287"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="289"/> <source>Conflicts resolved</source> <translation>Konflikte gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="287"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="289"/> <source>Con&flicts resolved</source> <translation>&Konflikte gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="290"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="292"/> <source>Mark all conflicts of the local project as resolved</source> <translation>Markiert alle Konflikte des lokalen Projektes als gelöst</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="293"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="295"/> <source><b>Conflicts resolved</b><p>This marks all conflicts of the local project as resolved.</p></source> <translation><b>Konflikte gelöst</b><p>Dies markiert alle Konflikte des lokalen Projektes als gelöst.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="176"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="178"/> <source>Show change lists</source> <translation>Änderungslisten anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="180"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="182"/> <source>Show the change lists and associated files of the local project</source> <translation>Zeige die Änderungslisten des lokalen Projektes und die zugehörigen Dateien an</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="183"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py" line="185"/> <source><b>Show change lists</b><p>This shows the change lists and associated files of the local project.</p></source> <translation><b>Änderungslisten anzeigen</b><p>Dies zeigt die Änderungslisten des lokalen Projektes und die zugehörigen Dateien an</p></translation> </message> @@ -44464,17 +44464,17 @@ <p>Dies zeigt mögliche Fehlermeldungen des subversion proplist Befehls.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="123"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="129"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="124"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="126"/> <source>None</source> <translation>Keine</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="123"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="129"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -44487,7 +44487,7 @@ <context> <name>SvnPropSetDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py" line="41"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py" line="43"/> <source>Select file for property</source> <translation>Wähle Datei für die Eigenschaft</translation> </message> @@ -44638,7 +44638,7 @@ <translation>Datum</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="270"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="272"/> <source>Subversion Error</source> <translation>Subversion Fehler</translation> </message> @@ -44688,12 +44688,12 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="251"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="257"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="251"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="257"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -44703,7 +44703,7 @@ <translation><b>Subversion Fehler</b><p>Dies zeigt mögliche Fehlermeldungen der svn list und svn info Befehle.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="194"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="196"/> <source>The installed version of PySvn should be 1.4.0 or better.</source> <translation>Die installierte PySvn Version muss 1.4.0 oder neuer sein.</translation> </message> @@ -44819,152 +44819,152 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/> <source>normal</source> <translation>normal</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="149"/> - <source>added</source> - <translation>hinzugefügt</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="150"/> - <source>deleted</source> - <translation>gelöscht</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="162"/> - <source>modified</source> - <translation>modifiziert</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/> - <source>conflict</source> - <translation>Konflikt</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="156"/> - <source>unversioned</source> - <translation>unversioniert</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="157"/> - <source>missing</source> - <translation>fehlt</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/> - <source>type error</source> - <translation>Typfehler</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="161"/> - <source>no</source> - <translation>nein</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="162"/> - <source>yes</source> - <translation>ja</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="154"/> - <source>external</source> - <translation>Extern</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="155"/> + <source>added</source> + <translation>hinzugefügt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="156"/> + <source>deleted</source> + <translation>gelöscht</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/> + <source>modified</source> + <translation>modifiziert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/> + <source>conflict</source> + <translation>Konflikt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="162"/> + <source>unversioned</source> + <translation>unversioniert</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/> + <source>missing</source> + <translation>fehlt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/> + <source>type error</source> + <translation>Typfehler</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="163"/> + <source>no</source> + <translation>nein</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="164"/> + <source>yes</source> + <translation>ja</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/> + <source>external</source> + <translation>Extern</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/> <source>ignored</source> <translation>ignoriert</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="278"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="280"/> <source>Subversion Status</source> <translation>Subversion Status</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="80"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="82"/> <source>Commit changes to repository...</source> <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="585"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="587"/> <source>Commit</source> <translation>Einpflegen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="683"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="685"/> <source>There are no uncommitted changes available/selected.</source> <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="703"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="705"/> <source>Lock</source> <translation>Sperren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="719"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="721"/> <source>Unlock</source> <translation>Entsperren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="108"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="110"/> <source>Break lock</source> <translation>Sperre brechen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="111"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="113"/> <source>Steal lock</source> <translation>Sperre stehlen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="155"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="157"/> <source>locked</source> <translation>gesperrt</translation> </message> <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="158"/> + <source>other lock</source> + <translation>fremdgesperrt</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="159"/> + <source>stolen lock</source> + <translation>Sperre gestohlen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="160"/> + <source>broken lock</source> + <translation>Sperre gebrochen</translation> + </message> + <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="156"/> - <source>other lock</source> - <translation>fremdgesperrt</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="157"/> - <source>stolen lock</source> - <translation>Sperre gestohlen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="158"/> - <source>broken lock</source> - <translation>Sperre gebrochen</translation> - </message> - <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="154"/> <source>not locked</source> <translation>nicht gesperrt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="152"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/> <source>replaced</source> <translation>ersetzt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="703"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="705"/> <source>There are no unlocked files available/selected.</source> <translation>Es sind keine ungesperrten Dateien vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="753"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="755"/> <source>There are no locked files available/selected.</source> <translation>Es sind keine gesperrten Dateien vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="736"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="738"/> <source>Break Lock</source> <translation>Sperre brechen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="753"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="755"/> <source>Steal Lock</source> <translation>Sperre stehlen</translation> </message> @@ -45076,52 +45076,52 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="62"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="64"/> <source>Press to refresh the status display</source> <translation>Drücken, um die Statusanzeige zu erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="115"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="117"/> <source>Adjust column sizes</source> <translation>Spaltengrößen anpassen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="389"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="395"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="60"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="62"/> <source>Refresh</source> <translation>Erneuern</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="87"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="89"/> <source>Add to repository</source> <translation>Zum Repository hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="91"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="93"/> <source>Revert changes</source> <translation>Änderungen rückgängig</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="624"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="626"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="624"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="626"/> <source>There are no unversioned entries available/selected.</source> <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="666"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="668"/> <source>Revert</source> <translation>Rückgängig machen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="389"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="395"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> @@ -45131,22 +45131,22 @@ <translation>Änderungsliste</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="97"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="99"/> <source>Add to Changelist</source> <translation>Zu Änderungsliste hinzufügen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="787"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="789"/> <source>Remove from Changelist</source> <translation>Von Änderungsliste entfernen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="769"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="771"/> <source>There are no files available/selected not belonging to a changelist.</source> <translation>Es sind keine Dateien vorhanden/ausgewählt, die nicht zu einer Änderungsliste gehören.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="787"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="789"/> <source>There are no files available/selected belonging to a changelist.</source> <translation>Es sind keine Dateien vorhanden/ausgewählt, die zu einer Änderungsliste gehören.</translation> </message> @@ -45211,42 +45211,42 @@ <translation>&Wiederherstellen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="89"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="91"/> <source>Show differences</source> <translation>Unterschiede anzeigen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="93"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="95"/> <source>Restore missing</source> <translation>Fehlende wiederherstellen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="504"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="506"/> <source>all</source> <translation>alle</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="683"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="685"/> <source>Differences</source> <translation>Unterschiede</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="585"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="587"/> <source>There are no entries selected to be committed.</source> <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="666"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="668"/> <source>There are no missing entries available/selected.</source> <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="82"/> - <source>Select all for commit</source> - <translation>Alle zum Einpflegen auswählen</translation> - </message> - <message> <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="84"/> + <source>Select all for commit</source> + <translation>Alle zum Einpflegen auswählen</translation> + </message> + <message> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py" line="86"/> <source>Deselect all from commit</source> <translation>Alle vom Einpflegen abwählen</translation> </message> @@ -45254,17 +45254,17 @@ <context> <name>SvnStatusMonitorThread</name> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py" line="122"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py" line="128"/> <source>Could not start the Subversion process.</source> <translation>Der Subversion Prozess konnte nicht gestartet werden.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py" line="111"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py" line="117"/> <source>Subversion status checked successfully (using svn)</source> <translation>Subversion Status erfolgreich überprüft (mit svn)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="116"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Subversion Status erfolgreich überprüft (mit pysvn)</translation> </message> @@ -45338,37 +45338,37 @@ <context> <name>SvnTagBranchListDialog</name> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="68"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="70"/> <source>Subversion Branches List</source> <translation>Subversion Zweigliste</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="88"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="90"/> <source>Subversion Error</source> <translation>Subversion Fehler</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="76"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="78"/> <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source> <translation>Die URL des Projektrepositories konnte nicht aus der Arbeitskopie ermittelt werden. Die Anzeige Operation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="88"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="90"/> <source>The URL of the project repository has an invalid format. The list operation will be aborted</source> <translation>Die URL des Projektrepositories hat ein ungültiges Format. Die Anzeige Operation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="114"/> <source>Subversion List</source> <translation>Subversion List</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="102"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="104"/> <source>Enter the repository URL containing the tags or branches</source> <translation>Gib den Repositoryzweig ein, der die Tags oder Zweige enthält</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="114"/> <source>The repository URL is empty. Aborting...</source> <translation>Die URL des Reposirories ist leer. Abbruch...</translation> </message> @@ -45457,17 +45457,17 @@ <translation>Alt+P</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="151"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="157"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="151"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="157"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="143"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="145"/> <source>The installed version of PySvn should be 1.4.0 or better.</source> <translation>Die installierte PySvn Version muss 1.4.0 oder neuer sein.</translation> </message> @@ -45603,17 +45603,17 @@ <translation>Zusammenfassung</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="67"/> <source>Subversion Error</source> <translation>Subversion Fehler</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="53"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="55"/> <source>The URL of the project repository could not be retrieved from the working copy. The operation will be aborted</source> <translation>Die URL des Projektrepositories konnte nicht aus der Arbeitskopie ermittelt werden. Die Operation wird abgebrochen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/SvnUrlSelectionDialog.py" line="63"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/SvnUrlSelectionDialog.py" line="65"/> <source>The URL of the project repository has an invalid format. The list operation will be aborted</source> <translation>Die URL des Projektrepositories hat ein ungültiges Format. Die Anzeige Operation wird abgebrochen</translation> </message> @@ -45623,7 +45623,7 @@ <translation>Subversion Diff</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="65"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py" line="67"/> <source>The URL of the project repository has an invalid format. The operation will be aborted</source> <translation>Die URL des Projektrepositories hat ein ungültiges Format. Die Operation wird abgebrochen</translation> </message> @@ -45631,597 +45631,597 @@ <context> <name>SymbolsModel</name> <message> - <location filename="UI/SymbolsWidget.py" line="37"/> + <location filename="UI/SymbolsWidget.py" line="43"/> <source>Code</source> <translation>Code</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="38"/> - <source>Char</source> - <translation>Char</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="39"/> - <source>Hex</source> - <translation>Hex</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="40"/> - <source>HTML</source> - <translation>HTML</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="41"/> - <source>Name</source> - <translation>Name</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Control Characters</source> - <translation>Steuerzeichen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Basic Latin</source> - <translation>Latein einfach</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Latin-1 Supplement</source> - <translation>Latein-1 Erweiterungen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>IPA Extensions</source> - <translation>IPA Erweiterungen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Spacing Modifier Letters</source> - <translation>Zeichen zur Abstandsbestimmung</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Combining Diacritical Marks</source> - <translation>Kombinierende Diakritische Zeichen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Greek and Coptic</source> - <translation>Griechisch und Koptisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Cyrillic</source> - <translation>Kyrillisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Cyrillic Supplement</source> - <translation>Kyrillisch Erweiterungen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Armenian</source> - <translation>Armenisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Hebrew</source> - <translation>Hebräisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Arabic</source> - <translation>Arabisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Syriac</source> - <translation>Syrisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Thaana</source> - <translation>Thaana</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Devanagari</source> - <translation>Devanagari</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Bengali</source> - <translation>Bengali</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Gurmukhi</source> - <translation>Gurmukhi</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Gujarati</source> - <translation>Gujarati</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Oriya</source> - <translation>Oriya</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Tamil</source> - <translation>Tamil</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Telugu</source> - <translation>Telugu</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Kannada</source> - <translation>Kannada</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Malayalam</source> - <translation>Malyisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Sinhala</source> - <translation>Sinhala</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Thai</source> - <translation>Thai</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Lao</source> - <translation>Laotisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Tibetan</source> - <translation>Tibetisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Myanmar</source> - <translation>Burmesisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Georgian</source> - <translation>Georgisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Hangul Jamo</source> - <translation>Hangul Jamo</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Ethiopic</source> - <translation>Äthiopisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Cherokee</source> - <translation>Cherokee-Schrift</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Canadian Aboriginal Syllabics</source> - <translation>Silbenzeichen Kanadischer Ureinwohner</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Ogham</source> - <translation>Ogham</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Runic</source> - <translation>Runen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Tagalog</source> - <translation>Tagalog</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Hanunoo</source> - <translation>Hanunoo</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Buhid</source> - <translation>Buhid</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Tagbanwa</source> - <translation>Tagbanwa</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Khmer</source> - <translation>Khmer</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Mongolian</source> - <translation>Mongolisch</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Limbu</source> - <translation>Limbu</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Tai Le</source> - <translation>Tai Le</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Khmer Symbols</source> - <translation>Khmer Symbole</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Phonetic Extensions</source> - <translation>Phonetische Erweiterungen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Latin Extended Additional</source> - <translation>Latein Zusätzlich Erweitert</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Greek Extended</source> - <translation>Griechisch Erweitert</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>General Punctuation</source> - <translation>Allg. Zeichensetzung</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Superscripts and Subscripts</source> - <translation>Hoch- und Tiefgestellte Zeichen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Currency Symbols</source> - <translation>Währungssymbole</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Letterlike Symbols</source> - <translation>Buchstabenartige Zeichen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Number Forms</source> - <translation>Zahlzeichen</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Arcolumns</source> - <translation>Pfeile</translation> - </message> - <message> - <location filename="UI/SymbolsWidget.py" line="44"/> - <source>Mathematical Operators</source> - <translation>Mathematische Operatoren</translation> - </message> - <message> <location filename="UI/SymbolsWidget.py" line="44"/> + <source>Char</source> + <translation>Char</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="45"/> + <source>Hex</source> + <translation>Hex</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="46"/> + <source>HTML</source> + <translation>HTML</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="47"/> + <source>Name</source> + <translation>Name</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Control Characters</source> + <translation>Steuerzeichen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Basic Latin</source> + <translation>Latein einfach</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Latin-1 Supplement</source> + <translation>Latein-1 Erweiterungen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>IPA Extensions</source> + <translation>IPA Erweiterungen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Spacing Modifier Letters</source> + <translation>Zeichen zur Abstandsbestimmung</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Combining Diacritical Marks</source> + <translation>Kombinierende Diakritische Zeichen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Greek and Coptic</source> + <translation>Griechisch und Koptisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Cyrillic</source> + <translation>Kyrillisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Cyrillic Supplement</source> + <translation>Kyrillisch Erweiterungen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Armenian</source> + <translation>Armenisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Hebrew</source> + <translation>Hebräisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Arabic</source> + <translation>Arabisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Syriac</source> + <translation>Syrisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Thaana</source> + <translation>Thaana</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Devanagari</source> + <translation>Devanagari</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Bengali</source> + <translation>Bengali</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Gurmukhi</source> + <translation>Gurmukhi</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Gujarati</source> + <translation>Gujarati</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Oriya</source> + <translation>Oriya</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Tamil</source> + <translation>Tamil</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Telugu</source> + <translation>Telugu</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Kannada</source> + <translation>Kannada</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Malayalam</source> + <translation>Malyisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Sinhala</source> + <translation>Sinhala</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Thai</source> + <translation>Thai</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Lao</source> + <translation>Laotisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Tibetan</source> + <translation>Tibetisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Myanmar</source> + <translation>Burmesisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Georgian</source> + <translation>Georgisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Hangul Jamo</source> + <translation>Hangul Jamo</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Ethiopic</source> + <translation>Äthiopisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Cherokee</source> + <translation>Cherokee-Schrift</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Canadian Aboriginal Syllabics</source> + <translation>Silbenzeichen Kanadischer Ureinwohner</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Ogham</source> + <translation>Ogham</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Runic</source> + <translation>Runen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Tagalog</source> + <translation>Tagalog</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Hanunoo</source> + <translation>Hanunoo</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Buhid</source> + <translation>Buhid</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Tagbanwa</source> + <translation>Tagbanwa</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Khmer</source> + <translation>Khmer</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Mongolian</source> + <translation>Mongolisch</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Limbu</source> + <translation>Limbu</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Tai Le</source> + <translation>Tai Le</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Khmer Symbols</source> + <translation>Khmer Symbole</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Phonetic Extensions</source> + <translation>Phonetische Erweiterungen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Latin Extended Additional</source> + <translation>Latein Zusätzlich Erweitert</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Greek Extended</source> + <translation>Griechisch Erweitert</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>General Punctuation</source> + <translation>Allg. Zeichensetzung</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Superscripts and Subscripts</source> + <translation>Hoch- und Tiefgestellte Zeichen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Currency Symbols</source> + <translation>Währungssymbole</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Letterlike Symbols</source> + <translation>Buchstabenartige Zeichen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Number Forms</source> + <translation>Zahlzeichen</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Arcolumns</source> + <translation>Pfeile</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> + <source>Mathematical Operators</source> + <translation>Mathematische Operatoren</translation> + </message> + <message> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Control Pictures</source> <translation>Steuergraphiken</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Optical Character Recognition</source> <translation>Optische Zeichenerkennung</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Enclosed Alphanumerics</source> <translation>Eingeschlossene Alphanumerische Zeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Box Drawing</source> <translation>Rahmenzeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Block Elements</source> <translation>Blockelemente</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Dingbats</source> <translation>Dingbats</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Supplement Arcolumns-A</source> <translation>Pfeile Erweitert-A</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Braille Patterns</source> <translation>Braillemuster</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Supplement Arcolumns-B</source> <translation>Pfeile Erweitert-B</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Supplemental Mathematical Operators</source> <translation>Ergänzungen zu mathematischen Operatoren</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Radicals Supplement</source> <translation>CJK Wortstämme Erweitert</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>KangXi Radicals</source> <translation>XangXi Wortstämme</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Ideographic Description Chars</source> <translation>Ideographisch beschreibende Zeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Symbols and Punctuation</source> <translation>CJK Symbole und Zeichensetzung</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Hiragana</source> <translation>Hiragana</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Katakana</source> <translation>Katakana</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Bopomofo</source> <translation>Bopomofo</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Hangul Compatibility Jamo</source> <translation>Hangul Kompatibilität Jamo</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Kanbun</source> <translation>Kanbun</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Bopomofo Extended</source> <translation>Bopomofo Erweitert</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Katakana Phonetic Extensions</source> <translation>Katakana Phonetische Erweiterungen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Enclosed CJK Letters and Months</source> <translation>Umschlossene CJK-Buchstaben und Monate</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Compatibility</source> <translation>CJK Kompatibilität</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Unified Ideogr. Ext. A</source> <translation>CJK Vereinheitlichte Ideogr. Erw.-A</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Yijing Hexagram Symbols</source> <translation>I-Ging Hexagramm Symbole</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Unified Ideographs</source> <translation>CJK Vereinheitlichte Ideographen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Yi Syllables</source> <translation>Yi Silben</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Yi Radicals</source> <translation>Yi Wortstämme</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Hangul Syllables</source> <translation>Hangul Silben</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Compatibility Ideographs</source> <translation>CJK Kompatibilitäts Ideographen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Alphabetic Presentation Forms</source> <translation>Alphabetische Darstellungsformen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Arabic Presentation Forms-A</source> <translation>Arabische Darstellungsform-A</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Variation Selectors</source> <translation>Glypenvarianten</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Combining Half Marks</source> <translation>Kombinierende Halbzeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Compatibility Forms</source> <translation>CJK Kompatibilitätsformen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Small Form Variants</source> <translation>Kleinzeichen Varianten</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Arabic Presentation Forms-B</source> <translation>Arabische Darstellungsform-B</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Half- and Fullwidth Forms</source> <translation>Halb- und Volbbreite Formen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Specials</source> <translation>Sonderzeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Latin Extended A</source> <translation>Latein Erweitert A</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Latin Extended B</source> <translation>Latein Erweitert B</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Miscellaneous Technical</source> <translation>Verschiedene technische Zeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Geometric Shapes</source> <translation>Geometrische Objekte</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Miscellaneous Symbols</source> <translation>Verschiedene Symbole</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Miscellaneous Mathematical Symbols-A</source> <translation>Verschiedene mathematische Symbole-A</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Miscellaneous Mathematical Symbols-B</source> <translation>Verschiedene mathematische Symbole-B</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Miscellaneous Symbols and Arcolumns</source> <translation>Verschiedene Symbole und Pfeile</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>High Surrogates</source> <translation>Obere Ersatzzeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>High Private Use Surrogates</source> <translation>Obere Ersatzzeichen für private Nutzung</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Low Surrogates</source> <translation>Untere Ersatzzeichen</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Private Use</source> <translation>Privater Bereich</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Old Italic</source> <translation>Alt Italienisch</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Gothic</source> <translation>Gothisch</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Deseret</source> <translation>Deseret</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Byzantine Musical Symbols</source> <translation>Byzantinische Musiksymbole</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Musical Symbols</source> <translation>Musiksymbole</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Mathematical Alphanumeric Symbols</source> <translation>Mathematische Alphanumerische Symbole</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Unified Ideogr. Ext. B</source> <translation>CJK Vereinheitlichte Ideogr. Erw. B</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>CJK Compatapility Ideogr. Suppl.</source> <translation>CJK Kompatibilitäts Ideographen Erg.</translation> </message> <message> - <location filename="UI/SymbolsWidget.py" line="44"/> + <location filename="UI/SymbolsWidget.py" line="50"/> <source>Tags</source> <translation>Marken</translation> </message> @@ -46272,7 +46272,7 @@ <translation>Synchronisationsmethode:</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="54"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="56"/> <source>Host:</source> <translation>Rechner:</translation> </message> @@ -46302,22 +46302,22 @@ <translation>User Agent Einstellungen:</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="53"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="55"/> <source>FTP</source> <translation>FTP</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="61"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="63"/> <source>No Synchronization</source> <translation>keine Synchronisation</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="188"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="190"/> <source><font color="#FF0000"><b>Error:</b> {0}</font></source> <translation><font color="#FF0000"><b>Fehler:</b> {0}</font></translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="57"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="59"/> <source>Shared Directory</source> <translation>Gemeinsames Verzeichnis</translation> </message> @@ -46327,7 +46327,7 @@ <translation>Schnellwahleinstellungen:</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncCheckPage.py" line="58"/> + <location filename="Helpviewer/Sync/SyncCheckPage.py" line="60"/> <source>Directory:</source> <translation>Verzeichnis:</translation> </message> @@ -46448,7 +46448,7 @@ <translation>...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncDirectorySettingsPage.py" line="64"/> + <location filename="Helpviewer/Sync/SyncDirectorySettingsPage.py" line="66"/> <source>Shared Directory</source> <translation>Gemeinsames Verzeichnis</translation> </message> @@ -46506,12 +46506,12 @@ <translation>Gib den Schlüssel erneut ein</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="92"/> + <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="94"/> <source>Encryption key must not be empty.</source> <translation>Der Schlüssel darf nicht leer sein.</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="97"/> + <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="99"/> <source>Repeated encryption key is wrong.</source> <translation>Die Schlüsselwiederholung ist falsch.</translation> </message> @@ -46536,17 +46536,17 @@ <translation>Wähle die Länge des erzeugten Schlüssels</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="31"/> + <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="33"/> <source>128 Bits</source> <translation>128 Bits</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="32"/> + <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="34"/> <source>192 Bits</source> <translation>192 Bits</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="33"/> + <location filename="Helpviewer/Sync/SyncEncryptionPage.py" line="35"/> <source>256 Bits</source> <translation>256 Bits</translation> </message> @@ -46647,137 +46647,137 @@ <context> <name>SyncHandler</name> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="220"/> + <location filename="Helpviewer/Sync/SyncHandler.py" line="222"/> <source>Invalid encryption key given.</source> <translation>Ungültiger Schlüssel angegeben.</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="225"/> + <location filename="Helpviewer/Sync/SyncHandler.py" line="227"/> <source>Data cannot be decrypted.</source> <translation>Daten können nicht entschlüsselt werden.</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="57"/> - <source>Remote bookmarks file exists! Syncing local copy...</source> - <translation>Entfernte Lesezeichendatei existiert! Synchronisiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="59"/> - <source>Remote bookmarks file does NOT exists. Exporting local copy...</source> - <translation>Entfernte Lesezeichendatei existiert NICHT. Exportiere lokale Kopie...</translation> + <source>Remote bookmarks file exists! Syncing local copy...</source> + <translation>Entfernte Lesezeichendatei existiert! Synchronisiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="61"/> - <source>Local bookmarks file is NEWER. Exporting local copy...</source> - <translation>Lokale Lesezeichendatei ist JÜNGER. Exportiere lokale Kopie...</translation> + <source>Remote bookmarks file does NOT exists. Exporting local copy...</source> + <translation>Entfernte Lesezeichendatei existiert NICHT. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="63"/> - <source>Local bookmarks file does NOT exist. Skipping synchronization!</source> - <translation>Lokale Lesezeichendatei existiert NICHT. Synchronisation wird übersprungen!</translation> + <source>Local bookmarks file is NEWER. Exporting local copy...</source> + <translation>Lokale Lesezeichendatei ist JÜNGER. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="65"/> + <source>Local bookmarks file does NOT exist. Skipping synchronization!</source> + <translation>Lokale Lesezeichendatei existiert NICHT. Synchronisation wird übersprungen!</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="67"/> <source>Uploading local bookmarks file...</source> <translation>Lade lokale Lesezeichendatei hoch...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="68"/> - <source>Remote history file exists! Syncing local copy...</source> - <translation>Entfernte Chronikdatei existiert! Synchronisiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="70"/> - <source>Remote history file does NOT exists. Exporting local copy...</source> - <translation>Entfernte Chronikdatei existiert NICHT. Exportiere lokale Kopie...</translation> + <source>Remote history file exists! Syncing local copy...</source> + <translation>Entfernte Chronikdatei existiert! Synchronisiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="72"/> - <source>Local history file is NEWER. Exporting local copy...</source> - <translation>Lokale Chronikdatei ist JÜNGER. Exportiere lokale Kopie...</translation> + <source>Remote history file does NOT exists. Exporting local copy...</source> + <translation>Entfernte Chronikdatei existiert NICHT. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="74"/> - <source>Local history file does NOT exist. Skipping synchronization!</source> - <translation>Lokale Chronikdatei existiert NICHT. Synchronisation wird übersprungen!</translation> + <source>Local history file is NEWER. Exporting local copy...</source> + <translation>Lokale Chronikdatei ist JÜNGER. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="76"/> + <source>Local history file does NOT exist. Skipping synchronization!</source> + <translation>Lokale Chronikdatei existiert NICHT. Synchronisation wird übersprungen!</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="78"/> <source>Uploading local history file...</source> <translation>Lade lokale Chronikdatei hoch...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="79"/> - <source>Remote logins file exists! Syncing local copy...</source> - <translation>Entfernte Kennwörterdatei existiert! Synchronisiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="81"/> - <source>Remote logins file does NOT exists. Exporting local copy...</source> - <translation>Entfernte Kennwörterdatei existiert NICHT. Exportiere lokale Kopie...</translation> + <source>Remote logins file exists! Syncing local copy...</source> + <translation>Entfernte Kennwörterdatei existiert! Synchronisiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="83"/> - <source>Local logins file is NEWER. Exporting local copy...</source> - <translation>Lokale Kennwörterdatei ist JÜNGER. Exportiere lokale Kopie...</translation> + <source>Remote logins file does NOT exists. Exporting local copy...</source> + <translation>Entfernte Kennwörterdatei existiert NICHT. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="85"/> - <source>Local logins file does NOT exist. Skipping synchronization!</source> - <translation>Lokale Kennwörterdatei existiert NICHT. Synchronisation wird übersprungen!</translation> + <source>Local logins file is NEWER. Exporting local copy...</source> + <translation>Lokale Kennwörterdatei ist JÜNGER. Exportiere lokale Kopie...</translation> </message> <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="87"/> + <source>Local logins file does NOT exist. Skipping synchronization!</source> + <translation>Lokale Kennwörterdatei existiert NICHT. Synchronisation wird übersprungen!</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="89"/> <source>Uploading local logins file...</source> <translation>Lade lokale Kennwörterdatei hoch...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="90"/> - <source>Remote user agent settings file exists! Syncing local copy...</source> - <translation>Entfernte Datei mit User Agent Daten existiert! Synchronisiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="92"/> + <source>Remote user agent settings file exists! Syncing local copy...</source> + <translation>Entfernte Datei mit User Agent Daten existiert! Synchronisiere lokale Kopie...</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="94"/> <source>Remote user agent settings file does NOT exists. Exporting local copy...</source> <translation>Entfernte Datei mit User Agent Daten existiert NICHT. Exportiere lokale Kopie...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="95"/> - <source>Local user agent settings file is NEWER. Exporting local copy...</source> - <translation>Lokale Datei mit User Agent Daten ist JÜNGER. Exportiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="97"/> + <source>Local user agent settings file is NEWER. Exporting local copy...</source> + <translation>Lokale Datei mit User Agent Daten ist JÜNGER. Exportiere lokale Kopie...</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="99"/> <source>Local user agent settings file does NOT exist. Skipping synchronization!</source> <translation>Lokale Datei mit User Agent Daten existiert NICHT. Synchronisation wird übersprungen!</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="100"/> + <location filename="Helpviewer/Sync/SyncHandler.py" line="102"/> <source>Uploading local user agent settings file...</source> <translation>Lade lokale Datei mit User Agent Daten hoch...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="103"/> - <source>Remote speed dial settings file exists! Syncing local copy...</source> - <translation>Entfernte Datei mit Schnellwahldaten existiert! Synchronisiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="105"/> + <source>Remote speed dial settings file exists! Syncing local copy...</source> + <translation>Entfernte Datei mit Schnellwahldaten existiert! Synchronisiere lokale Kopie...</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="107"/> <source>Remote speed dial settings file does NOT exists. Exporting local copy...</source> <translation>Entfernte Datei mit Schnellwahldaten existiert NICHT. Exportiere lokale Kopie...</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="108"/> - <source>Local speed dial settings file is NEWER. Exporting local copy...</source> - <translation>Lokale Datei mit Schnellwahldaten ist JÜNGER. Exportiere lokale Kopie...</translation> - </message> - <message> <location filename="Helpviewer/Sync/SyncHandler.py" line="110"/> + <source>Local speed dial settings file is NEWER. Exporting local copy...</source> + <translation>Lokale Datei mit Schnellwahldaten ist JÜNGER. Exportiere lokale Kopie...</translation> + </message> + <message> + <location filename="Helpviewer/Sync/SyncHandler.py" line="112"/> <source>Local speed dial settings file does NOT exist. Skipping synchronization!</source> <translation>Lokale Datei mit Schnellwahldaten existiert NICHT. Synchronisation wird übersprungen!</translation> </message> <message> - <location filename="Helpviewer/Sync/SyncHandler.py" line="113"/> + <location filename="Helpviewer/Sync/SyncHandler.py" line="115"/> <source>Uploading local speed dial settings file...</source> <translation>Lade lokale Datei mit Schnellwahldaten hoch...</translation> </message> @@ -46869,7 +46869,7 @@ <translation>Zeigt den Fortschritt der Syntaxprüfung an</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="45"/> + <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="47"/> <source>Show</source> <translation>Zeige</translation> </message> @@ -46884,12 +46884,12 @@ <translation>Nachricht</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="47"/> + <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="49"/> <source>Press to show all files containing an issue</source> <translation>Drücken, um alle Dateien mit Problemen anzuzeigen</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="275"/> + <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="277"/> <source>No issues found.</source> <translation>Keine Probleme gefunden.</translation> </message> @@ -46914,7 +46914,7 @@ <translation>Starten</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="192"/> + <location filename="Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="194"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> @@ -46922,22 +46922,22 @@ <context> <name>SyntaxCheckerPlugin</name> <message> - <location filename="Plugins/PluginSyntaxChecker.py" line="159"/> + <location filename="Plugins/PluginSyntaxChecker.py" line="161"/> <source>Check Syntax</source> <translation>Syntax prüfen</translation> </message> <message> - <location filename="Plugins/PluginSyntaxChecker.py" line="159"/> + <location filename="Plugins/PluginSyntaxChecker.py" line="161"/> <source>&Syntax...</source> <translation>&Syntax...</translation> </message> <message> - <location filename="Plugins/PluginSyntaxChecker.py" line="77"/> + <location filename="Plugins/PluginSyntaxChecker.py" line="79"/> <source>Check syntax.</source> <translation>Syntax prüfen.</translation> </message> <message> - <location filename="Plugins/PluginSyntaxChecker.py" line="162"/> + <location filename="Plugins/PluginSyntaxChecker.py" line="164"/> <source><b>Check Syntax...</b><p>This checks Python files for syntax errors.</p></source> <translation><b>Syntax prüfen...</b><p>Dies überprüft Python Dateien auf Syntaxfehler.</p></translation> </message> @@ -46945,254 +46945,254 @@ <context> <name>TRPreviewer</name> <message> - <location filename="Tools/TRPreviewer.py" line="27"/> + <location filename="Tools/TRPreviewer.py" line="29"/> <source><No translation></source> <translation><Keine Übersetzung></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="58"/> + <location filename="Tools/TRPreviewer.py" line="60"/> <source>Translations Previewer</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="80"/> + <location filename="Tools/TRPreviewer.py" line="82"/> <source>Select language file</source> <translation>Wähle Übersetzungsdatei</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="152"/> - <source>&Open UI Files...</source> - <translation>Öffne &UI Dateien...</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="154"/> + <source>&Open UI Files...</source> + <translation>Öffne &UI Dateien...</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="156"/> <source>Open UI files for display</source> <translation>Öffnet UI Dateien zur Anzeige</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="155"/> + <location filename="Tools/TRPreviewer.py" line="157"/> <source><b>Open UI Files</b><p>This opens some UI files for display.</p></source> <translation><b>Öffne UI Dateien</b><p>Dies öffnet UI Dateien zur Vorschau.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="161"/> - <source>Open &Translation Files...</source> - <translation>Öffne &Übersetzungsdateien...</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="163"/> + <source>Open &Translation Files...</source> + <translation>Öffne &Übersetzungsdateien...</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="165"/> <source>Open Translation files for display</source> <translation>Öffnet Übersetzungsdateien zur Anzeige</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="164"/> + <location filename="Tools/TRPreviewer.py" line="166"/> <source><b>Open Translation Files</b><p>This opens some translation files for display.</p></source> <translation><b>Öffne Übersetzungsdateien</b><p>Dies öffnet Übersetzungsdateien zur Vorschau.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="172"/> + <location filename="Tools/TRPreviewer.py" line="174"/> <source>Reload the loaded translations</source> <translation>Die geladenen Übersetzungen neu laden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="173"/> + <location filename="Tools/TRPreviewer.py" line="175"/> <source><b>Reload Translations</b><p>This reloads the translations for the loaded languages.</p></source> <translation><b>Übersetzungen neu laden</b><p>Dies lädt die Übersetzungen der geladenen Sprachen erneut.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="179"/> + <location filename="Tools/TRPreviewer.py" line="181"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="182"/> + <location filename="Tools/TRPreviewer.py" line="184"/> <source>Quit the application</source> <translation>Beendet die Applikation</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="183"/> + <location filename="Tools/TRPreviewer.py" line="185"/> <source><b>Quit</b><p>Quit the application.</p></source> <translation><b>Beenden</b><p>Beendet die Applikation.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="189"/> + <location filename="Tools/TRPreviewer.py" line="191"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="192"/> + <location filename="Tools/TRPreviewer.py" line="194"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="193"/> + <location filename="Tools/TRPreviewer.py" line="195"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an</b><p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="203"/> - <source>&About</source> - <translation>&Über</translation> - </message> - <message> - <location filename="Tools/TRPreviewer.py" line="204"/> - <source>Display information about this software</source> - <translation>Zeigt Informationen zu diesem Programm an</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="205"/> + <source>&About</source> + <translation>&Über</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="206"/> + <source>Display information about this software</source> + <translation>Zeigt Informationen zu diesem Programm an</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="207"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="211"/> + <location filename="Tools/TRPreviewer.py" line="213"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="212"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="214"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="216"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="220"/> - <source>&Tile</source> - <translation>&Kacheln</translation> - </message> - <message> - <location filename="Tools/TRPreviewer.py" line="221"/> - <source>Tile the windows</source> - <translation>Kacheln der Fenster</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="222"/> + <source>&Tile</source> + <translation>&Kacheln</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="223"/> + <source>Tile the windows</source> + <translation>Kacheln der Fenster</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="224"/> <source><b>Tile the windows</b><p>Rearrange and resize the windows so that they are tiled.</p></source> <translation><b>Kacheln der Fenster</b><p>Verschiebt und verändert die Fenster so, dass sie gekachelt sind.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="228"/> - <source>&Cascade</source> - <translation>K&askadieren</translation> - </message> - <message> - <location filename="Tools/TRPreviewer.py" line="229"/> - <source>Cascade the windows</source> - <translation>Kaskadiere die Fenster</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="230"/> + <source>&Cascade</source> + <translation>K&askadieren</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="231"/> + <source>Cascade the windows</source> + <translation>Kaskadiere die Fenster</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="232"/> <source><b>Cascade the windows</b><p>Rearrange and resize the windows so that they are cascaded.</p></source> <translation><b>Kaskadiere die Fenster</b><p>Verschiebt und verändert die Fenster so, dass sie kaskadiert sind.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="236"/> + <location filename="Tools/TRPreviewer.py" line="238"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="239"/> + <location filename="Tools/TRPreviewer.py" line="241"/> <source>Close the current window</source> <translation>Schließt das aktuelle Fenster</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="240"/> + <location filename="Tools/TRPreviewer.py" line="242"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="246"/> - <source>Clos&e All</source> - <translation>Alle &schließen</translation> - </message> - <message> - <location filename="Tools/TRPreviewer.py" line="247"/> - <source>Close all windows</source> - <translation>Schließt alle Fenster</translation> - </message> - <message> <location filename="Tools/TRPreviewer.py" line="248"/> + <source>Clos&e All</source> + <translation>Alle &schließen</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="249"/> + <source>Close all windows</source> + <translation>Schließt alle Fenster</translation> + </message> + <message> + <location filename="Tools/TRPreviewer.py" line="250"/> <source><b>Close All Windows</b><p>Close all windows.</p></source> <translation><b>Alle Fenster schließen</b><p>Dies schließt alle angezeigten Formulare.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="260"/> + <location filename="Tools/TRPreviewer.py" line="262"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="278"/> + <location filename="Tools/TRPreviewer.py" line="280"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="343"/> + <location filename="Tools/TRPreviewer.py" line="345"/> <source>TR Previewer</source> <translation>TR Betrachter</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="333"/> + <location filename="Tools/TRPreviewer.py" line="335"/> <source><h3> About TR Previewer </h3><p>The TR Previewer loads and displays Qt User-Interface files and translation files and shows dialogs for a selected language.</p></source> <translation><h3> Über TR Betrachter </h3><p>Der TR Betrachter lädt Qt User-Interface Dateienund Übersetzungsdateien und zeigt diese in verschiedenen Sprachen, die über eine Auswahlliste gewählt werden können, an.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="349"/> + <location filename="Tools/TRPreviewer.py" line="351"/> <source>Qt User-Interface Files (*.ui)</source> <translation>Qt Formulare (*.ui)</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="349"/> + <location filename="Tools/TRPreviewer.py" line="351"/> <source>Select UI files</source> <translation>Wähle UI Dateien</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="364"/> + <location filename="Tools/TRPreviewer.py" line="366"/> <source>Qt Translation Files (*.qm)</source> <translation>Übersetzungsdateien (*.qm)</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="364"/> + <location filename="Tools/TRPreviewer.py" line="366"/> <source>Select translation files</source> <translation>Wähle Übersetzungsdateien</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="170"/> + <location filename="Tools/TRPreviewer.py" line="172"/> <source>&Reload Translations</source> <translation>Übersetzungen neu &laden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="181"/> + <location filename="Tools/TRPreviewer.py" line="183"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="191"/> + <location filename="Tools/TRPreviewer.py" line="193"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="238"/> + <location filename="Tools/TRPreviewer.py" line="240"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="289"/> + <location filename="Tools/TRPreviewer.py" line="291"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="299"/> + <location filename="Tools/TRPreviewer.py" line="301"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="271"/> + <location filename="Tools/TRPreviewer.py" line="273"/> <source>&Window</source> <translation>&Fenster</translation> </message> @@ -47200,82 +47200,82 @@ <context> <name>TabWidget</name> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="239"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="241"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="244"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="247"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/> - <source>Save As...</source> - <translation>Speichern unter...</translation> + <source>Save</source> + <translation>Speichern</translation> </message> <message> <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="251"/> + <source>Save As...</source> + <translation>Speichern unter...</translation> + </message> + <message> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="253"/> <source>Save All</source> <translation>Alle speichern</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="260"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="399"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="401"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="227"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="229"/> <source>Move Left</source> <translation>nack links verschieben</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="230"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="232"/> <source>Move Right</source> <translation>nach rechts verschieben</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="198"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="200"/> <source>Close the current editor</source> <translation>Schließt den aktuelle Editor</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="233"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="235"/> <source>Move First</source> <translation>zum Anfang verschieben</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="236"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="238"/> <source>Move Last</source> <translation>zum Schluß verschieben</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="188"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="190"/> <source>Show a navigation menu</source> <translation>Zeige ein Navigationsmenü an</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="241"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/> <source>Close Others</source> <translation>Andere schließen</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="261"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="263"/> <source>Copy Path to Clipboard</source> <translation>Pfad in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="257"/> <source>Open 'rejection' file</source> <translation>Öffne "Ablehnungs"-Datei</translation> </message> @@ -47283,7 +47283,7 @@ <context> <name>TabnannyDialog</name> <message> - <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="188"/> + <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="194"/> <source>No indentation errors found.</source> <translation>Keine Einrückungsfehler gefunden.</translation> </message> @@ -47354,12 +47354,12 @@ <translation>Starten</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="259"/> + <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="265"/> <source>Python2 interpreter not configured.</source> <translation>Kein Python2 Interpreter konfiguriert.</translation> </message> <message> - <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="284"/> + <location filename="Plugins/CheckerPlugins/Tabnanny/TabnannyDialog.py" line="290"/> <source>Python2 interpreter did not finish within 15s.</source> <translation>Python2 Interpreter wurde nicht innerhalb von 15s beendet.</translation> </message> @@ -47367,22 +47367,22 @@ <context> <name>TabnannyPlugin</name> <message> - <location filename="Plugins/PluginTabnanny.py" line="161"/> + <location filename="Plugins/PluginTabnanny.py" line="163"/> <source>Check Indentations</source> <translation>Einrückungen prüfen</translation> </message> <message> - <location filename="Plugins/PluginTabnanny.py" line="161"/> + <location filename="Plugins/PluginTabnanny.py" line="163"/> <source>&Indentations...</source> <translation>&Einrückungen...</translation> </message> <message> - <location filename="Plugins/PluginTabnanny.py" line="77"/> + <location filename="Plugins/PluginTabnanny.py" line="79"/> <source>Check indentations using tabnanny.</source> <translation>Einrückungen mit Tabnanny überprüfen.</translation> </message> <message> - <location filename="Plugins/PluginTabnanny.py" line="164"/> + <location filename="Plugins/PluginTabnanny.py" line="166"/> <source><b>Check Indentations...</b><p>This checks Python files for bad indentations using tabnanny.</p></source> <translation><b>Einrückungen überprüfen...</b><p>Dies überprüft Python Dateien auf fehlerhafte Einrückungen mittels Tabnanny.</p></translation> </message> @@ -47390,12 +47390,12 @@ <context> <name>Tabview</name> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="856"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="858"/> <source>Untitled {0}</source> <translation>Unbenannt {0}</translation> </message> <message> - <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1176"/> + <location filename="Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1178"/> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -47543,22 +47543,22 @@ <translation>Wähle den anzuzeigenden Aufgabentypen aus</translation> </message> <message> - <location filename="Tasks/TaskFilterConfigDialog.py" line="32"/> + <location filename="Tasks/TaskFilterConfigDialog.py" line="34"/> <source>Bugfix</source> <translation>Fehlerbehebung</translation> </message> <message> - <location filename="Tasks/TaskFilterConfigDialog.py" line="33"/> - <source>Warning</source> - <translation>Warnung</translation> - </message> - <message> - <location filename="Tasks/TaskFilterConfigDialog.py" line="34"/> - <source>ToDo</source> - <translation>Aufgabe</translation> - </message> - <message> <location filename="Tasks/TaskFilterConfigDialog.py" line="35"/> + <source>Warning</source> + <translation>Warnung</translation> + </message> + <message> + <location filename="Tasks/TaskFilterConfigDialog.py" line="36"/> + <source>ToDo</source> + <translation>Aufgabe</translation> + </message> + <message> + <location filename="Tasks/TaskFilterConfigDialog.py" line="37"/> <source>Note</source> <translation>Hinweis</translation> </message> @@ -47669,129 +47669,129 @@ <context> <name>TaskViewer</name> <message> - <location filename="Tasks/TaskViewer.py" line="55"/> + <location filename="Tasks/TaskViewer.py" line="57"/> <source>Filename</source> <translation>Dateiname</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="55"/> + <location filename="Tasks/TaskViewer.py" line="57"/> <source>Line</source> <translation>Zeile</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="91"/> - <source>&Go To</source> - <translation>&Gehe zu</translation> - </message> - <message> <location filename="Tasks/TaskViewer.py" line="93"/> - <source>&Copy</source> - <translation>&Kopieren</translation> - </message> - <message> - <location filename="Tasks/TaskViewer.py" line="120"/> - <source>&Paste</source> - <translation>Ein&fügen</translation> + <source>&Go To</source> + <translation>&Gehe zu</translation> </message> <message> <location filename="Tasks/TaskViewer.py" line="95"/> - <source>&Delete</source> - <translation>&Löschen</translation> + <source>&Copy</source> + <translation>&Kopieren</translation> + </message> + <message> + <location filename="Tasks/TaskViewer.py" line="122"/> + <source>&Paste</source> + <translation>Ein&fügen</translation> </message> <message> <location filename="Tasks/TaskViewer.py" line="97"/> + <source>&Delete</source> + <translation>&Löschen</translation> + </message> + <message> + <location filename="Tasks/TaskViewer.py" line="99"/> <source>&Mark Completed</source> <translation>Als &beendet markieren</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="123"/> + <location filename="Tasks/TaskViewer.py" line="125"/> <source>Delete Completed &Tasks</source> <translation>Lösche beendete &Aufgaben</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="116"/> + <location filename="Tasks/TaskViewer.py" line="118"/> <source>&New Task...</source> <translation>&Neue Aufgabe...</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="102"/> + <location filename="Tasks/TaskViewer.py" line="104"/> <source>P&roperties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="127"/> + <location filename="Tasks/TaskViewer.py" line="129"/> <source>&Filtered display</source> <translation>Gef&ilterte Anzeige</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="131"/> + <location filename="Tasks/TaskViewer.py" line="133"/> <source>Filter c&onfiguration...</source> <translation>Fil&terkonfiguration...</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="134"/> + <location filename="Tasks/TaskViewer.py" line="136"/> <source>Resi&ze columns</source> <translation>Spaltenbreite an&passen</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="461"/> + <location filename="Tasks/TaskViewer.py" line="463"/> <source>Activate task filter</source> <translation>Aufgabenfilter aktivieren</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="461"/> + <location filename="Tasks/TaskViewer.py" line="463"/> <source>The task filter doesn't have any active filters. Do you want to configure the filter settings?</source> <translation>Der Aufgabenfilter hat keinen aktiven Filter. Soll die Filterkonfiguration erstellt werden?</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="78"/> + <location filename="Tasks/TaskViewer.py" line="80"/> <source>&Regenerate project tasks</source> <translation>Projektaufgaben &regenerieren</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="524"/> + <location filename="Tasks/TaskViewer.py" line="526"/> <source>Extracting project tasks...</source> <translation>Extrahiere Projektaufgaben...</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="524"/> + <location filename="Tasks/TaskViewer.py" line="526"/> <source>Abort</source> <translation>Abbrechen</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="530"/> + <location filename="Tasks/TaskViewer.py" line="532"/> <source>Extracting project tasks... {0}</source> <translation>Extrahiere Projektaufgaben... {0}</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="55"/> + <location filename="Tasks/TaskViewer.py" line="57"/> <source>Summary</source> <translation>Zusammenfassung</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="136"/> + <location filename="Tasks/TaskViewer.py" line="138"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="82"/> + <location filename="Tasks/TaskViewer.py" line="84"/> <source>&Configure scan options</source> <translation>Scanoptionen &konfigurieren</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="491"/> + <location filename="Tasks/TaskViewer.py" line="493"/> <source>Scan Filter Patterns</source> <translation>Scanfiltermuster</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="491"/> + <location filename="Tasks/TaskViewer.py" line="493"/> <source>Enter filename patterns of files to be excluded separated by a comma:</source> <translation>Gib Dateimuster getrennt durch Komma von Dateien ein, die ignoriert werden sollen:</translation> </message> <message> - <location filename="Tasks/TaskViewer.py" line="76"/> + <location filename="Tasks/TaskViewer.py" line="78"/> <source>P&roject Tasks</source> <translation>&Projektaufgaben</translation> </message> @@ -47862,12 +47862,12 @@ <context> <name>TemplateGroup</name> <message> - <location filename="Templates/TemplateViewer.py" line="93"/> + <location filename="Templates/TemplateViewer.py" line="95"/> <source>Add Template</source> <translation>Vorlage hinzufügen</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="93"/> + <location filename="Templates/TemplateViewer.py" line="95"/> <source><p>The group <b>{0}</b> already contains a template named <b>{1}</b>.</p></source> <translation><p>Die Gruppe <b>{0}</b> besitzt bereits eine Vorlage namens <b>{1}</b>.</p></translation> </message> @@ -47875,17 +47875,17 @@ <context> <name>TemplateMultipleVariablesDialog</name> <message> - <location filename="Templates/TemplateMultipleVariablesDialog.py" line="98"/> + <location filename="Templates/TemplateMultipleVariablesDialog.py" line="100"/> <source>Enter Template Variables</source> <translation>Vorlagenvariablen eingeben</translation> </message> <message> - <location filename="Templates/TemplateMultipleVariablesDialog.py" line="99"/> + <location filename="Templates/TemplateMultipleVariablesDialog.py" line="101"/> <source>&OK</source> <translation>&OK</translation> </message> <message> - <location filename="Templates/TemplateMultipleVariablesDialog.py" line="100"/> + <location filename="Templates/TemplateMultipleVariablesDialog.py" line="102"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> @@ -47893,22 +47893,22 @@ <context> <name>TemplatePropertiesDialog</name> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="47"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="49"/> <source>All</source> <translation>Alle</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="59"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="61"/> <source>Language:</source> <translation>Sprache:</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="63"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="65"/> <source>GROUP</source> <translation>GRUPPE</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="106"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="108"/> <source>Template Help</source> <translation>Hilfe zu Vorlagen</translation> </message> @@ -47948,12 +47948,12 @@ <translation>Gruppe:</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="95"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="97"/> <source>Close dialog</source> <translation>Dialog schließen</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="95"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="97"/> <source>Do you really want to close the dialog?</source> <translation>Soll der Dialog wirklich geschlossen werden?</translation> </message> @@ -47984,12 +47984,12 @@ <translation>Gib eine Beschreibung für die Vorlage ein</translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="35"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="37"/> <source><b>Template name<b><p>Enter the name of the template. Templates may be autocompleted upon this name. In order to support autocompletion. the template name must only consist of letters (a-z and A-Z), digits (0-9) and underscores (_).</p></source> <translation><b>Vorlagenname</b><p>Gib den Namen der Vorlage ein. Vorlagen werden basierend auf ihrem Namen vervollständigt. Um dies zu unterstützen, darf der Name nur Buchstaben (a-z und A-Z), Ziffern (0-9) und Unterstriche (_) enthalten.</p></translation> </message> <message> - <location filename="Templates/TemplatePropertiesDialog.py" line="106"/> + <location filename="Templates/TemplatePropertiesDialog.py" line="108"/> <source><p>To use variables in a template, you just have to enclose the variablename with $-characters. When you use the template, you will then be asked for a value for this variable.</p><p>Example template: This is a $VAR$</p><p>When you use this template you will be prompted for a value for the variable $VAR$. Any occurrences of $VAR$ will then be replaced with whatever you've entered.</p><p>If you need a single $-character in a template, which is not used to enclose a variable, type $$(two dollar characters) instead. They will automatically be replaced with a single $-character when you use the template.</p><p>If you want a variables contents to be treated specially, the variablename must be followed by a ':' and one formatting specifier (e.g. $VAR:ml$). The supported specifiers are:<table><tr><td>ml</td><td>Specifies a multiline formatting. The first line of the variable contents is prefixed with the string occurring before the variable on the same line of the template. All other lines are prefixed by the same amount of whitespace as the line containing the variable.</td></tr><tr><td>rl</td><td>Specifies a repeated line formatting. Each line of the variable contents is prefixed with the string occuring before the variable on the same line of the template.</td></tr></table></p><p>The following predefined variables may be used in a template:<table><tr><td>date</td><td>today's date in ISO format (YYYY-MM-DD)</td></tr><tr><td>year</td><td>the current year</td></tr><tr><td>project_name</td><td>the name of the project (if any)</td></tr><tr><td>project_path</td><td>the path of the project (if any)</td></tr><tr><td>path_name</td><td>full path of the current file</td></tr><tr><td>dir_name</td><td>full path of the parent directory</td></tr><tr><td>file_name</td><td>the current file name (without directory)</td></tr><tr><td>base_name</td><td>like <i>file_name</i>, but without extension</td></tr><tr><td>ext</td><td>the extension of the current file</td></tr><tr><td>cur_select</td><td>the currently selected text</td></tr><tr><td>insertion</td><td>Sets insertion point for cursor after template is inserted.</td></tr><tr><td>select_start</td><td>Sets span of selected text in template after template is inserted (used together with 'select_end').</td></tr><tr><td>select_end</td><td>Sets span of selected text in template after template is inserted (used together with 'select_start').</td></tr><tr><td>clipboard</td><td>the text of the clipboard</td></tr></table></p><p>If you want to change the default delimiter to anything different, please use the configuration dialog to do so.</p></source> <translation><p>Um Variablen in einer Vorlage zu verwenden, muß der Variablenname mit einem $-Zeichen umschlossen werden. Wenn die Vorlage angewandt wird, wird nach einem Wert für diese Variable gefragt.</p><p>Beispiel: Dies ist eine $Variable$</p><p>Wenn diese Vorlage angewandt wird, wird nach einem Wert für die Variable $Variable$ gefragt. Jedes Vorkommen von $Variable$ wird dann durch den eingegebenen Text ersetzt.</p><p>Wird in der Vorlage ein einzelnes $-Zeichen, das keine Variable umschließt, benötigt, so muß dies als $$ (zwei Dollar Zeichen) geschrieben werden. Bei der Anwendung der Vorlage wird dies automatisch zu einem $-Zeichen.</p><p>Soll der Wert einer Variablen speziell behandelt werden, so muß dem Variablennamen ein ':' und eine Formatangabe folgen (z.B. $Variable:ml$). Die unterstützten Formatangaben sind:<table><tr><td>ml</td><td>Gibt ein mehrzeiliges Format an. Der ersten Zeile des Variablenwertes wird die Zeichenkette vor der Variablen der gleichen Zeile in der Vorlage vorangestellt. Allen anderen wird soviel Leerraum vorangestellt, wie die Zeile der Variablen.</td></tr><tr><td>rl</td><td>Gibt ein wiederholendes Format an. Jede Zeile des Variablenwertes wird die Zeichenkette vor der Variablen der gleichen Zeile in der Vorlage vorangestellt.</td></tr></table></p><p>Die folgenden vordefinierten Variablen können in einer Vorlage verwendet werden:<table><tr><td>date</td><td>das aktuelle Datum im ISO Format (JJJJ-MM-TT)</td></tr><tr><td>year</td><td>das aktuelle Jahr</td></tr><tr><td>project_name</td><td>der Name des Projektes (falls vorhanden)</td></tr><tr><td>project_path</td><td>der Pfad des Projektes (falls vorhanden)/td></tr><tr><td>path_name</td><td>voller Pfadname der aktuellen Datei</td></tr><tr><td>dir_name</td><td>voller Pfadname des Verzeichnisses</td></tr><tr><td>file_name</td><td>Dateiname der aktuellen Datei (ohne Verzeichnis)</td></tr><tr><td>base_name</td><td>wie <i>file_name</i>, aber ohne Erweiterung</td></tr><tr><td>ext</td><td>die Erweiterung der aktuellen Datei</td></tr><tr><td>cur_select</td><td>der aktuell ausgewählte Text</td></tr><tr><td>insertion</td><td>Setzt den Cursor an diese Stelle nachdem das Template eingefügt wurde.</td></tr><tr><td>select_start</td><td>Setzt die Auswahl nachdem das Template eingefügt wurde (verwendet zusammen mit 'select_end').</td></tr><tr><td>select_end</td><td>Setzt die Auswahl nachdem das Template eingefügt wurde (verwendet zusammen mit 'select_start').</td></tr><tr><td>clipboard</td><td>der Text der Zwischenablage</td></tr></table></p><p>Soll das einen Variablennamen umschließende Zeichen geändert werden, so kann dies im Konfigurationsdialog geschehen.</p></translation> </message> @@ -48015,132 +48015,132 @@ <context> <name>TemplateViewer</name> <message> - <location filename="Templates/TemplateViewer.py" line="826"/> + <location filename="Templates/TemplateViewer.py" line="828"/> <source>Edit Template Group</source> <translation>Vorlagengruppe editieren</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="512"/> + <location filename="Templates/TemplateViewer.py" line="514"/> <source>Remove Template</source> <translation>Vorlage löschen</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="538"/> + <location filename="Templates/TemplateViewer.py" line="540"/> <source>Import Templates</source> <translation>Vorlagen importieren</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="552"/> + <location filename="Templates/TemplateViewer.py" line="554"/> <source>Export Templates</source> <translation>Vorlagen exportieren</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="826"/> + <location filename="Templates/TemplateViewer.py" line="828"/> <source><p>A template group with the name <b>{0}</b> already exists.</p></source> <translation><p>Eine Vorlagengruppe mit dem Namen <b>{0}</b> existiert bereits.</p></translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="512"/> + <location filename="Templates/TemplateViewer.py" line="514"/> <source><p>Do you really want to remove <b>{0}</b>?</p></source> <translation><p>Soll <b>{0}</b> wirklich gelöscht werden?</p></translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="386"/> - <source>Apply</source> - <translation>Anwenden</translation> - </message> - <message> <location filename="Templates/TemplateViewer.py" line="388"/> - <source>Add entry...</source> - <translation>Eintrag hinzufügen...</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="403"/> - <source>Add group...</source> - <translation>Gruppe hinzufügen...</translation> + <source>Apply</source> + <translation>Anwenden</translation> </message> <message> <location filename="Templates/TemplateViewer.py" line="390"/> - <source>Edit...</source> - <translation>Bearbeiten...</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="391"/> - <source>Remove</source> - <translation>Entfernen</translation> + <source>Add entry...</source> + <translation>Eintrag hinzufügen...</translation> </message> <message> <location filename="Templates/TemplateViewer.py" line="405"/> - <source>Save</source> - <translation>Speichern</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="406"/> - <source>Import...</source> - <translation>Import...</translation> + <source>Add group...</source> + <translation>Gruppe hinzufügen...</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="392"/> + <source>Edit...</source> + <translation>Bearbeiten...</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="393"/> + <source>Remove</source> + <translation>Entfernen</translation> </message> <message> <location filename="Templates/TemplateViewer.py" line="407"/> + <source>Save</source> + <translation>Speichern</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="408"/> + <source>Import...</source> + <translation>Import...</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="409"/> <source>Export...</source> <translation>Export...</translation> </message> <message> + <location filename="Templates/TemplateViewer.py" line="412"/> + <source>Help about Templates...</source> + <translation>Hilfe zu Vorlagen...</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="592"/> + <source>Template Help</source> + <translation>Hilfe zu Vorlagen</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="554"/> + <source>Templates Files (*.e4c);; All Files (*)</source> + <translation>Vorlagen Dateien (*.e4c);;Alle Dateien (*)</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="920"/> + <source>Save templates</source> + <translation>Vorlagen speichern</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="920"/> + <source><p>The templates file <b>{0}</b> could not be written.</p></source> + <translation><p>Die Vorlagendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="950"/> + <source>Read templates</source> + <translation>Vorlagen lesen</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="950"/> + <source><p>The templates file <b>{0}</b> could not be read.</p></source> + <translation><p>Die Vorlagendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="414"/> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> + <location filename="Templates/TemplateViewer.py" line="592"/> + <source><p><b>Template groups</b> are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.</p><p><b>Template entries</b> are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.</p></source> + <translation><p><b>Vorlagen Gruppen</b> sind ein Mittel, um einzelne Vorlagen zusammenzufassen. Gruppen haben ein Attribut, das angibt, für welche Programmiersprache sie gültig sind. Um Vorlagen hinzuzufügen, muß mindestens eine Vorlagengruppe angelegt werden.</p><p><b>Vorlagen Einträge</b> sind die eigentlichen Vorlagen. Sie werden durch Vorlagengruppen zusammengefaßt. Zusätzlich Hilfe zu Vorlagen ist im Editierdialog verfügbar.</p></translation> + </message> + <message> <location filename="Templates/TemplateViewer.py" line="410"/> - <source>Help about Templates...</source> - <translation>Hilfe zu Vorlagen...</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="590"/> - <source>Template Help</source> - <translation>Hilfe zu Vorlagen</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="552"/> - <source>Templates Files (*.e4c);; All Files (*)</source> - <translation>Vorlagen Dateien (*.e4c);;Alle Dateien (*)</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="918"/> - <source>Save templates</source> - <translation>Vorlagen speichern</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="918"/> - <source><p>The templates file <b>{0}</b> could not be written.</p></source> - <translation><p>Die Vorlagendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="948"/> - <source>Read templates</source> - <translation>Vorlagen lesen</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="948"/> - <source><p>The templates file <b>{0}</b> could not be read.</p></source> - <translation><p>Die Vorlagendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="412"/> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="590"/> - <source><p><b>Template groups</b> are a means of grouping individual templates. Groups have an attribute that specifies, which programming language they apply for. In order to add template entries, at least one group has to be defined.</p><p><b>Template entries</b> are the actual templates. They are grouped by the template groups. Help about how to define them is available in the template edit dialog.</p></source> - <translation><p><b>Vorlagen Gruppen</b> sind ein Mittel, um einzelne Vorlagen zusammenzufassen. Gruppen haben ein Attribut, das angibt, für welche Programmiersprache sie gültig sind. Um Vorlagen hinzuzufügen, muß mindestens eine Vorlagengruppe angelegt werden.</p><p><b>Vorlagen Einträge</b> sind die eigentlichen Vorlagen. Sie werden durch Vorlagengruppen zusammengefaßt. Zusätzlich Hilfe zu Vorlagen ist im Editierdialog verfügbar.</p></translation> - </message> - <message> - <location filename="Templates/TemplateViewer.py" line="408"/> <source>Reload</source> <translation>Erneut laden</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="573"/> + <location filename="Templates/TemplateViewer.py" line="575"/> <source>Reload Templates</source> <translation>Vorlagen neu laden</translation> </message> <message> - <location filename="Templates/TemplateViewer.py" line="573"/> + <location filename="Templates/TemplateViewer.py" line="575"/> <source>The templates contain unsaved changes. Shall these changes be discarded?</source> <translation>Die Vorlagen enthalten ungesicherte Änderungen. Sollen diese verworfen werden?</translation> </message> @@ -48226,52 +48226,52 @@ <context> <name>ToolConfigurationDialog</name> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="121"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="123"/> <source>Add tool entry</source> <translation>Werkzeuge Eintrag hinzufügen</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="99"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="101"/> <source>You have to set an executable to add to the Tools-Menu first.</source> <translation>Sie müssen eine ausführbare Datei angeben, um einen Eintrag zum Werkzeuge Menü hinzuzufügen.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="106"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="108"/> <source>You have to insert a menuentry text to add the selected program to the Tools-Menu first.</source> <translation>Sie müssen einen Menütext angeben, um einen Eintrag zum Werkzeuge Menü hinzuzufügen.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="259"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="261"/> <source>The selected file is not an executable. Please choose an executable filename.</source> <translation>Die gewählte Datei ist nicht ausführbar. Bitte wählen Sie einen ausführbaren Dateinamen.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="259"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="261"/> <source>Select executable</source> <translation>Wähle ausführbare Datei</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="113"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="115"/> <source>The selected file could not be found or is not an executable. Please choose an executable filename.</source> <translation>Die ausgewählte Datei konnte nicht gefunden werden oder ist nicht ausführbar. Bitte wählen sie eine ausführbare Datei.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="167"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="169"/> <source>Change tool entry</source> <translation>Werkzeugeintrag ändern</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="153"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="155"/> <source>You have to set an executable to change the Tools-Menu entry.</source> <translation>Sie müssen eine ausführbare Datei angeben, um einen Eintrag des Werkzeuge Menüs zu ändern.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="160"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="162"/> <source>You have to insert a menuentry text to change the selected Tools-Menu entry.</source> <translation>Sie müssen einen Menütext angeben, um einen Eintrag des Werkzeuge Menüs zu ändern.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="167"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="169"/> <source>The selected file could not be found or is not an executable. Please choose an existing executable filename.</source> <translation>Die ausgewählte Datei konnte nicht gefunden werden oder ist nicht ausführbar. Bitte wählen sie eine vorhandenen, ausführbare Datei.</translation> </message> @@ -48535,37 +48535,37 @@ <translation>Ausführbare &Datei:</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="40"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="42"/> <source>no redirection</source> <translation>keine Umleitung</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="41"/> - <source>show output</source> - <translation>Ausgabe anzeigen</translation> - </message> - <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="42"/> - <source>insert into current editor</source> - <translation>in aktuellen Editor einfügen</translation> - </message> - <message> <location filename="Preferences/ToolConfigurationDialog.py" line="43"/> + <source>show output</source> + <translation>Ausgabe anzeigen</translation> + </message> + <message> + <location filename="Preferences/ToolConfigurationDialog.py" line="44"/> + <source>insert into current editor</source> + <translation>in aktuellen Editor einfügen</translation> + </message> + <message> + <location filename="Preferences/ToolConfigurationDialog.py" line="45"/> <source>replace selection of current editor</source> <translation>Auswahl des aktuellen Editors ersetzen</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="121"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="123"/> <source>An entry for the menu text {0} already exists.</source> <translation>Ein Eintrag für den Menütext {0} existiert bereits.</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="272"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="274"/> <source>Select icon file</source> <translation>Wähle Symboldatei aus</translation> </message> <message> - <location filename="Preferences/ToolConfigurationDialog.py" line="272"/> + <location filename="Preferences/ToolConfigurationDialog.py" line="274"/> <source>Icon files (*.png)</source> <translation>Symbol Dateien (*.png)</translation> </message> @@ -48732,27 +48732,27 @@ <p>Gib den Menütext ein. Dem Tastaturkürzel muß ein & Zeichen vorangestellt werden.</p></translation> </message> <message> - <location filename="Preferences/ToolGroupConfigurationDialog.py" line="92"/> + <location filename="Preferences/ToolGroupConfigurationDialog.py" line="94"/> <source>Add tool group entry</source> <translation>Werkzeuggruppen Eintrag hinzufügen</translation> </message> <message> - <location filename="Preferences/ToolGroupConfigurationDialog.py" line="86"/> + <location filename="Preferences/ToolGroupConfigurationDialog.py" line="88"/> <source>You have to give a name for the group to add.</source> <translation>Sie müssen einen Namen für die neue Gruppe angeben.</translation> </message> <message> - <location filename="Preferences/ToolGroupConfigurationDialog.py" line="92"/> + <location filename="Preferences/ToolGroupConfigurationDialog.py" line="94"/> <source>An entry for the group name {0} already exists.</source> <translation>Ein Eintrag für den Gruppennamen {0} existiert bereits.</translation> </message> <message> - <location filename="Preferences/ToolGroupConfigurationDialog.py" line="110"/> + <location filename="Preferences/ToolGroupConfigurationDialog.py" line="112"/> <source>Delete tool group entry</source> <translation>Werkzeuggruppen Eintrag löschen</translation> </message> <message> - <location filename="Preferences/ToolGroupConfigurationDialog.py" line="110"/> + <location filename="Preferences/ToolGroupConfigurationDialog.py" line="112"/> <source><p>Do you really want to delete the tool group <b>"{0}"</b>?</p></source> <translation><p>Soll die Werkzeuggruppe <b>"{0}"</b> wirklich gelöscht werden?</p></translation> </message> @@ -48844,12 +48844,12 @@ <translation>Liste der Dateien und Pfade, die nicht übersetzt werden sollen</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="167"/> + <location filename="Project/TranslationPropertiesDialog.py" line="169"/> <source>Exempt file from translation</source> <translation>Datei von der Übersetzung ausnehmen</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="180"/> + <location filename="Project/TranslationPropertiesDialog.py" line="182"/> <source>Exempt directory from translation</source> <translation>Verzeichnis von der Übersetzung ausnehmen</translation> </message> @@ -48864,17 +48864,17 @@ <translation>Löscht den ausgewählte Eintrag aus der Liste</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="60"/> + <location filename="Project/TranslationPropertiesDialog.py" line="62"/> <source>Source Files ({0});;</source> <translation>Quelldateien ({0});;</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="62"/> - <source>Forms Files ({0});;</source> - <translation>Formulare ({0});;</translation> - </message> - <message> <location filename="Project/TranslationPropertiesDialog.py" line="64"/> + <source>Forms Files ({0});;</source> + <translation>Formulare ({0});;</translation> + </message> + <message> + <location filename="Project/TranslationPropertiesDialog.py" line="66"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> @@ -48884,12 +48884,12 @@ <translation>Gib das Pfadmuster für Übersetzungsdateien ein</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="96"/> + <location filename="Project/TranslationPropertiesDialog.py" line="98"/> <source>Select translation file</source> <translation>Wähle Übersetzungsdatei</translation> </message> <message> - <location filename="Project/TranslationPropertiesDialog.py" line="124"/> + <location filename="Project/TranslationPropertiesDialog.py" line="126"/> <source>Select directory for binary translations</source> <translation>Wähle Verzeichnis für binäre Übersetzungsdateien</translation> </message> @@ -48918,27 +48918,27 @@ <context> <name>TranslationsDict</name> <message> - <location filename="Tools/TRPreviewer.py" line="483"/> + <location filename="Tools/TRPreviewer.py" line="485"/> <source>Set Translator</source> <translation>Übersetzung aktivieren</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="455"/> + <location filename="Tools/TRPreviewer.py" line="457"/> <source><p>The translation filename <b>{0}</b> is invalid.</p></source> <translation><p>Die Übersetzungsdatei <b>{0}</b> ist ungültig.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="483"/> + <location filename="Tools/TRPreviewer.py" line="485"/> <source><p>The translator <b>{0}</b> is not known.</p></source> <translation><p>Der Übersetzer <b>{0}</b> ist unbekannt.</p></translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="623"/> + <location filename="Tools/TRPreviewer.py" line="625"/> <source>Load Translator</source> <translation>Übersetzungsdatei laden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="623"/> + <location filename="Tools/TRPreviewer.py" line="625"/> <source><p>The translation file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die Übersetzungsdatei <b>{0}</b> konnte nicht geladen werden.</p></translation> </message> @@ -48946,12 +48946,12 @@ <context> <name>Transplant</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/transplant.py" line="71"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/transplant.py" line="73"/> <source>Transplant Changesets</source> <translation>Änderungssätze transplantieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/transplant.py" line="98"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/transplant.py" line="100"/> <source>Transplant Changesets (Continue)</source> <translation>Änderungssätze transplantieren (Fortsetzung)</translation> </message> @@ -49032,52 +49032,52 @@ <context> <name>TransplantProjectHelper</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="114"/> <source>Transplant Changesets</source> <translation>Änderungssätze transplantieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="52"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="54"/> <source>Transplant changesets from another branch</source> <translation>Änderungssätze aus einem anderen Zweig transplantieren</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="55"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="57"/> <source><b>Transplant Changesets</b><p>This transplants changesets from another branch on top of the current working directory with the log of the original changeset.</p></source> <translation><b>Änderungssätze transplantieren</b><p>Dies transplantier Änderungssätze aus einem anderen Zweig mit der Originaländerungsmeldung in das Arbeitsverzeichnis.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="67"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="69"/> <source>Continue the last transplant session after repair</source> <translation>Setzt die letzte Transplantationssitzung nach Reparatur fort</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="103"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="105"/> <source>Transplant</source> <translation>Transplantation</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="126"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="128"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="126"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="128"/> <source>Transplant Changesets (Continue)</source> <translation>Änderungssätze transplantieren (Fortsetzung)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="63"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="65"/> <source>Continue Transplant Session</source> <translation>Transplantationssitzung fortsetzen</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="70"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="72"/> <source><b>Continue Transplant Session</b><p>This continues the last transplant session after repair.</p></source> <translation><b>Transplantationssitzung fortsetzen</b><p>Dies setzt die letzte Transplantationssitzung nach Reparatur fort.</p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="88"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/TransplantExtension/ProjectHelper.py" line="90"/> <source>Transplant is deprecated</source> <translation>Transplant ist überholt</translation> </message> @@ -49085,132 +49085,132 @@ <context> <name>TrayStarter</name> <message> - <location filename="Tools/TrayStarter.py" line="56"/> + <location filename="Tools/TrayStarter.py" line="58"/> <source>Recent Projects</source> <translation>Zuletzt geöffnete Projekte</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="66"/> + <location filename="Tools/TrayStarter.py" line="68"/> <source>Recent Files</source> <translation>Zuletzt geöffnete Dateien</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="77"/> + <location filename="Tools/TrayStarter.py" line="79"/> <source>QRegExp editor</source> <translation>QRegExp Editor</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="78"/> + <location filename="Tools/TrayStarter.py" line="80"/> <source>Python re editor</source> <translation>Python re Editor</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="81"/> - <source>UI Previewer</source> - <translation>UI Betrachter</translation> - </message> - <message> <location filename="Tools/TrayStarter.py" line="83"/> - <source>Translations Previewer</source> - <translation>Übersetzungsvorschau</translation> + <source>UI Previewer</source> + <translation>UI Betrachter</translation> </message> <message> <location filename="Tools/TrayStarter.py" line="85"/> + <source>Translations Previewer</source> + <translation>Übersetzungsvorschau</translation> + </message> + <message> + <location filename="Tools/TrayStarter.py" line="87"/> <source>Unittest</source> <translation>Modultest</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="91"/> - <source>Compare Files</source> - <translation>Dateien vergleichen</translation> - </message> - <message> <location filename="Tools/TrayStarter.py" line="93"/> + <source>Compare Files</source> + <translation>Dateien vergleichen</translation> + </message> + <message> + <location filename="Tools/TrayStarter.py" line="95"/> <source>Compare Files side by side</source> <translation>Dateien Seite an Seite vergleichen</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="115"/> + <location filename="Tools/TrayStarter.py" line="117"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="136"/> + <location filename="Tools/TrayStarter.py" line="138"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="212"/> + <location filename="Tools/TrayStarter.py" line="214"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="212"/> + <location filename="Tools/TrayStarter.py" line="214"/> <source><p>Could not start the process.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Prozess konnte nicht gestartet werden.<br>StellenSie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="212"/> + <location filename="Tools/TrayStarter.py" line="214"/> <source>OK</source> <translation>OK</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="107"/> - <source>Install Plugin</source> - <translation>Plugin installieren</translation> - </message> - <message> <location filename="Tools/TrayStarter.py" line="109"/> - <source>Uninstall Plugin</source> - <translation>Plugin deinstallieren</translation> + <source>Install Plugin</source> + <translation>Plugin installieren</translation> </message> <message> <location filename="Tools/TrayStarter.py" line="111"/> + <source>Uninstall Plugin</source> + <translation>Plugin deinstallieren</translation> + </message> + <message> + <location filename="Tools/TrayStarter.py" line="113"/> <source>Plugin Repository</source> <translation>Plugin Repository</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="61"/> + <location filename="Tools/TrayStarter.py" line="63"/> <source>Recent Multiprojects</source> <translation>Zuletzt geöffnete Mehrfachprojekte</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="97"/> + <location filename="Tools/TrayStarter.py" line="99"/> <source>SQL Browser</source> <translation>SQL Browser</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="70"/> + <location filename="Tools/TrayStarter.py" line="72"/> <source>Eric5 tray starter</source> <translation>Eric5 Systemstarter</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="117"/> - <source>eric5 IDE</source> - <translation>eric5 Entwicklungsumgebung</translation> - </message> - <message> <location filename="Tools/TrayStarter.py" line="119"/> + <source>eric5 IDE</source> + <translation>eric5 Entwicklungsumgebung</translation> + </message> + <message> + <location filename="Tools/TrayStarter.py" line="121"/> <source>eric5 Mini Editor</source> <translation>eric5 Mini Editor</translation> </message> <message> + <location filename="Tools/TrayStarter.py" line="105"/> + <source>Icon Editor</source> + <translation>Icon Editor</translation> + </message> + <message> + <location filename="Tools/TrayStarter.py" line="89"/> + <source>eric5 Web Browser</source> + <translation>eric5 Web-Browser</translation> + </message> + <message> <location filename="Tools/TrayStarter.py" line="103"/> - <source>Icon Editor</source> - <translation>Icon Editor</translation> - </message> - <message> - <location filename="Tools/TrayStarter.py" line="87"/> - <source>eric5 Web Browser</source> - <translation>eric5 Web-Browser</translation> - </message> - <message> - <location filename="Tools/TrayStarter.py" line="101"/> <source>Snapshot</source> <translation>Bildschirmfoto</translation> </message> <message> - <location filename="Tools/TrayStarter.py" line="123"/> + <location filename="Tools/TrayStarter.py" line="125"/> <source>Configure Tray Starter</source> <translation>Systemstarter konfigurieren</translation> </message> @@ -49271,277 +49271,277 @@ <context> <name>UIPreviewer</name> <message> - <location filename="Tools/UIPreviewer.py" line="295"/> + <location filename="Tools/UIPreviewer.py" line="297"/> <source>UI Previewer</source> <translation>UI Betrachter</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="68"/> + <location filename="Tools/UIPreviewer.py" line="70"/> <source>Select GUI Theme</source> <translation>Wähle den Oberflächenstil</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="75"/> + <location filename="Tools/UIPreviewer.py" line="77"/> <source>Select the GUI Theme</source> <translation>Wähle den Oberflächenstil</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="123"/> + <location filename="Tools/UIPreviewer.py" line="125"/> <source>&Open File</source> <translation>Datei &öffnen</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="127"/> + <location filename="Tools/UIPreviewer.py" line="129"/> <source><b>Open File</b><p>This opens a new UI file for display.</p></source> <translation><b>Datei öffnen</b><p>Dies öffnet eine neue UI-Datei für die Anzeige.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="164"/> + <location filename="Tools/UIPreviewer.py" line="166"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="167"/> + <location filename="Tools/UIPreviewer.py" line="169"/> <source>Quit the application</source> <translation>Beendet die Applikation</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="168"/> + <location filename="Tools/UIPreviewer.py" line="170"/> <source><b>Quit</b><p>Quit the application.</p></source> <translation><b>Beenden</b><p>Beendet die Applikation.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="184"/> + <location filename="Tools/UIPreviewer.py" line="186"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="187"/> + <location filename="Tools/UIPreviewer.py" line="189"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="188"/> + <location filename="Tools/UIPreviewer.py" line="190"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="198"/> - <source>&About</source> - <translation>Ü&ber</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="199"/> - <source>Display information about this software</source> - <translation>Zeigt Informationen zu diesem Programm an</translation> - </message> - <message> <location filename="Tools/UIPreviewer.py" line="200"/> + <source>&About</source> + <translation>Ü&ber</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="201"/> + <source>Display information about this software</source> + <translation>Zeigt Informationen zu diesem Programm an</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="202"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="206"/> + <location filename="Tools/UIPreviewer.py" line="208"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="207"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt Toolkit an</translation> - </message> - <message> <location filename="Tools/UIPreviewer.py" line="209"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt Toolkit an</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="211"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="221"/> + <location filename="Tools/UIPreviewer.py" line="223"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="237"/> + <location filename="Tools/UIPreviewer.py" line="239"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="285"/> + <location filename="Tools/UIPreviewer.py" line="287"/> <source><h3> About UI Previewer </h3><p>The UI Previewer loads and displays Qt User-Interface files with various styles, which are selectable via a selection list.</p></source> <translation><h3> Über UI Betrachter </h3><p>Der UI Betrachter lädt Qt User-Interface Dateien und zeigt diese in verschiedenen Stilen, die über eine Auswahlliste gewählt werden können, an.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="301"/> + <location filename="Tools/UIPreviewer.py" line="303"/> <source>Qt User-Interface Files (*.ui)</source> <translation>Qt Formulare (*.ui)</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="301"/> + <location filename="Tools/UIPreviewer.py" line="303"/> <source>Select UI file</source> <translation>Wähle UI Datei</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="338"/> + <location filename="Tools/UIPreviewer.py" line="340"/> <source>Load UI File</source> <translation>UI Datei laden</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="338"/> + <location filename="Tools/UIPreviewer.py" line="340"/> <source><p>The file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="126"/> + <location filename="Tools/UIPreviewer.py" line="128"/> <source>Open a UI file for display</source> <translation>Öffnet eine UI Datei zur Anzeige</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="133"/> + <location filename="Tools/UIPreviewer.py" line="135"/> <source>&Print</source> <translation>&Drucken</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="136"/> + <location filename="Tools/UIPreviewer.py" line="138"/> <source>Print a screen capture</source> <translation>Ein Bildschirmfoto drucken</translation> </message> <message> + <location filename="Tools/UIPreviewer.py" line="139"/> + <source><b>Print</b><p>Print a screen capture.</p></source> + <translation><b>Drucken</b><p>Ein Bildschirmfoto drucken.</p></translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="155"/> + <source>&Screen Capture</source> + <translation>&Bildschirmfoto</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="159"/> + <source>Save a screen capture to an image file</source> + <translation>Ein Bildschirmfoto in eine Datei schreiben</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="176"/> + <source>&Copy</source> + <translation>&Kopieren</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="179"/> + <source>Copy screen capture to clipboard</source> + <translation>Bildschormfoto in die Zwischenablage kopieren</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="180"/> + <source><b>Copy</b><p>Copy screen capture to clipboard.</p></source> + <translation><b>Kopieren</b><p>Kopiert ein Bildschirmfoto in die Zwischenablage.</p></translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="233"/> + <source>&Edit</source> + <translation>&Bearbeiten</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="468"/> + <source>Save Image</source> + <translation>Bildschirmfoto speichern</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="524"/> + <source>There is no UI file loaded.</source> + <translation>Es ist keine UI Datei geladen.</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="437"/> + <source>Images ({0})</source> + <translation>Bilder ({0})</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="458"/> + <source><p>The file <b>{0}</b> could not be saved.</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="506"/> + <source>Printing the image...</source> + <translation>Drucke das Bild...</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="515"/> + <source>Image sent to printer...</source> + <translation>Bild wurde zum Drucker geschickt...</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="160"/> + <source><b>Screen Capture</b><p>Save a screen capture to an image file.</p></source> + <translation><b>Bildschirmfoto</b><p>Ein Bildschirmfoto in eine Datei schreiben.</p></translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="127"/> + <source>Ctrl+O</source> + <comment>File|Open</comment> + <translation>Ctrl+O</translation> + </message> + <message> <location filename="Tools/UIPreviewer.py" line="137"/> - <source><b>Print</b><p>Print a screen capture.</p></source> - <translation><b>Drucken</b><p>Ein Bildschirmfoto drucken.</p></translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="153"/> - <source>&Screen Capture</source> - <translation>&Bildschirmfoto</translation> + <source>Ctrl+P</source> + <comment>File|Print</comment> + <translation>Ctrl+P</translation> </message> <message> <location filename="Tools/UIPreviewer.py" line="157"/> - <source>Save a screen capture to an image file</source> - <translation>Ein Bildschirmfoto in eine Datei schreiben</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="174"/> - <source>&Copy</source> - <translation>&Kopieren</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="177"/> - <source>Copy screen capture to clipboard</source> - <translation>Bildschormfoto in die Zwischenablage kopieren</translation> + <source>Ctrl+S</source> + <comment>File|Screen Capture</comment> + <translation>Ctrl+S</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="168"/> + <source>Ctrl+Q</source> + <comment>File|Quit</comment> + <translation>Ctrl+Q</translation> </message> <message> <location filename="Tools/UIPreviewer.py" line="178"/> - <source><b>Copy</b><p>Copy screen capture to clipboard.</p></source> - <translation><b>Kopieren</b><p>Kopiert ein Bildschirmfoto in die Zwischenablage.</p></translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="231"/> - <source>&Edit</source> - <translation>&Bearbeiten</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="466"/> - <source>Save Image</source> - <translation>Bildschirmfoto speichern</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="522"/> - <source>There is no UI file loaded.</source> - <translation>Es ist keine UI Datei geladen.</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="435"/> - <source>Images ({0})</source> - <translation>Bilder ({0})</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="456"/> - <source><p>The file <b>{0}</b> could not be saved.</p></source> - <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="504"/> - <source>Printing the image...</source> - <translation>Drucke das Bild...</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="513"/> - <source>Image sent to printer...</source> - <translation>Bild wurde zum Drucker geschickt...</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="158"/> - <source><b>Screen Capture</b><p>Save a screen capture to an image file.</p></source> - <translation><b>Bildschirmfoto</b><p>Ein Bildschirmfoto in eine Datei schreiben.</p></translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="125"/> - <source>Ctrl+O</source> - <comment>File|Open</comment> - <translation>Ctrl+O</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="135"/> - <source>Ctrl+P</source> - <comment>File|Print</comment> - <translation>Ctrl+P</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="155"/> - <source>Ctrl+S</source> - <comment>File|Screen Capture</comment> - <translation>Ctrl+S</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="166"/> - <source>Ctrl+Q</source> - <comment>File|Quit</comment> - <translation>Ctrl+Q</translation> - </message> - <message> - <location filename="Tools/UIPreviewer.py" line="176"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="186"/> + <location filename="Tools/UIPreviewer.py" line="188"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="248"/> + <location filename="Tools/UIPreviewer.py" line="250"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="258"/> + <location filename="Tools/UIPreviewer.py" line="260"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="262"/> + <location filename="Tools/UIPreviewer.py" line="264"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="522"/> + <location filename="Tools/UIPreviewer.py" line="524"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="145"/> - <source>Print preview a screen capture</source> - <translation>Druckvorschau eines Bildschirmfotos</translation> - </message> - <message> <location filename="Tools/UIPreviewer.py" line="147"/> + <source>Print preview a screen capture</source> + <translation>Druckvorschau eines Bildschirmfotos</translation> + </message> + <message> + <location filename="Tools/UIPreviewer.py" line="149"/> <source><b>Print Preview</b><p>Print preview a screen capture.</p></source> <translation><b>Druckvorschau</b><p>Zeigt die Druckvorschau eines Bildschirmfotos.</p></translation> </message> <message> - <location filename="Tools/UIPreviewer.py" line="483"/> + <location filename="Tools/UIPreviewer.py" line="485"/> <source>Print Image</source> <translation>Bildschirmfoto drucken</translation> </message> @@ -49549,22 +49549,22 @@ <context> <name>UMLClassDiagramBuilder</name> <message> - <location filename="Graphics/UMLClassDiagramBuilder.py" line="46"/> + <location filename="Graphics/UMLClassDiagramBuilder.py" line="48"/> <source>Class Diagram {0}: {1}</source> <translation>Klassendiagramm {0}: {1}</translation> </message> <message> - <location filename="Graphics/UMLClassDiagramBuilder.py" line="49"/> + <location filename="Graphics/UMLClassDiagramBuilder.py" line="51"/> <source>Class Diagram: {0}</source> <translation>Klassendiagramm: {0}</translation> </message> <message> - <location filename="Graphics/UMLClassDiagramBuilder.py" line="79"/> + <location filename="Graphics/UMLClassDiagramBuilder.py" line="81"/> <source>The module <b>'{0}'</b> could not be found.</source> <translation>Das Modul <b>'{0}'</b> konnte nicht gefunden werden.</translation> </message> <message> - <location filename="Graphics/UMLClassDiagramBuilder.py" line="142"/> + <location filename="Graphics/UMLClassDiagramBuilder.py" line="144"/> <source>The module <b>'{0}'</b> does not contain any classes.</source> <translation>Das Modul <b>'{0}'</b> enthält keine Klassen.</translation> </message> @@ -49572,92 +49572,92 @@ <context> <name>UMLDialog</name> <message> - <location filename="Graphics/UMLDialog.py" line="74"/> + <location filename="Graphics/UMLDialog.py" line="76"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="112"/> + <location filename="Graphics/UMLDialog.py" line="114"/> <source>Window</source> <translation>Fenster</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="79"/> + <location filename="Graphics/UMLDialog.py" line="81"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="84"/> + <location filename="Graphics/UMLDialog.py" line="86"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="89"/> + <location filename="Graphics/UMLDialog.py" line="91"/> <source>Save As...</source> <translation>Speichern unter...</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="99"/> + <location filename="Graphics/UMLDialog.py" line="101"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="104"/> + <location filename="Graphics/UMLDialog.py" line="106"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="116"/> + <location filename="Graphics/UMLDialog.py" line="118"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="179"/> + <location filename="Graphics/UMLDialog.py" line="181"/> <source>Illegal diagram type '{0}' given.</source> <translation>Ungültiger Diagrammtyp '{0}' angegeben.</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="252"/> + <location filename="Graphics/UMLDialog.py" line="254"/> <source>Save Diagram</source> <translation>Diagramm speichern</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="266"/> + <location filename="Graphics/UMLDialog.py" line="268"/> <source>Eric5 Graphics File (*.e5g);;All Files (*)</source> <translation>Eric5 Grafikdateien (*.e5g);;Alle Dateien (*)</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="227"/> + <location filename="Graphics/UMLDialog.py" line="229"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="252"/> + <location filename="Graphics/UMLDialog.py" line="254"/> <source><p>The file <b>{0}</b> could not be saved.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="366"/> + <location filename="Graphics/UMLDialog.py" line="368"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="280"/> + <location filename="Graphics/UMLDialog.py" line="282"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="360"/> + <location filename="Graphics/UMLDialog.py" line="362"/> <source><p>The file <b>{0}</b> does not contain valid data.</p></source> <translation><p>Die Datei <b>{0}</b> enthält keine gültigen Daten.</p></translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="363"/> + <location filename="Graphics/UMLDialog.py" line="365"/> <source><p>The file <b>{0}</b> does not contain valid data.</p><p>Invalid line: {1}</p></source> <translation><p>Die Datei <b>{0}</b> enthält keine gültigen Daten.</p><p>Ungültige Zeile: {1}</p></translation> </message> <message> - <location filename="Graphics/UMLDialog.py" line="94"/> + <location filename="Graphics/UMLDialog.py" line="96"/> <source>Save as Image</source> <translation>Speichern als Bild</translation> </message> @@ -49665,97 +49665,97 @@ <context> <name>UMLGraphicsView</name> <message> - <location filename="Graphics/UMLGraphicsView.py" line="75"/> + <location filename="Graphics/UMLGraphicsView.py" line="77"/> <source>Delete shapes</source> <translation>Objekte löschen</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="80"/> + <location filename="Graphics/UMLGraphicsView.py" line="82"/> <source>Increase width by {0} points</source> <translation>Breite um {0} Punkte vergrößern</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="86"/> + <location filename="Graphics/UMLGraphicsView.py" line="88"/> <source>Increase height by {0} points</source> <translation>Höhe um {0} Punkte vergrößern</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="92"/> + <location filename="Graphics/UMLGraphicsView.py" line="94"/> <source>Decrease width by {0} points</source> <translation>Breite um {0} Punkte verkleinern</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="98"/> + <location filename="Graphics/UMLGraphicsView.py" line="100"/> <source>Decrease height by {0} points</source> <translation>Höhe um {0} Punkte verkleinern</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="104"/> + <location filename="Graphics/UMLGraphicsView.py" line="106"/> <source>Set size</source> <translation>Größe setzen</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="114"/> + <location filename="Graphics/UMLGraphicsView.py" line="116"/> <source>Re-Layout</source> <translation>Neuberechung</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="200"/> + <location filename="Graphics/UMLGraphicsView.py" line="202"/> <source>Graphics</source> <translation>Grafiken</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="347"/> + <location filename="Graphics/UMLGraphicsView.py" line="349"/> <source>Save Diagram</source> <translation>Diagramm speichern</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="347"/> + <location filename="Graphics/UMLGraphicsView.py" line="349"/> <source><p>The file <b>{0}</b> could not be saved.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="119"/> + <location filename="Graphics/UMLGraphicsView.py" line="121"/> <source>Align Left</source> <translation>Links ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="125"/> + <location filename="Graphics/UMLGraphicsView.py" line="127"/> <source>Align Center Horizontal</source> <translation>Mitte horizontal ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="131"/> + <location filename="Graphics/UMLGraphicsView.py" line="133"/> <source>Align Right</source> <translation>Rechts ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="137"/> + <location filename="Graphics/UMLGraphicsView.py" line="139"/> <source>Align Top</source> <translation>Oben ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="143"/> + <location filename="Graphics/UMLGraphicsView.py" line="145"/> <source>Align Center Vertical</source> <translation>Mitte vertikal ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="149"/> + <location filename="Graphics/UMLGraphicsView.py" line="151"/> <source>Align Bottom</source> <translation>Unten ausrichten</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="322"/> + <location filename="Graphics/UMLGraphicsView.py" line="324"/> <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source> <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="337"/> + <location filename="Graphics/UMLGraphicsView.py" line="339"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Graphics/UMLGraphicsView.py" line="109"/> + <location filename="Graphics/UMLGraphicsView.py" line="111"/> <source>Re-Scan</source> <translation>Neu einlesen</translation> </message> @@ -49791,47 +49791,47 @@ <context> <name>UnittestDialog</name> <message> - <location filename="PyUnit/UnittestDialog.py" line="374"/> + <location filename="PyUnit/UnittestDialog.py" line="376"/> <source>Unittest</source> <translation>Modultest</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="251"/> + <location filename="PyUnit/UnittestDialog.py" line="253"/> <source>You must enter a test suite file.</source> <translation>Sie müssen eine Modultest Datei angeben.</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="258"/> + <location filename="PyUnit/UnittestDialog.py" line="260"/> <source>Preparing Testsuite</source> <translation>Bereite Modultest vor</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="482"/> + <location filename="PyUnit/UnittestDialog.py" line="484"/> <source>Failure: {0}</source> <translation>Mißerfolge: {0}</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="497"/> + <location filename="PyUnit/UnittestDialog.py" line="499"/> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="111"/> + <location filename="PyUnit/UnittestDialog.py" line="113"/> <source>^Failure: </source> <translation>^Mißerfolge: </translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="112"/> + <location filename="PyUnit/UnittestDialog.py" line="114"/> <source>^Error: </source> <translation>^Fehler: </translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="439"/> + <location filename="PyUnit/UnittestDialog.py" line="441"/> <source>Running</source> <translation>Führe aus</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="374"/> + <location filename="PyUnit/UnittestDialog.py" line="376"/> <source><p>Unable to run test <b>{0}</b>.<br>{1}<br>{2}</p></source> <translation><p>Modultest <b>{0}</b> kann nicht ausgeführt werden.<br>{1}<br>{2}</p></translation> </message> @@ -49984,12 +49984,12 @@ Ein Doppelklick auf einen Eintrag zeigt den zugehörigen Traceback an.</p></translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="64"/> + <location filename="PyUnit/UnittestDialog.py" line="66"/> <source>Start the selected testsuite</source> <translation>Startet den ausgewählten Modultest</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="77"/> + <location filename="PyUnit/UnittestDialog.py" line="79"/> <source>Stop the running unittest</source> <translation>Halte den laufenden Modultest an</translation> </message> @@ -49999,47 +49999,47 @@ <translation>Leerlauf</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="62"/> + <location filename="PyUnit/UnittestDialog.py" line="64"/> <source>Start</source> <translation>Start</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="65"/> + <location filename="PyUnit/UnittestDialog.py" line="67"/> <source><b>Start Test</b><p>This button starts the selected testsuite.</p></source> <translation><b>Starte Modultest</b><p>Dieser Knopf startet den ausgewählten Modultest.</p></translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="75"/> + <location filename="PyUnit/UnittestDialog.py" line="77"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="78"/> + <location filename="PyUnit/UnittestDialog.py" line="80"/> <source><b>Stop Test</b><p>This button stops a running unittest.</p></source> <translation><b>Modultest anhalten</b><p>Dieser Knopf hält den laufenden Modultest an.</p></translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="601"/> + <location filename="PyUnit/UnittestDialog.py" line="603"/> <source>Show Source</source> <translation>Zeige Quelltext</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="192"/> + <location filename="PyUnit/UnittestDialog.py" line="194"/> <source>Python Files (*.py);;All Files (*)</source> <translation>Python Dateien (*.py);;Alle Dateien (*)</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="188"/> + <location filename="PyUnit/UnittestDialog.py" line="190"/> <source>Python3 Files ({1});;Python2 Files ({0});;All Files (*)</source> <translation>Python3 Dateien ({1});;Python2 Dateien ({0});;Alle Dateien (*)</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="463"/> + <location filename="PyUnit/UnittestDialog.py" line="465"/> <source>Ran {0} test in {1:.3f}s</source> <translation>{0} Test in {1:.3f}s ausgeführt</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="466"/> + <location filename="PyUnit/UnittestDialog.py" line="468"/> <source>Ran {0} tests in {1:.3f}s</source> <translation>{0} Tests in {1:.3f}s ausgeführt</translation> </message> @@ -50074,32 +50074,32 @@ <translation>Anzahl der Tests, die unerwartet erfolgreich waren</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="512"/> + <location filename="PyUnit/UnittestDialog.py" line="514"/> <source> Skipped: {0}</source> <translation> Übersprungen: {0}</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="526"/> + <location filename="PyUnit/UnittestDialog.py" line="528"/> <source> Expected Failure</source> <translation> Erwarteter Mißerfolg</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="540"/> + <location filename="PyUnit/UnittestDialog.py" line="542"/> <source> Unexpected Success</source> <translation> Unerwarteter Erfolg</translation> </message> <message> - <location filename="PyUnit/UnittestDialog.py" line="68"/> - <source>Rerun Failed</source> - <translation>Fehlerhafte wiederholen</translation> - </message> - <message> <location filename="PyUnit/UnittestDialog.py" line="70"/> - <source>Reruns failed tests of the selected testsuite</source> - <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation> + <source>Rerun Failed</source> + <translation>Fehlerhafte wiederholen</translation> </message> <message> <location filename="PyUnit/UnittestDialog.py" line="72"/> + <source>Reruns failed tests of the selected testsuite</source> + <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation> + </message> + <message> + <location filename="PyUnit/UnittestDialog.py" line="74"/> <source><b>Rerun Failed</b><p>This button reruns all failed tests of the selected testsuite.</p></source> <translation><b>Fehlerhafte wiederholen</b><p>Dieser Knopf wiederholt alle fehlerhaften Tests des ausgewählten Modultests.</p></translation> </message> @@ -50107,12 +50107,12 @@ <context> <name>UrlBar</name> <message> - <location filename="Helpviewer/UrlBar/UrlBar.py" line="194"/> + <location filename="Helpviewer/UrlBar/UrlBar.py" line="200"/> <source>Unknown</source> <translation>Unbekannt</translation> </message> <message> - <location filename="Helpviewer/UrlBar/UrlBar.py" line="44"/> + <location filename="Helpviewer/UrlBar/UrlBar.py" line="50"/> <source>Enter the URL here.</source> <translation>Geben sie die URL hier ein.</translation> </message> @@ -50120,27 +50120,27 @@ <context> <name>UserAgentManager</name> <message> - <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="63"/> + <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="65"/> <source>Saving user agent data</source> <translation>User Agent Daten speichern</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="107"/> + <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="109"/> <source>Loading user agent data</source> <translation>User Agent Daten laden</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="107"/> + <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="109"/> <source><p>User agent data could not be loaded from <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Die User Agent Daten konnten nicht aus der Datei <b>{0}</b> geladen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="63"/> + <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="65"/> <source><p>User agent data could not be saved to <b>{0}</b></p></source> <translation><p>Die User Agent Daten konnten nicht in die Datei <b>{0}</b> gespeichert werden.</p></translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="82"/> + <location filename="Helpviewer/UserAgent/UserAgentManager.py" line="84"/> <source>Error when loading user agent data on line {0}, column {1}: {2}</source> <translation>Fehler beim Laden der User Agent Daten in Zeile {0}, Spalte {1}: @@ -50150,37 +50150,37 @@ <context> <name>UserAgentMenu</name> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="51"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="53"/> <source>Default</source> <translation>Standard</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="70"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="72"/> <source>Other...</source> <translation>Anderer...</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="92"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="94"/> <source>Custom user agent</source> <translation>Spezieller User Agent</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="92"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="94"/> <source>User agent:</source> <translation>User Agent:</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="175"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="177"/> <source>Parsing default user agents</source> <translation>Parsen der standard User Agenten</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="175"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="177"/> <source><p>Error parsing default user agents.</p><p>{0}</p></source> <translation><p>Fehler beim Parsen der standard User Agenten.</p><p>{0}</p></translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="164"/> + <location filename="Helpviewer/UserAgent/UserAgentMenu.py" line="166"/> <source>Various</source> <translation>Verschiedenes</translation> </message> @@ -50188,12 +50188,12 @@ <context> <name>UserAgentModel</name> <message> - <location filename="Helpviewer/UserAgent/UserAgentModel.py" line="30"/> + <location filename="Helpviewer/UserAgent/UserAgentModel.py" line="32"/> <source>Host</source> <translation>Rechner</translation> </message> <message> - <location filename="Helpviewer/UserAgent/UserAgentModel.py" line="31"/> + <location filename="Helpviewer/UserAgent/UserAgentModel.py" line="33"/> <source>User Agent String</source> <translation>User Agent Zeichenkette</translation> </message> @@ -50201,7 +50201,7 @@ <context> <name>UserAgentReader</name> <message> - <location filename="Helpviewer/UserAgent/UserAgentReader.py" line="51"/> + <location filename="Helpviewer/UserAgent/UserAgentReader.py" line="53"/> <source>The file is not a UserAgents version 1.0 file.</source> <translation>Die Datei ist keine User Agents Datei der Version 1.0.</translation> </message> @@ -50242,1994 +50242,1994 @@ <context> <name>UserInterface</name> <message> - <location filename="UI/UserInterface.py" line="1434"/> + <location filename="UI/UserInterface.py" line="1440"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1439"/> + <location filename="UI/UserInterface.py" line="1445"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1440"/> + <location filename="UI/UserInterface.py" line="1446"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1451"/> + <location filename="UI/UserInterface.py" line="1457"/> <source>Helpviewer</source> <translation>Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1451"/> + <location filename="UI/UserInterface.py" line="1457"/> <source>&Helpviewer...</source> <translation>&Hilfe...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1456"/> + <location filename="UI/UserInterface.py" line="1462"/> <source>Open the helpviewer window</source> <translation>Öffnet das Hilfe-Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2283"/> + <location filename="UI/UserInterface.py" line="2289"/> <source>Unittest</source> <translation>Modultests</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1529"/> + <location filename="UI/UserInterface.py" line="1535"/> <source>&Unittest...</source> <translation>&Modultests...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1533"/> + <location filename="UI/UserInterface.py" line="1539"/> <source>Start unittest dialog</source> <translation>Starte den Modultest Dialog</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2166"/> + <location filename="UI/UserInterface.py" line="2172"/> <source>&Window</source> <translation>&Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2136"/> + <location filename="UI/UserInterface.py" line="2142"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2215"/> + <location filename="UI/UserInterface.py" line="2221"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1116"/> + <location filename="UI/UserInterface.py" line="1122"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1742"/> + <location filename="UI/UserInterface.py" line="1748"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1742"/> + <location filename="UI/UserInterface.py" line="1748"/> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1745"/> + <location filename="UI/UserInterface.py" line="1751"/> <source>Set the prefered configuration</source> <translation>Konfiguriert die Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1746"/> + <location filename="UI/UserInterface.py" line="1752"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach ihren Wünschen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1121"/> + <location filename="UI/UserInterface.py" line="1127"/> <source>Quit the IDE</source> <translation>Beenden der Entwicklungsumgebung</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2282"/> + <location filename="UI/UserInterface.py" line="2288"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3885"/> + <location filename="UI/UserInterface.py" line="3891"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2190"/> + <location filename="UI/UserInterface.py" line="2196"/> <source>&Toolbars</source> <translation>&Werkzeugleisten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3993"/> + <location filename="UI/UserInterface.py" line="3999"/> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1116"/> - <source>&Quit</source> - <translation>B&eenden</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1122"/> + <source>&Quit</source> + <translation>B&eenden</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1128"/> <source><b>Quit the IDE</b><p>This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.</p></source> <translation><b>Die Entwicklungsumgebung beenden</b><p>Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python Programm, das gerade debugged wird, wird beendet und sämtliche Einstellungen werden gespeichert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1434"/> + <location filename="UI/UserInterface.py" line="1440"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4148"/> + <location filename="UI/UserInterface.py" line="4154"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1088"/> + <location filename="UI/UserInterface.py" line="1094"/> <source>{0} - Passive Mode</source> <translation>{0} - Passiver Modus</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1093"/> + <location filename="UI/UserInterface.py" line="1099"/> <source>{0} - {1} - Passive Mode</source> <translation>{0} - {1} - Passiver Modus</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1254"/> + <location filename="UI/UserInterface.py" line="1260"/> <source>Log-Viewer</source> <translation>Ausgabefenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2284"/> + <location filename="UI/UserInterface.py" line="2290"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1474"/> + <location filename="UI/UserInterface.py" line="1480"/> <source>Show Versions</source> <translation>Zeige Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1474"/> + <location filename="UI/UserInterface.py" line="1480"/> <source>Show &Versions</source> <translation>Zeige &Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1476"/> + <location filename="UI/UserInterface.py" line="1482"/> <source>Display version information</source> <translation>Zeigt Versionsinformationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1477"/> + <location filename="UI/UserInterface.py" line="1483"/> <source><b>Show Versions</b><p>Display version information.</p></source> <translation><b>Zeige Versionen</b><p>Zeigt Versionsinformationen an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1826"/> + <location filename="UI/UserInterface.py" line="1832"/> <source>Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1826"/> + <location filename="UI/UserInterface.py" line="1832"/> <source>Keyboard &Shortcuts...</source> <translation>&Tastaturkurzbefehle...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1829"/> + <location filename="UI/UserInterface.py" line="1835"/> <source>Set the keyboard shortcuts</source> <translation>Setze die Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1830"/> + <location filename="UI/UserInterface.py" line="1836"/> <source><b>Keyboard Shortcuts</b><p>Set the keyboard shortcuts of the application with your prefered values.</p></source> <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2124"/> + <location filename="UI/UserInterface.py" line="2130"/> <source>E&xtras</source> <translation>E&xtras</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2669"/> + <location filename="UI/UserInterface.py" line="2675"/> <source>Report Bug</source> <translation>Fehler berichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1507"/> + <location filename="UI/UserInterface.py" line="1513"/> <source>Report &Bug...</source> <translation>&Fehler berichten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1509"/> + <location filename="UI/UserInterface.py" line="1515"/> <source>Report a bug</source> <translation>Einen Fehler berichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1510"/> + <location filename="UI/UserInterface.py" line="1516"/> <source><b>Report Bug...</b><p>Opens a dialog to report a bug.</p></source> <translation><b>Fehler berichten...</b><p>Öffnet einen Dialog zum Senden eines Fehlerberichtes.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4763"/> + <location filename="UI/UserInterface.py" line="4771"/> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1838"/> + <location filename="UI/UserInterface.py" line="1844"/> <source>&Export Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &exportieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1842"/> + <location filename="UI/UserInterface.py" line="1848"/> <source>Export the keyboard shortcuts</source> <translation>Exportiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1843"/> + <location filename="UI/UserInterface.py" line="1849"/> <source><b>Export Keyboard Shortcuts</b><p>Export the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4787"/> + <location filename="UI/UserInterface.py" line="4795"/> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1850"/> + <location filename="UI/UserInterface.py" line="1856"/> <source>&Import Keyboard Shortcuts...</source> <translation>Tastaturkurzbefehle &importieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1854"/> + <location filename="UI/UserInterface.py" line="1860"/> <source>Import the keyboard shortcuts</source> <translation>Importiert die Tastaturkurzbefehle</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1855"/> + <location filename="UI/UserInterface.py" line="1861"/> <source><b>Import Keyboard Shortcuts</b><p>Import the keyboard shortcuts of the application.</p></source> <translation><b>Tastaturkurzbefehle importieren</b><p>Importiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="203"/> + <location filename="UI/UserInterface.py" line="209"/> <source>Generating Main User Interface...</source> <translation>Erzeuge das Hauptfenster...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="235"/> + <location filename="UI/UserInterface.py" line="241"/> <source>Setting up connections...</source> <translation>Erstelle Verbindungen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="439"/> - <source>Initializing Actions...</source> - <translation>Initialisiere Aktionen...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="441"/> - <source>Initializing Menus...</source> - <translation>Initialisiere Menüs...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="443"/> - <source>Initializing Toolbars...</source> - <translation>Initialisiere Werkzeugleisten...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="445"/> + <source>Initializing Actions...</source> + <translation>Initialisiere Aktionen...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="447"/> + <source>Initializing Menus...</source> + <translation>Initialisiere Menüs...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="449"/> + <source>Initializing Toolbars...</source> + <translation>Initialisiere Werkzeugleisten...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="451"/> <source>Initializing Statusbar...</source> <translation>Initialisiere Statuszeile...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="409"/> + <location filename="UI/UserInterface.py" line="415"/> <source>Initializing Tools...</source> <translation>Initialisiere Werkzeuge...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1534"/> + <location filename="UI/UserInterface.py" line="1540"/> <source><b>Unittest</b><p>Perform unit tests. The dialog gives you the ability to select and run a unittest suite.</p></source> <translation><b>Modultests</b><p>Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1548"/> <source>Unittest Restart</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1546"/> + <location filename="UI/UserInterface.py" line="1552"/> <source>Restart last unittest</source> <translation>Modultest neu starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1547"/> + <location filename="UI/UserInterface.py" line="1553"/> <source><b>Restart Unittest</b><p>Restart the unittest performed last.</p></source> <translation><b>Modultest neu starten</b><p>Den letzten durchgeführten Modultest neu starten.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1569"/> + <location filename="UI/UserInterface.py" line="1575"/> <source>Unittest Script</source> <translation>Modultest (Skript)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1573"/> + <location filename="UI/UserInterface.py" line="1579"/> <source>Run unittest with current script</source> <translation>Modultest für aktuelles Skript ausführen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1574"/> + <location filename="UI/UserInterface.py" line="1580"/> <source><b>Unittest Script</b><p>Run unittest with current script.</p></source> <translation><b>Modultest (Skript)</b><p>Modultest für aktuelles Skript ausführen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3662"/> + <location filename="UI/UserInterface.py" line="3668"/> <source>Unittest Project</source> <translation>Modultest (Projekt)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1586"/> + <location filename="UI/UserInterface.py" line="1592"/> <source>Run unittest with current project</source> <translation>Modultest für aktuellesProjekt ausführen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1587"/> + <location filename="UI/UserInterface.py" line="1593"/> <source><b>Unittest Project</b><p>Run unittest with current project.</p></source> <translation><b>Modultest (Projekt)</b><p>Modultest für aktuelles Projekt ausführen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2107"/> + <location filename="UI/UserInterface.py" line="2113"/> <source>&Unittest</source> <translation>&Modultests</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3662"/> + <location filename="UI/UserInterface.py" line="3668"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1542"/> + <location filename="UI/UserInterface.py" line="1548"/> <source>&Restart Unittest...</source> <translation>Modultest &neu starten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1569"/> + <location filename="UI/UserInterface.py" line="1575"/> <source>Unittest &Script...</source> <translation>Modultest (&Skript)...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1582"/> + <location filename="UI/UserInterface.py" line="1588"/> <source>Unittest &Project...</source> <translation>Modultest (&Projekt)...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1658"/> + <location filename="UI/UserInterface.py" line="1664"/> <source>Compare Files</source> <translation>Dateien vergleichen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1658"/> + <location filename="UI/UserInterface.py" line="1664"/> <source>&Compare Files...</source> <translation>Dateien &vergleichen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1673"/> + <location filename="UI/UserInterface.py" line="1679"/> <source>Compare two files</source> <translation>Zwei Dateien vergleichen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1662"/> + <location filename="UI/UserInterface.py" line="1668"/> <source><b>Compare Files</b><p>Open a dialog to compare two files.</p></source> <translation><b>Dateien vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1669"/> + <location filename="UI/UserInterface.py" line="1675"/> <source>Compare Files side by side</source> <translation>Dateien Seite an Seite vergleichen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1674"/> + <location filename="UI/UserInterface.py" line="1680"/> <source><b>Compare Files side by side</b><p>Open a dialog to compare two files and show the result side by side.</p></source> <translation><b>Dateien Seite an Seite vergleichen</b><p>Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5164"/> + <location filename="UI/UserInterface.py" line="5172"/> <source>Drop Error</source> <translation>Drop Fehler</translation> </message> <message> - <location filename="UI/UserInterface.py" line="469"/> + <location filename="UI/UserInterface.py" line="475"/> <source>Initializing Single Application Server...</source> <translation>Initialisiere Applikationsserver...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1096"/> + <location filename="UI/UserInterface.py" line="1102"/> <source>{0} - {1} - {2} - Passive Mode</source> <translation>{0} - {1} - {2} - Passiver Modus</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1239"/> + <location filename="UI/UserInterface.py" line="1245"/> <source>File-Browser</source> <translation>Datei-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1148"/> - <source>Edit Profile</source> - <translation>Editieren Profil</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1153"/> - <source>Activate the edit view profile</source> - <translation>Aktiviert das Editieren Ansichtsprofil </translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1154"/> + <source>Edit Profile</source> + <translation>Editieren Profil</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1159"/> + <source>Activate the edit view profile</source> + <translation>Aktiviert das Editieren Ansichtsprofil </translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1160"/> <source><b>Edit Profile</b><p>Activate the "Edit View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Editieren Profil</b><p>Aktiviert das "Editieren Ansichtsprofil". Fenster, die in diesem Profil angezeigt werden sollen, können im "Ansichtenprofile konfigurieren" Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1163"/> + <location filename="UI/UserInterface.py" line="1169"/> <source>Debug Profile</source> <translation>Debuggen Profil</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1168"/> + <location filename="UI/UserInterface.py" line="1174"/> <source>Activate the debug view profile</source> <translation>Aktiviert das Debuggen Ansichtsprofil </translation> </message> <message> - <location filename="UI/UserInterface.py" line="1170"/> + <location filename="UI/UserInterface.py" line="1176"/> <source><b>Debug Profile</b><p>Activate the "Debug View Profile". Windows being shown, if this profile is active, may be configured with the "View Profile Configuration" dialog.</p></source> <translation><b>Debuggen Profil</b><p>Aktiviert das "Debuggen Ansichtsprofil". Fenster, die in diesem Profil angezeigt werden sollen, können im "Ansichtenprofile konfigurieren" Dialog ausgewählt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1800"/> + <location filename="UI/UserInterface.py" line="1806"/> <source>View Profiles</source> <translation>Ansichtenprofile</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1800"/> + <location filename="UI/UserInterface.py" line="1806"/> <source>&View Profiles...</source> <translation>&Ansichtenprofile...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1803"/> + <location filename="UI/UserInterface.py" line="1809"/> <source>Configure view profiles</source> <translation>Ansichtenprofile konfigurieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1804"/> + <location filename="UI/UserInterface.py" line="1810"/> <source><b>View Profiles</b><p>Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.</p></source> <translation><b>Ansichtenprofile</b><p>Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3993"/> + <location filename="UI/UserInterface.py" line="3999"/> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht oder hat die Größe Null.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3757"/> + <location filename="UI/UserInterface.py" line="3763"/> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Designer konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3814"/> + <location filename="UI/UserInterface.py" line="3820"/> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Linguist konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3858"/> + <location filename="UI/UserInterface.py" line="3864"/> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Qt-Assistant konnte nicht gestartet werden.<br>Stellen Sie sicher, dass es als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4148"/> + <location filename="UI/UserInterface.py" line="4154"/> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation><p>Der Werkzeuge Eintrag <b>{0}</b> konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{1}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5164"/> + <location filename="UI/UserInterface.py" line="5172"/> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> ist keine Datei.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1636"/> + <location filename="UI/UserInterface.py" line="1642"/> <source>UI Previewer</source> <translation>UI Betrachter</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1636"/> + <location filename="UI/UserInterface.py" line="1642"/> <source>&UI Previewer...</source> <translation>&UI Betrachter...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1639"/> + <location filename="UI/UserInterface.py" line="1645"/> <source>Start the UI Previewer</source> <translation>Started den UI Betrachter</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1640"/> + <location filename="UI/UserInterface.py" line="1646"/> <source><b>UI Previewer</b><p>Start the UI Previewer.</p></source> <translation><b>UI Betrachter</b><p>Started den UI Betrachter.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3956"/> + <location filename="UI/UserInterface.py" line="3962"/> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der UI Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1647"/> + <location filename="UI/UserInterface.py" line="1653"/> <source>Translations Previewer</source> <translation>Übersetzungsvorschau</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1647"/> + <location filename="UI/UserInterface.py" line="1653"/> <source>&Translations Previewer...</source> <translation>&Übersetzungsvorschau...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1650"/> + <location filename="UI/UserInterface.py" line="1656"/> <source>Start the Translations Previewer</source> <translation>Die Übersetzungsvorschau starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1651"/> + <location filename="UI/UserInterface.py" line="1657"/> <source><b>Translations Previewer</b><p>Start the Translations Previewer.</p></source> <translation><b>Übersetzungsvorschau</b><p>Dies startet das Programm zur Vorschau von Übersetzungen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4001"/> + <location filename="UI/UserInterface.py" line="4007"/> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Übersetzungsvorschau konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1224"/> + <location filename="UI/UserInterface.py" line="1230"/> <source>Shell</source> <translation>Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1224"/> + <location filename="UI/UserInterface.py" line="1230"/> <source>&Shell</source> <translation>&Shell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1784"/> <source>Reload APIs</source> <translation>APIs neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1778"/> + <location filename="UI/UserInterface.py" line="1784"/> <source>Reload &APIs</source> <translation>APIs &neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1780"/> + <location filename="UI/UserInterface.py" line="1786"/> <source>Reload the API information</source> <translation>Die API Informationen neu laden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1781"/> + <location filename="UI/UserInterface.py" line="1787"/> <source><b>Reload APIs</b><p>Reload the API information.</p></source> <translation><b>APIs neu laden</b><p>Lädt die API Informationen neu.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1275"/> <source>Task-Viewer</source> <translation>Aufgabenanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4921"/> + <location filename="UI/UserInterface.py" line="4929"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4921"/> + <location filename="UI/UserInterface.py" line="4929"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4945"/> + <location filename="UI/UserInterface.py" line="4953"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4945"/> + <location filename="UI/UserInterface.py" line="4953"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3885"/> + <location filename="UI/UserInterface.py" line="3891"/> <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen sie den Einstellungen Dialog, um einen festzulegen.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3897"/> + <location filename="UI/UserInterface.py" line="3903"/> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der Betrachter konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4515"/> + <location filename="UI/UserInterface.py" line="4521"/> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4515"/> + <location filename="UI/UserInterface.py" line="4521"/> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Der Dokumentationsstartpunkt "<b>{0}</b>" konnte nicht gefunden werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2669"/> + <location filename="UI/UserInterface.py" line="2675"/> <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source> <translation>Email Adresse oder Mail Server Adresse sind leer. Bitte konfiguriere die Email Einstellungen im Einstellungen Dialog.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1284"/> + <location filename="UI/UserInterface.py" line="1290"/> <source>Template-Viewer</source> <translation>Vorlagen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1179"/> + <location filename="UI/UserInterface.py" line="1185"/> <source>Alt+Shift+P</source> <translation>Alt+Shift+P</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1209"/> + <location filename="UI/UserInterface.py" line="1215"/> <source>Alt+Shift+D</source> <translation>Alt+Shift+D</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1224"/> + <location filename="UI/UserInterface.py" line="1230"/> <source>Alt+Shift+S</source> <translation>Alt+Shift+S</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1239"/> + <location filename="UI/UserInterface.py" line="1245"/> <source>Alt+Shift+F</source> <translation>Alt+Shift+F</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1275"/> <source>Alt+Shift+T</source> <translation>Alt+Shift+T</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1194"/> + <location filename="UI/UserInterface.py" line="1200"/> <source>Alt+Shift+M</source> <translation>Alt+Shift+M</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1877"/> + <location filename="UI/UserInterface.py" line="1883"/> <source>Activate current editor</source> <translation>Aktiviere aktuellen Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1877"/> + <location filename="UI/UserInterface.py" line="1883"/> <source>Alt+Shift+E</source> <translation>Alt+Shift+E</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1892"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1894"/> + <location filename="UI/UserInterface.py" line="1900"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1254"/> + <location filename="UI/UserInterface.py" line="1260"/> <source>Alt+Shift+G</source> <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1973"/> + <location filename="UI/UserInterface.py" line="1979"/> <source>Qt4 Documentation</source> <translation>Qt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1973"/> + <location filename="UI/UserInterface.py" line="1979"/> <source>Qt&4 Documentation</source> <translation>Qt&4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1975"/> + <location filename="UI/UserInterface.py" line="1981"/> <source>Open Qt4 Documentation</source> <translation>Öffne die Qt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2049"/> + <location filename="UI/UserInterface.py" line="2055"/> <source>Eric API Documentation</source> <translation>Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2049"/> + <location filename="UI/UserInterface.py" line="2055"/> <source>&Eric API Documentation</source> <translation>&Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2051"/> + <location filename="UI/UserInterface.py" line="2057"/> <source>Open Eric API Documentation</source> <translation>Öffne die Eric API Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3916"/> + <location filename="UI/UserInterface.py" line="3922"/> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Die Hilfeanzeige konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>hh</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="419"/> + <location filename="UI/UserInterface.py" line="425"/> <source>Registering Objects...</source> <translation>Registriere Objekte...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1179"/> + <location filename="UI/UserInterface.py" line="1185"/> <source>Project-Viewer</source> <translation>Projektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1209"/> + <location filename="UI/UserInterface.py" line="1215"/> <source>Debug-Viewer</source> <translation>Debuganzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1116"/> + <location filename="UI/UserInterface.py" line="1122"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1179"/> + <location filename="UI/UserInterface.py" line="1185"/> <source>&Project-Viewer</source> <translation>&Projektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1434"/> + <location filename="UI/UserInterface.py" line="1440"/> <source>Shift+F1</source> <translation>Shift+F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1451"/> + <location filename="UI/UserInterface.py" line="1457"/> <source>F1</source> <translation>F1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1486"/> + <location filename="UI/UserInterface.py" line="1492"/> <source>Check for Updates</source> <translation>Auf Aktualisierungen prüfen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1484"/> + <location filename="UI/UserInterface.py" line="1490"/> <source>Check for &Updates...</source> <translation>Auf &Aktualisierungen prüfen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1976"/> + <location filename="UI/UserInterface.py" line="1982"/> <source><b>Qt4 Documentation</b><p>Display the Qt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt4 Dokumentation</b><p>Zeige die Qt4 Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2003"/> <source>PyQt4 Documentation</source> <translation>PyQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1997"/> + <location filename="UI/UserInterface.py" line="2003"/> <source>P&yQt4 Documentation</source> <translation>P&yQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1999"/> + <location filename="UI/UserInterface.py" line="2005"/> <source>Open PyQt4 Documentation</source> <translation>Öffne die PyQt4 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2000"/> + <location filename="UI/UserInterface.py" line="2006"/> <source><b>PyQt4 Documentation</b><p>Display the PyQt4 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PyQt4 Dokumentation</b><p>Zeige die PyQt4 Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2139"/> - <source>Select Tool Group</source> - <translation>Werkzeuggruppe wählen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2145"/> + <source>Select Tool Group</source> + <translation>Werkzeuggruppe wählen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="2151"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2286"/> + <location filename="UI/UserInterface.py" line="2292"/> <source>Profiles</source> <translation>Profile</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2999"/> + <location filename="UI/UserInterface.py" line="3005"/> <source>&Builtin Tools</source> <translation>&Eingebaute Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4132"/> + <location filename="UI/UserInterface.py" line="4138"/> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess '{0} {1}'. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4225"/> + <location filename="UI/UserInterface.py" line="4231"/> <source>Process '{0}' has exited. </source> <translation>Prozess '{0}' ist beendet. </translation> </message> <message> - <location filename="UI/UserInterface.py" line="4500"/> + <location filename="UI/UserInterface.py" line="4506"/> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4408"/> + <location filename="UI/UserInterface.py" line="4414"/> <source><p>The PyQt4 documentation starting point has not been configured.</p></source> <translation><p>Der PyQt4 Dokumentations Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5444"/> + <location filename="UI/UserInterface.py" line="5452"/> <source>Error during updates check</source> <translation>Fehler während der Aktualisierungsprüfung</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5431"/> + <location filename="UI/UserInterface.py" line="5439"/> <source>Update available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2618"/> + <location filename="UI/UserInterface.py" line="2624"/> <source><h3>Version Numbers</h3><table></source> <translation><h3>Versions Nummern</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5478"/> + <location filename="UI/UserInterface.py" line="5486"/> <source></table></source> <translation></table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2947"/> + <location filename="UI/UserInterface.py" line="2953"/> <source>Configure Tool Groups ...</source> <translation>Konfiguriere Werkzeuggruppen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2950"/> + <location filename="UI/UserInterface.py" line="2956"/> <source>Configure current Tool Group ...</source> <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1791"/> + <location filename="UI/UserInterface.py" line="1797"/> <source>Show external tools</source> <translation>Zeige externe Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1788"/> + <location filename="UI/UserInterface.py" line="1794"/> <source>Show external &tools</source> <translation>Zeige externe &Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5444"/> + <location filename="UI/UserInterface.py" line="5452"/> <source>Could not perform updates check.</source> <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5303"/> + <location filename="UI/UserInterface.py" line="5311"/> <source>&Cancel</source> <translation>&Abbrechen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5308"/> + <location filename="UI/UserInterface.py" line="5316"/> <source>Trying host {0}</source> <translation>Prüfe Host {0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5505"/> + <location filename="UI/UserInterface.py" line="5513"/> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> <message> - <location filename="UI/UserInterface.py" line="197"/> + <location filename="UI/UserInterface.py" line="203"/> <source>Initializing Plugin Manager...</source> <translation>Initialisiere Plugin Manager...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2201"/> + <location filename="UI/UserInterface.py" line="2207"/> <source>P&lugins</source> <translation>Plugi&ns</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2287"/> + <location filename="UI/UserInterface.py" line="2293"/> <source>Plugins</source> <translation>Plugins</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1910"/> + <location filename="UI/UserInterface.py" line="1916"/> <source>Plugin Infos</source> <translation>Plugin Informationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1913"/> + <location filename="UI/UserInterface.py" line="1919"/> <source>Show Plugin Infos</source> <translation>Zeigt Plugin Informationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1914"/> + <location filename="UI/UserInterface.py" line="1920"/> <source><b>Plugin Infos...</b><p>This opens a dialog, that show some information about loaded plugins.</p></source> <translation><b>Plugin Informationen...</b><p>Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1910"/> + <location filename="UI/UserInterface.py" line="1916"/> <source>&Plugin Infos...</source> <translation>&Plugin Informationen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3007"/> + <location filename="UI/UserInterface.py" line="3013"/> <source>&Plugin Tools</source> <translation>&Plugin Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1936"/> + <location filename="UI/UserInterface.py" line="1942"/> <source>Uninstall Plugin</source> <translation>Plugin deinstallieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1933"/> + <location filename="UI/UserInterface.py" line="1939"/> <source>&Uninstall Plugin...</source> <translation>Plugin &deinstallieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1937"/> + <location filename="UI/UserInterface.py" line="1943"/> <source><b>Uninstall Plugin...</b><p>This opens a dialog to uninstall a plugin.</p></source> <translation><b>Plugin deinstallieren...</b><p>Dies öffnet einen Dialog zur Deinstallation eines Plugins.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3097"/> + <location filename="UI/UserInterface.py" line="3103"/> <source>&Show all</source> <translation>Alle an&zeigen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3099"/> + <location filename="UI/UserInterface.py" line="3105"/> <source>&Hide all</source> <translation>Alle &ausblenden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="477"/> + <location filename="UI/UserInterface.py" line="483"/> <source>Activating Plugins...</source> <translation>Aktiviere Plugins...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2129"/> + <location filename="UI/UserInterface.py" line="2135"/> <source>Wi&zards</source> <translation>A&utopiloten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1494"/> + <location filename="UI/UserInterface.py" line="1500"/> <source>Show downloadable versions</source> <translation>Zeige verfügbare Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1494"/> + <location filename="UI/UserInterface.py" line="1500"/> <source>Show &downloadable versions...</source> <translation>&Zeige verfügbare Versionen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1497"/> + <location filename="UI/UserInterface.py" line="1503"/> <source>Show the versions available for download</source> <translation>Zeige die verfügbaren eric4 Versionen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5465"/> + <location filename="UI/UserInterface.py" line="5473"/> <source><h3>Available versions</h3><table></source> <translation><h3>Verfügbare Versionen</h3><table></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1944"/> + <location filename="UI/UserInterface.py" line="1950"/> <source>Plugin Repository</source> <translation>Plugin Repository</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1944"/> + <location filename="UI/UserInterface.py" line="1950"/> <source>Plugin &Repository...</source> <translation>Plugin &Repository...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1947"/> + <location filename="UI/UserInterface.py" line="1953"/> <source>Show Plugins available for download</source> <translation>Zeige Plugins verfügbar zum Download an</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1949"/> + <location filename="UI/UserInterface.py" line="1955"/> <source><b>Plugin Repository...</b><p>This opens a dialog, that shows a list of plugins available on the Internet.</p></source> <translation><b>Plugin Repository...</b><p>Dies öffnet einen Dialog, der eine Liste der im Internet verfügbaren Plugins anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1925"/> + <location filename="UI/UserInterface.py" line="1931"/> <source>Install Plugins</source> <translation>Plugins installieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1922"/> + <location filename="UI/UserInterface.py" line="1928"/> <source>&Install Plugins...</source> <translation>Plugins &installieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1926"/> + <location filename="UI/UserInterface.py" line="1932"/> <source><b>Install Plugins...</b><p>This opens a dialog to install or update plugins.</p></source> <translation><b>Plugins installieren...</b><p>Dies öffnet einen Dialog zur Installation oder Update von Plugins.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1698"/> + <location filename="UI/UserInterface.py" line="1704"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1694"/> + <location filename="UI/UserInterface.py" line="1700"/> <source>Mini &Editor...</source> <translation>Mini &Editor...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1699"/> + <location filename="UI/UserInterface.py" line="1705"/> <source><b>Mini Editor</b><p>Open a dialog with a simplified editor.</p></source> <translation><b>Mini Editor</b><p>Öffnet einen Dialog mit einem vereinfachten Editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1813"/> + <location filename="UI/UserInterface.py" line="1819"/> <source>Toolbars</source> <translation>Werkzeugleisten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1813"/> + <location filename="UI/UserInterface.py" line="1819"/> <source>Tool&bars...</source> <translation>Werkzeug&leisten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1816"/> + <location filename="UI/UserInterface.py" line="1822"/> <source>Configure toolbars</source> <translation>Werkzeugleisten einrichten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1817"/> + <location filename="UI/UserInterface.py" line="1823"/> <source><b>Toolbars</b><p>Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.</p></source> <translation><b>Werkzeugleisten</b><p>Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert und neue Werkzeugleisten definiert werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="485"/> + <location filename="UI/UserInterface.py" line="491"/> <source>Restoring Toolbarmanager...</source> <translation>Lade Toolbarmanager...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2532"/> + <location filename="UI/UserInterface.py" line="2538"/> <source>External Tools/{0}</source> <translation>Externe Werkzeuge/{0}</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4096"/> + <location filename="UI/UserInterface.py" line="4102"/> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4090"/> - <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> - <translation>Kein Eintrag für das externe Werkzeug '{0}' in der Gruppe '{1}' gefunden.</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="4096"/> + <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> + <translation>Kein Eintrag für das externe Werkzeug '{0}' in der Gruppe '{1}' gefunden.</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="4102"/> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag '{0}' gefunden.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1194"/> + <location filename="UI/UserInterface.py" line="1200"/> <source>Multiproject-Viewer</source> <translation>Mehrfachprojektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1194"/> + <location filename="UI/UserInterface.py" line="1200"/> <source>&Multiproject-Viewer</source> <translation>&Mehrfachprojektanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4961"/> + <location filename="UI/UserInterface.py" line="4969"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4961"/> + <location filename="UI/UserInterface.py" line="4969"/> <source><p>The session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4985"/> + <location filename="UI/UserInterface.py" line="4993"/> <source>Read session</source> <translation>Session lesen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4985"/> + <location filename="UI/UserInterface.py" line="4993"/> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sessiondatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2436"/> + <location filename="UI/UserInterface.py" line="2442"/> <source><p>This part of the status bar displays the current editors encoding.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeichenkodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2450"/> + <location filename="UI/UserInterface.py" line="2456"/> <source><p>This part of the status bar displays an indication of the current editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1517"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Request Feature</source> <translation>Neue Funktion anfragen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1517"/> + <location filename="UI/UserInterface.py" line="1523"/> <source>Request &Feature...</source> <translation>Neue &Funktion anfragen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1519"/> + <location filename="UI/UserInterface.py" line="1525"/> <source>Send a feature request</source> <translation>Sende eine Anfrage für eine neue Funktion</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1520"/> + <location filename="UI/UserInterface.py" line="1526"/> <source><b>Request Feature...</b><p>Opens a dialog to send a feature request.</p></source> <translation><b>Neue Funktion anfragen...</b><p>Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2429"/> + <location filename="UI/UserInterface.py" line="2435"/> <source><p>This part of the status bar displays the current editors language.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Sprache des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2457"/> + <location filename="UI/UserInterface.py" line="2463"/> <source><p>This part of the status bar displays the line number of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilennummer des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2464"/> + <location filename="UI/UserInterface.py" line="2470"/> <source><p>This part of the status bar displays the cursor position of the current editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1322"/> + <location filename="UI/UserInterface.py" line="1328"/> <source>Horizontal Toolbox</source> <translation>Horizontale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1322"/> + <location filename="UI/UserInterface.py" line="1328"/> <source>&Horizontal Toolbox</source> <translation>&Horizontale Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1325"/> + <location filename="UI/UserInterface.py" line="1331"/> <source>Toggle the Horizontal Toolbox window</source> <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1326"/> + <location filename="UI/UserInterface.py" line="1332"/> <source><b>Toggle the Horizontal Toolbox window</b><p>If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der Horizontalen Werkzeugbox um</b><p>Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2915"/> + <location filename="UI/UserInterface.py" line="2921"/> <source>Restart application</source> <translation>Anwendung neu starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2915"/> + <location filename="UI/UserInterface.py" line="2921"/> <source>The application needs to be restarted. Do it now?</source> <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1284"/> + <location filename="UI/UserInterface.py" line="1290"/> <source>Alt+Shift+A</source> <translation>Alt+Shift+A</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2210"/> + <location filename="UI/UserInterface.py" line="2216"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2443"/> + <location filename="UI/UserInterface.py" line="2449"/> <source><p>This part of the status bar displays the current editors eol setting.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1902"/> + <location filename="UI/UserInterface.py" line="1908"/> <source>Switch between tabs</source> <translation>Zwischen Tabs umschalten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1902"/> + <location filename="UI/UserInterface.py" line="1908"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1755"/> + <location filename="UI/UserInterface.py" line="1761"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1755"/> + <location filename="UI/UserInterface.py" line="1761"/> <source>E&xport Preferences...</source> <translation>Einstellungen e&xportieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1758"/> + <location filename="UI/UserInterface.py" line="1764"/> <source>Export the current configuration</source> <translation>Exportiert die aktuelle Konfiguration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1759"/> + <location filename="UI/UserInterface.py" line="1765"/> <source><b>Export Preferences</b><p>Export the current configuration to a file.</p></source> <translation><b>Einstellungen exportieren</b><p>Exportiert die aktuelle Konfiguration in eine Datei.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1766"/> + <location filename="UI/UserInterface.py" line="1772"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1766"/> + <location filename="UI/UserInterface.py" line="1772"/> <source>I&mport Preferences...</source> <translation>Einstellungen i&mportieren...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1769"/> + <location filename="UI/UserInterface.py" line="1775"/> <source>Import a previously exported configuration</source> <translation>Importiert eine zuvor exportierte Konfiguration</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1771"/> + <location filename="UI/UserInterface.py" line="1777"/> <source><b>Import Preferences</b><p>Import a previously exported configuration.</p></source> <translation><b>Einstellungen importieren</b><p>Importiert eine zuvor exportierte Konfiguration.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1886"/> + <location filename="UI/UserInterface.py" line="1892"/> <source>Show next</source> <translation>Zeige nächste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1894"/> + <location filename="UI/UserInterface.py" line="1900"/> <source>Show previous</source> <translation>Zeige vorherige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1334"/> + <location filename="UI/UserInterface.py" line="1340"/> <source>Left Sidebar</source> <translation>Linke Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1334"/> + <location filename="UI/UserInterface.py" line="1340"/> <source>&Left Sidebar</source> <translation>&Linke Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1336"/> + <location filename="UI/UserInterface.py" line="1342"/> <source>Toggle the left sidebar window</source> <translation>Schalte das Fenster der linken Seitenleiste um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1337"/> + <location filename="UI/UserInterface.py" line="1343"/> <source><b>Toggle the left sidebar window</b><p>If the left sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Seitenleiste um</b><p>Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1356"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>Bottom Sidebar</source> <translation>Untere Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1356"/> + <location filename="UI/UserInterface.py" line="1362"/> <source>&Bottom Sidebar</source> <translation>&Untere Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1359"/> + <location filename="UI/UserInterface.py" line="1365"/> <source>Toggle the bottom sidebar window</source> <translation>Schalte das Fenster der unteren Seitenleiste um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1360"/> + <location filename="UI/UserInterface.py" line="1366"/> <source><b>Toggle the bottom sidebar window</b><p>If the bottom sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der unteren Seitenleiste um</b><p>Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1209"/> + <location filename="UI/UserInterface.py" line="1215"/> <source>&Debug-Viewer</source> <translation>&Debuganzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1682"/> + <location filename="UI/UserInterface.py" line="1688"/> <source>SQL Browser</source> <translation>SQL Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1682"/> + <location filename="UI/UserInterface.py" line="1688"/> <source>SQL &Browser...</source> <translation>SQL &Browser...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1686"/> + <location filename="UI/UserInterface.py" line="1692"/> <source>Browse a SQL database</source> <translation>Erforsche eine SQL Datenbank</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1687"/> + <location filename="UI/UserInterface.py" line="1693"/> <source><b>SQL Browser</b><p>Browse a SQL database.</p></source> <translation><b>SQL Browser</b><p>Erforsche eine SQL Datenbank.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4020"/> + <location filename="UI/UserInterface.py" line="4026"/> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Der SQL Browser konnte nicht gestartet werden.<br>Stellen Sie sicher, dass er als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1718"/> + <location filename="UI/UserInterface.py" line="1724"/> <source>Icon Editor</source> <translation>Icon Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1718"/> + <location filename="UI/UserInterface.py" line="1724"/> <source>&Icon Editor...</source> <translation>&Icon Editor...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="3837"/> + <location filename="UI/UserInterface.py" line="3843"/> <source>Qt 3 support</source> <translation>Qt 3 Unterstützung</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2070"/> + <location filename="UI/UserInterface.py" line="2076"/> <source><b>PySide Documentation</b><p>Display the PySide Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>PySide Dokumentation</b><p>Zeige die PySide Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4500"/> + <location filename="UI/UserInterface.py" line="4506"/> <source><p>The PySide documentation starting point has not been configured.</p></source> <translation><p>Der PySide Dokumentations Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> + <location filename="UI/UserInterface.py" line="2073"/> <source>PySide Documentation</source> <translation>PySide Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2067"/> + <location filename="UI/UserInterface.py" line="2073"/> <source>Py&Side Documentation</source> <translation>Py&Side Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2069"/> + <location filename="UI/UserInterface.py" line="2075"/> <source>Open PySide Documentation</source> <translation>Öffne die PySide Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1457"/> + <location filename="UI/UserInterface.py" line="1463"/> <source><b>Helpviewer</b><p>Display the eric5 web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well</p><p>If called with a word selected, this word is search in the Qt help collection.</p></source> <translation><b>Hilfe-Fenster</b><p>Zeige den eric5 Web-Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.</p><p>Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt Hilfesammlung gesucht.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1487"/> + <location filename="UI/UserInterface.py" line="1493"/> <source><b>Check for Updates...</b><p>Checks the internet for updates of eric5.</p></source> <translation><b>Auf Aktualisierungen prüfen...</b> <p>Dies prüft im Internet auf Verfügbarkeit von Updates von eric5.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1499"/> + <location filename="UI/UserInterface.py" line="1505"/> <source><b>Show downloadable versions...</b><p>Shows the eric5 versions available for download from the internet.</p></source> <translation><b>Zeige verfügbare Versionen...</b><p>Zeigt die eric5 Versionen, die vom Internet heruntergeladen werden können.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1710"/> + <location filename="UI/UserInterface.py" line="1716"/> <source>Start the eric5 Web Browser</source> <translation>Startet den eric5 Web-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1722"/> + <location filename="UI/UserInterface.py" line="1728"/> <source>Start the eric5 Icon Editor</source> <translation>Starte den eric5 Icon Editor</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1723"/> + <location filename="UI/UserInterface.py" line="1729"/> <source><b>Icon Editor</b><p>Starts the eric5 Icon Editor for editing simple icons.</p></source> <translation><b>Icon Editor</b><p>Startet den eric5 Icon Editor zumEditieren einfacher Icons.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1792"/> + <location filename="UI/UserInterface.py" line="1798"/> <source><b>Show external tools</b><p>Opens a dialog to show the path and versions of all extenal tools used by eric5.</p></source> <translation><b>Zeige externe Werkzeuge</b><p>Öffnet einen Dialog, der die Pfade und Versionen der von eric5 genutzten externen Werkzeuge anzeigt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2052"/> + <location filename="UI/UserInterface.py" line="2058"/> <source><b>Eric API Documentation</b><p>Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric5 installation directory.</p></source> <translation><b>Eric API Dokumentation</b><p>Zeige die Eric API Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric5 Installationverzeichnis.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="3837"/> + <location filename="UI/UserInterface.py" line="3843"/> <source>Qt v.3 is not supported by eric5.</source> <translation>Qt v.3 wird von eric5 nicht unterstützt.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5431"/> + <location filename="UI/UserInterface.py" line="5439"/> <source>The update to <b>{0}</b> of eric5 is available at <b>{1}</b>. Would you like to get it?</source> <translation>Eine Aktualisierung auf <b>{0}</b> von Eric5 ist unter <b>{1}</b> verfügbar. Wollen Sie sie laden?</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5440"/> + <location filename="UI/UserInterface.py" line="5448"/> <source>Eric5 is up to date</source> <translation>Eric5 ist aktuell</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5440"/> + <location filename="UI/UserInterface.py" line="5448"/> <source>You are using the latest version of eric5</source> <translation>Sie verwenden die aktuellste Version von eric5</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5505"/> + <location filename="UI/UserInterface.py" line="5513"/> <source>eric5 has not been configured yet. The configuration dialog will be started.</source> <translation>eric5 wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="759"/> + <location filename="UI/UserInterface.py" line="765"/> <source>Cooperation</source> <translation>Zusammenarbeit</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1368"/> + <location filename="UI/UserInterface.py" line="1374"/> <source>Alt+Shift+O</source> <translation>Alt+Shift+O</translation> </message> <message> - <location filename="UI/UserInterface.py" line="814"/> + <location filename="UI/UserInterface.py" line="820"/> <source>Symbols</source> <translation>Symbole</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1402"/> + <location filename="UI/UserInterface.py" line="1408"/> <source>Alt+Shift+Y</source> <translation>Alt+Shift+Y</translation> </message> <message> - <location filename="UI/UserInterface.py" line="822"/> + <location filename="UI/UserInterface.py" line="828"/> <source>Numbers</source> <translation>Zahlen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1424"/> <source>Alt+Shift+B</source> <translation>Alt+Shift+B</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4787"/> + <location filename="UI/UserInterface.py" line="4795"/> <source>Keyboard shortcut file (*.e4k)</source> <translation>Tastaturkurzbefehls Datei (*.e4k)</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2013"/> + <location filename="UI/UserInterface.py" line="2019"/> <source>Python 3 Documentation</source> <translation>Python 3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2013"/> + <location filename="UI/UserInterface.py" line="2019"/> <source>Python &3 Documentation</source> <translation>Python &3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2015"/> + <location filename="UI/UserInterface.py" line="2021"/> <source>Open Python 3 Documentation</source> <translation>Öffne die Python 3 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2016"/> + <location filename="UI/UserInterface.py" line="2022"/> <source><b>Python 3 Documentation</b><p>Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and <i>/usr/share/doc/packages/python/html</i> on Unix. Set PYTHON3DOCDIR in your environment to override this. </p></source> <translation><b>Python 3 Dokumentation</b><p>Zeigt die Python 3 Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3 Dokumentation gesucht wird, unter Windows das Verzeichnis doc unter dem Verzeichnis, in dem der Python 3 Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html</i>. Um dies zu überschreiben, können sie die Umgebungsvariable PYTHON3DOCDIR setzen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2028"/> + <location filename="UI/UserInterface.py" line="2034"/> <source>Python 2 Documentation</source> <translation>Python 2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2028"/> + <location filename="UI/UserInterface.py" line="2034"/> <source>Python &2 Documentation</source> <translation>Python &2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2030"/> + <location filename="UI/UserInterface.py" line="2036"/> <source>Open Python 2 Documentation</source> <translation>Öffne die Python 2 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="2031"/> + <location filename="UI/UserInterface.py" line="2037"/> <source><b>Python 2 Documentation</b><p>Display the Python 2 documentation. If no documentation directory is configured, the location of the Python 2 documentation is assumed to be the doc directory underneath the location of the configured Python 2 executable on Windows and <i>/usr/share/doc/packages/python/html/python-docs-html</i> on Unix. Set PYTHON2DOCDIR in your environment to override this. </p></source> <translation><b>Python 2 Dokumentation</b><p>Zeigt die Python 2 Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 2 Dokumentation gesucht wird, unter Windows das Verzeichnis doc unter dem Verzeichnis, in dem der konfigurierte Python 2 Interpreter installiert ist, und unter Unix das Verzeichnis <i>/usr/share/doc/packages/python/html/python-docs-html</i>. Um dies zu überschreiben, können sie die Umgebungsvariable PYTHON2DOCDIR setzen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5358"/> + <location filename="UI/UserInterface.py" line="5366"/> <source>Error getting versions information</source> <translation>Fehler beim Herunterladen der Versionsinformationen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5352"/> + <location filename="UI/UserInterface.py" line="5360"/> <source>The versions information could not be downloaded. Please go online and try again.</source> <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen sie online und versuchen sie es erneut.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4602"/> + <location filename="UI/UserInterface.py" line="4608"/> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="4602"/> + <location filename="UI/UserInterface.py" line="4608"/> <source>Could not start a web browser</source> <translation>Der Systemwebbrowser konnte nicht gestartet werden</translation> </message> <message> - <location filename="UI/UserInterface.py" line="5358"/> + <location filename="UI/UserInterface.py" line="5366"/> <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source> <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen sie online und versuchen sie es erneut.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1706"/> + <location filename="UI/UserInterface.py" line="1712"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1706"/> + <location filename="UI/UserInterface.py" line="1712"/> <source>eric5 &Web Browser...</source> <translation>eric5 &Web-Browser...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1711"/> + <location filename="UI/UserInterface.py" line="1717"/> <source><b>eric5 Web Browser</b><p>Browse the Internet with the eric5 Web Browser.</p></source> <translation><b>eric5 Web-Browser</b><p>Durchforste das Internet mit dem eric5 Web-Browser.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="489"/> + <location filename="UI/UserInterface.py" line="495"/> <source>Setting View Profile...</source> <translation>Stelle Ansichtenprofil ein...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="493"/> + <location filename="UI/UserInterface.py" line="499"/> <source>Reading Tasks...</source> <translation>Lese Aufgaben...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="497"/> + <location filename="UI/UserInterface.py" line="503"/> <source>Reading Templates...</source> <translation>Lese Vorlagen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="501"/> + <location filename="UI/UserInterface.py" line="507"/> <source>Starting Debugger...</source> <translation>Starte Debugger...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1132"/> + <location filename="UI/UserInterface.py" line="1138"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1132"/> + <location filename="UI/UserInterface.py" line="1138"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1132"/> + <location filename="UI/UserInterface.py" line="1138"/> <source>Ctrl+Shift+N</source> <comment>File|New Window</comment> <translation>Ctrl+Shift+N</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1137"/> + <location filename="UI/UserInterface.py" line="1143"/> <source>Open a new eric5 instance</source> <translation>Öffnet eine neue eric5 Instanz</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1138"/> + <location filename="UI/UserInterface.py" line="1144"/> <source><b>New Window</b><p>This opens a new instance of the eric5 IDE.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet eine neue Instanz der eric5 IDE.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1555"/> + <location filename="UI/UserInterface.py" line="1561"/> <source>Unittest Rerun Failed</source> <translation>Fehlerhafte Modultests wiederholen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1555"/> - <source>Rerun Failed Tests...</source> - <translation>Fehlerhafte Tests wiederholen...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1559"/> - <source>Rerun failed tests of the last run</source> - <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1561"/> + <source>Rerun Failed Tests...</source> + <translation>Fehlerhafte Tests wiederholen...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1565"/> + <source>Rerun failed tests of the last run</source> + <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1567"/> <source><b>Rerun Failed Tests</b><p>Rerun all tests that failed during the last unittest run.</p></source> <translation><b>Fehlerhafte Tests wiederholen</b><p>Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1669"/> + <location filename="UI/UserInterface.py" line="1675"/> <source>Compare &Files side by side...</source> <translation>Dateien &Seite an Seite vergleichen...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1730"/> + <location filename="UI/UserInterface.py" line="1736"/> <source>Snapshot</source> <translation>Bildschirmfoto</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1730"/> + <location filename="UI/UserInterface.py" line="1736"/> <source>&Snapshot...</source> <translation>&Bildschirmfoto...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1734"/> + <location filename="UI/UserInterface.py" line="1740"/> <source>Take snapshots of a screen region</source> <translation>Bildschirmfoto aufnehmen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1735"/> + <location filename="UI/UserInterface.py" line="1741"/> <source><b>Snapshot</b><p>This opens a dialog to take snapshots of a screen region.</p></source> <translation><b>Bildschirmfoto</b><p>Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="4070"/> + <location filename="UI/UserInterface.py" line="4076"/> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die Bildschirmfotoanwendung konnte nicht gestartet werden.<br>Stellen Sie sicher, dass sie als <b>{0}</b> verfügbar ist.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="5523"/> + <location filename="UI/UserInterface.py" line="5531"/> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1300"/> + <location filename="UI/UserInterface.py" line="1306"/> <source>Left Toolbox</source> <translation>Linke Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1311"/> + <location filename="UI/UserInterface.py" line="1317"/> <source>Right Toolbox</source> <translation>Rechte Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1184"/> + <location filename="UI/UserInterface.py" line="1190"/> <source>Switch the input focus to the Project-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1186"/> + <location filename="UI/UserInterface.py" line="1192"/> <source><b>Activate Project-Viewer</b><p>This switches the input focus to the Project-Viewer window.</p></source> <translation><b>Projektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1199"/> + <location filename="UI/UserInterface.py" line="1205"/> <source>Switch the input focus to the Multiproject-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1201"/> + <location filename="UI/UserInterface.py" line="1207"/> <source><b>Activate Multiproject-Viewer</b><p>This switches the input focus to the Multiproject-Viewer window.</p></source> <translation><b>Mehrfachprojektanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1214"/> + <location filename="UI/UserInterface.py" line="1220"/> <source>Switch the input focus to the Debug-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1216"/> + <location filename="UI/UserInterface.py" line="1222"/> <source><b>Activate Debug-Viewer</b><p>This switches the input focus to the Debug-Viewer window.</p></source> <translation><b>Debuganzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1229"/> + <location filename="UI/UserInterface.py" line="1235"/> <source>Switch the input focus to the Shell window.</source> <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1231"/> + <location filename="UI/UserInterface.py" line="1237"/> <source><b>Activate Shell</b><p>This switches the input focus to the Shell window.</p></source> <translation><b>Shell aktivieren</b><p>Dies schaltet den Eingabefokus auf das Shell-Fenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1239"/> + <location filename="UI/UserInterface.py" line="1245"/> <source>&File-Browser</source> <translation>Datei-&Browser</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1244"/> + <location filename="UI/UserInterface.py" line="1250"/> <source>Switch the input focus to the File-Browser window.</source> <translation>Schalte den Eingabefokus auf das Datei-Browser Fenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1246"/> + <location filename="UI/UserInterface.py" line="1252"/> <source><b>Activate File-Browser</b><p>This switches the input focus to the File-Browser window.</p></source> <translation><b>Datei-Browser aktivieren</b><p>Dies schaltet den Eingabefokus auf das Datei-Browser Fenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1254"/> + <location filename="UI/UserInterface.py" line="1260"/> <source>Lo&g-Viewer</source> <translation>&Ausgabefenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1259"/> + <location filename="UI/UserInterface.py" line="1265"/> <source>Switch the input focus to the Log-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1261"/> + <location filename="UI/UserInterface.py" line="1267"/> <source><b>Activate Log-Viewer</b><p>This switches the input focus to the Log-Viewer window.</p></source> <translation><b>Ausgabefenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Ausgabefenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1269"/> + <location filename="UI/UserInterface.py" line="1275"/> <source>&Task-Viewer</source> <translation>&Aufgabenanzeige</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1274"/> + <location filename="UI/UserInterface.py" line="1280"/> <source>Switch the input focus to the Task-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1284"/> + <location filename="UI/UserInterface.py" line="1290"/> <source>Templ&ate-Viewer</source> <translation>&Vorlagen</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1289"/> + <location filename="UI/UserInterface.py" line="1295"/> <source>Switch the input focus to the Template-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1291"/> + <location filename="UI/UserInterface.py" line="1297"/> <source><b>Activate Template-Viewer</b><p>This switches the input focus to the Template-Viewer window.</p></source> <translation><b>Vorlagen aktivieren</b><p>Dies schaltet den Eingabefokus auf das Vorlagenfenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1300"/> + <location filename="UI/UserInterface.py" line="1306"/> <source>&Left Toolbox</source> <translation>&Linke Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1302"/> + <location filename="UI/UserInterface.py" line="1308"/> <source>Toggle the Left Toolbox window</source> <translation>Schalte das Fenster der linken Werkzeugbox um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1303"/> + <location filename="UI/UserInterface.py" line="1309"/> <source><b>Toggle the Left Toolbox window</b><p>If the Left Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der linken Werkzeugbox um</b><p>Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1311"/> + <location filename="UI/UserInterface.py" line="1317"/> <source>&Right Toolbox</source> <translation>&Rechte Werkzeugbox</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1313"/> + <location filename="UI/UserInterface.py" line="1319"/> <source>Toggle the Right Toolbox window</source> <translation>Schalte das Fenster der rechten Werkzeugbox um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1314"/> + <location filename="UI/UserInterface.py" line="1320"/> <source><b>Toggle the Right Toolbox window</b><p>If the Right Toolbox window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Werkzeugbox um</b><p>Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1345"/> + <location filename="UI/UserInterface.py" line="1351"/> <source>Right Sidebar</source> <translation>Rechte Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1345"/> + <location filename="UI/UserInterface.py" line="1351"/> <source>&Right Sidebar</source> <translation>&Rechte Seitenleiste</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1347"/> + <location filename="UI/UserInterface.py" line="1353"/> <source>Toggle the right sidebar window</source> <translation>Schalte das Fenster der rechten Seitenleiste um</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1348"/> + <location filename="UI/UserInterface.py" line="1354"/> <source><b>Toggle the right sidebar window</b><p>If the right sidebar window is hidden then display it. If it is displayed then close it.</p></source> <translation><b>Schalte das Fenster der rechten Seitenleiste um</b><p>Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1368"/> - <source>Cooperation-Viewer</source> - <translation>Zusammenarbeit</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1368"/> - <source>Co&operation-Viewer</source> - <translation>&Zusammenarbeit</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1374"/> + <source>Cooperation-Viewer</source> + <translation>Zusammenarbeit</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1374"/> + <source>Co&operation-Viewer</source> + <translation>&Zusammenarbeit</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1380"/> <source>Switch the input focus to the Cooperation-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1376"/> + <location filename="UI/UserInterface.py" line="1382"/> <source><b>Activate Cooperation-Viewer</b><p>This switches the input focus to the Cooperation-Viewer window.</p></source> <translation><b>Zusammenarbeitsfenster aktivieren</b><p>Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1402"/> + <location filename="UI/UserInterface.py" line="1408"/> <source>Symbols-Viewer</source> <translation>Symbolanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1402"/> - <source>S&ymbols-Viewer</source> - <translation>S&ymbolanzeiger</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1408"/> + <source>S&ymbols-Viewer</source> + <translation>S&ymbolanzeiger</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1414"/> <source>Switch the input focus to the Symbols-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1410"/> + <location filename="UI/UserInterface.py" line="1416"/> <source><b>Activate Symbols-Viewer</b><p>This switches the input focus to the Symbols-Viewer window.</p></source> <translation><b>Symbolanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> + <location filename="UI/UserInterface.py" line="1424"/> <source>Numbers-Viewer</source> <translation>Zahlenanzeiger</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1418"/> - <source>Num&bers-Viewer</source> - <translation>Za&hlenanzeiger</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1424"/> + <source>Num&bers-Viewer</source> + <translation>Za&hlenanzeiger</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1430"/> <source>Switch the input focus to the Numbers-Viewer window.</source> <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1426"/> + <location filename="UI/UserInterface.py" line="1432"/> <source><b>Activate Numbers-Viewer</b><p>This switches the input focus to the Numbers-Viewer window.</p></source> <translation><b>Zahlenanzeiger aktivieren</b><p>Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2171"/> + <location filename="UI/UserInterface.py" line="2177"/> <source>&Windows</source> <translation>&Fenster</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1276"/> + <location filename="UI/UserInterface.py" line="1282"/> <source><b>Activate Task-Viewer</b><p>This switches the input focus to the Task-Viewer window.</p></source> <translation><b>Aufgabenanzeige aktivieren</b><p>Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1385"/> + <location filename="UI/UserInterface.py" line="1391"/> <source>IRC</source> <translation>IRC</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1385"/> + <location filename="UI/UserInterface.py" line="1391"/> <source>&IRC</source> <translation>&IRC</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1385"/> - <source>Meta+Shift+I</source> - <translation>Meta+Shift+I</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1391"/> + <source>Meta+Shift+I</source> + <translation>Meta+Shift+I</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1397"/> <source>Switch the input focus to the IRC window.</source> <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1393"/> + <location filename="UI/UserInterface.py" line="1399"/> <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>IRC aktivieren</b><p>Dies schaltet den Eingabefokus auf das IRC-Fenster um.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1603"/> + <location filename="UI/UserInterface.py" line="1609"/> <source>Qt-Designer</source> <translation>Qt-Designer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1603"/> + <location filename="UI/UserInterface.py" line="1609"/> <source>Qt-&Designer...</source> <translation>Qt-&Designer...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1606"/> + <location filename="UI/UserInterface.py" line="1612"/> <source>Start Qt-Designer</source> <translation>Starte Qt-Designer</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1607"/> + <location filename="UI/UserInterface.py" line="1613"/> <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> <translation><b>Qt-Designer</b><p>Starte Qt-Designer.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1623"/> + <location filename="UI/UserInterface.py" line="1629"/> <source>Qt-Linguist</source> <translation>Qt-Linguist</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1623"/> + <location filename="UI/UserInterface.py" line="1629"/> <source>Qt-&Linguist...</source> <translation>Qt-&Linguist...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1626"/> + <location filename="UI/UserInterface.py" line="1632"/> <source>Start Qt-Linguist</source> <translation>Starte Qt-Linguist</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1627"/> + <location filename="UI/UserInterface.py" line="1633"/> <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> <translation><b>Qt-Linguist</b><p>Starte Qt-Linguist (Übersetzungsprogramm).</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1985"/> + <location filename="UI/UserInterface.py" line="1991"/> <source>Qt5 Documentation</source> <translation>Qt5 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1985"/> + <location filename="UI/UserInterface.py" line="1991"/> <source>Qt&5 Documentation</source> <translation>Qt&5 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1987"/> + <location filename="UI/UserInterface.py" line="1993"/> <source>Open Qt5 Documentation</source> <translation>Öffne die Qt5 Dokumentation</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1988"/> + <location filename="UI/UserInterface.py" line="1994"/> <source><b>Qt5 Documentation</b><p>Display the Qt5 Documentation. Dependant upon your settings, this will either show the help in Eric's internal help viewer, or execute a web browser or Qt Assistant. </p></source> <translation><b>Qt5 Dokumentation</b><p>Zeige die Qt5 Dokumentation an. Abhängig von den Einstellungen, wird Erics interner Hilfeanzeiger, ein Web-Browser oder Qt Assistant verwendet.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="2474"/> + <location filename="UI/UserInterface.py" line="2480"/> <source><p>This part of the status bar allows zooming the current editor, shell or terminal.</p></source> <translation><p>Dieser Teil der Statusleiste ermöglicht das Zoomen des aktuellen Editors, der Shell oder des Terminals.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1863"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Manage SSL Certificates</source> <translation>SSL Zertifikate verwalten</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1863"/> + <location filename="UI/UserInterface.py" line="1869"/> <source>Manage SSL Certificates...</source> <translation>SSL Zertifikate verwalten...</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1868"/> + <location filename="UI/UserInterface.py" line="1874"/> <source>Manage the saved SSL certificates</source> <translation>Verwalten der gespeicherten SSL Zertifikate</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1870"/> + <location filename="UI/UserInterface.py" line="1876"/> <source><b>Manage SSL Certificates...</b><p>Opens a dialog to manage the saved SSL certificates.</p></source> <translation><b>SSL Zertifikate verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter SSL Zertifikate.</p></translation> </message> @@ -52287,180 +52287,190 @@ <context> <name>Utilities</name> <message> - <location filename="Utilities/__init__.py" line="1110"/> + <location filename="Utilities/__init__.py" line="1018"/> <source><p>You may use %-codes as placeholders in the string. Supported codes are:<table><tr><td>%C</td><td>column of the cursor of the current editor</td></tr><tr><td>%D</td><td>directory of the current editor</td></tr><tr><td>%F</td><td>filename of the current editor</td></tr><tr><td>%H</td><td>home directory of the current user</td></tr><tr><td>%L</td><td>line of the cursor of the current editor</td></tr><tr><td>%P</td><td>path of the current project</td></tr><tr><td>%S</td><td>selected text of the current editor</td></tr><tr><td>%U</td><td>username of the current user</td></tr><tr><td>%%</td><td>the percent sign</td></tr></table></p></source> <translation><p>Sie können %-Codes als Platzhalter in der Eingabe verwenden. Unterstützte Codes sind:<table><tr><td>%C</td><td>Spalte des Cursor des aktuellen Editors</td></tr><tr><td>%D</td><td>Verzeichnis des aktuellen Editors</td></tr><tr><td>%F</td><td>Dateiname des aktuellen Editors</td></tr><tr><td>%H</td><td>Home-Verzeichnis des aktullen Nutzers</td></tr><tr><td>%L</td><td>Zeile des Cursor des aktuellen Editors</td></tr><tr><td>%P</td><td>Pfad des aktuellen Projektes</td></tr><tr><td>%S</td><td>selektierter Text des aktuellen Editors</td></tr><tr><td>%U</td><td>Nutzername des aktuellen Nutzers</td></tr><tr><td>%%</td><td>das Prozentzeichen</td></tr></table></p></translation> </message> <message> <location filename="Utilities/__init__.py" line="1310"/> <source>Python2 interpreter not configured.</source> - <translation>Kein Python2 Interpreter konfiguriert.</translation> + <translation type="obsolete">Kein Python2 Interpreter konfiguriert.</translation> </message> <message> <location filename="Utilities/__init__.py" line="1360"/> <source>Python2 interpreter did not finish within 30s.</source> - <translation>Python2 Interpreter wurde nicht innerhalb von 30s beendet.</translation> + <translation type="obsolete">Python2 Interpreter wurde nicht innerhalb von 30s beendet.</translation> + </message> + <message> + <location filename="Utilities/__init__.py" line="1170"/> + <source>{0} interpreter not configured.</source> + <translation>Kein {0} Interpreter konfiguriert.</translation> + </message> + <message> + <location filename="Utilities/__init__.py" line="1220"/> + <source>{0} interpreter did not finish within 30s.</source> + <translation>{0} Interpreter wurde nicht innerhalb von 30s beendet.</translation> </message> </context> <context> <name>Variable Types</name> <message> - <location filename="Debugger/Config.py" line="15"/> + <location filename="Debugger/Config.py" line="17"/> <source>Hidden Attributes</source> <translation>Verstecktes Attribut</translation> </message> <message> - <location filename="Debugger/Config.py" line="16"/> + <location filename="Debugger/Config.py" line="18"/> <source>None</source> <translation>None</translation> </message> <message> - <location filename="Debugger/Config.py" line="17"/> - <source>Type</source> - <translation>Typ</translation> - </message> - <message> <location filename="Debugger/Config.py" line="19"/> - <source>Integer</source> - <translation>Integer</translation> - </message> - <message> - <location filename="Debugger/Config.py" line="20"/> - <source>Long Integer</source> - <translation>Long Integer</translation> + <source>Type</source> + <translation>Typ</translation> </message> <message> <location filename="Debugger/Config.py" line="21"/> - <source>Float</source> - <translation>Float</translation> + <source>Integer</source> + <translation>Integer</translation> </message> <message> <location filename="Debugger/Config.py" line="22"/> - <source>Complex</source> - <translation>Complex</translation> + <source>Long Integer</source> + <translation>Long Integer</translation> </message> <message> <location filename="Debugger/Config.py" line="23"/> - <source>String</source> - <translation>String</translation> + <source>Float</source> + <translation>Float</translation> </message> <message> <location filename="Debugger/Config.py" line="24"/> - <source>Unicode String</source> - <translation>Unicode String</translation> + <source>Complex</source> + <translation>Complex</translation> </message> <message> <location filename="Debugger/Config.py" line="25"/> + <source>String</source> + <translation>String</translation> + </message> + <message> + <location filename="Debugger/Config.py" line="26"/> + <source>Unicode String</source> + <translation>Unicode String</translation> + </message> + <message> + <location filename="Debugger/Config.py" line="27"/> <source>Tuple</source> <translation>Tuple</translation> </message> <message> - <location filename="Debugger/Config.py" line="28"/> - <source>Dictionary Proxy</source> - <translation>Dictionary Proxy</translation> - </message> - <message> <location filename="Debugger/Config.py" line="30"/> - <source>File</source> - <translation>Datei</translation> - </message> - <message> - <location filename="Debugger/Config.py" line="31"/> - <source>X Range</source> - <translation>XRange</translation> + <source>Dictionary Proxy</source> + <translation>Dictionary Proxy</translation> </message> <message> <location filename="Debugger/Config.py" line="32"/> - <source>Slice</source> - <translation>Slice</translation> + <source>File</source> + <translation>Datei</translation> </message> <message> <location filename="Debugger/Config.py" line="33"/> - <source>Buffer</source> - <translation>Puffer</translation> + <source>X Range</source> + <translation>XRange</translation> </message> <message> <location filename="Debugger/Config.py" line="34"/> - <source>Class</source> - <translation>Klasse</translation> + <source>Slice</source> + <translation>Slice</translation> </message> <message> <location filename="Debugger/Config.py" line="35"/> - <source>Class Instance</source> - <translation>Klasseninstanz</translation> + <source>Buffer</source> + <translation>Puffer</translation> </message> <message> <location filename="Debugger/Config.py" line="36"/> - <source>Class Method</source> - <translation>Klassenmethode</translation> + <source>Class</source> + <translation>Klasse</translation> </message> <message> <location filename="Debugger/Config.py" line="37"/> - <source>Class Property</source> - <translation>Klasseneigenschaft</translation> + <source>Class Instance</source> + <translation>Klasseninstanz</translation> </message> <message> <location filename="Debugger/Config.py" line="38"/> - <source>Generator</source> - <translation>Generator</translation> + <source>Class Method</source> + <translation>Klassenmethode</translation> </message> <message> <location filename="Debugger/Config.py" line="39"/> - <source>Function</source> - <translation>Funktion</translation> + <source>Class Property</source> + <translation>Klasseneigenschaft</translation> </message> <message> <location filename="Debugger/Config.py" line="40"/> - <source>Builtin Function</source> - <translation>Eingebaute Funktion</translation> + <source>Generator</source> + <translation>Generator</translation> </message> <message> <location filename="Debugger/Config.py" line="41"/> - <source>Code</source> - <translation>Code</translation> + <source>Function</source> + <translation>Funktion</translation> </message> <message> <location filename="Debugger/Config.py" line="42"/> - <source>Module</source> - <translation>Modul</translation> + <source>Builtin Function</source> + <translation>Eingebaute Funktion</translation> </message> <message> <location filename="Debugger/Config.py" line="43"/> - <source>Ellipsis</source> - <translation>Ellipsis</translation> + <source>Code</source> + <translation>Code</translation> </message> <message> <location filename="Debugger/Config.py" line="44"/> - <source>Traceback</source> - <translation>Traceback</translation> + <source>Module</source> + <translation>Modul</translation> </message> <message> <location filename="Debugger/Config.py" line="45"/> - <source>Frame</source> - <translation>Frame</translation> + <source>Ellipsis</source> + <translation>Ellipsis</translation> </message> <message> <location filename="Debugger/Config.py" line="46"/> + <source>Traceback</source> + <translation>Traceback</translation> + </message> + <message> + <location filename="Debugger/Config.py" line="47"/> + <source>Frame</source> + <translation>Frame</translation> + </message> + <message> + <location filename="Debugger/Config.py" line="48"/> <source>Other</source> <translation>Sonstiges</translation> </message> <message> - <location filename="Debugger/Config.py" line="18"/> + <location filename="Debugger/Config.py" line="20"/> <source>Boolean</source> <translation>Boolean</translation> </message> <message> - <location filename="Debugger/Config.py" line="26"/> + <location filename="Debugger/Config.py" line="28"/> <source>List/Array</source> <translation>Liste</translation> </message> <message> - <location filename="Debugger/Config.py" line="27"/> - <source>Dictionary/Hash/Map</source> - <translation>Dictionary</translation> - </message> - <message> <location filename="Debugger/Config.py" line="29"/> + <source>Dictionary/Hash/Map</source> + <translation>Dictionary</translation> + </message> + <message> + <location filename="Debugger/Config.py" line="31"/> <source>Set</source> <translation>Set</translation> </message> @@ -52491,7 +52501,7 @@ <context> <name>VariableItem</name> <message> - <location filename="Debugger/VariablesViewer.py" line="40"/> + <location filename="Debugger/VariablesViewer.py" line="42"/> <source><double click to show value></source> <translation><Doppelklick, um Wert anzuzeigen></translation> </message> @@ -52545,7 +52555,7 @@ <translation>&Lokale Filter</translation> </message> <message> - <location filename="Debugger/VariablesFilterDialog.py" line="39"/> + <location filename="Debugger/VariablesFilterDialog.py" line="41"/> <source>Save Default</source> <translation>Standard speichern</translation> </message> @@ -52553,57 +52563,57 @@ <context> <name>VariablesViewer</name> <message> - <location filename="Debugger/VariablesViewer.py" line="306"/> + <location filename="Debugger/VariablesViewer.py" line="308"/> <source>Global Variables</source> <translation>Globale Variablen</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="307"/> + <location filename="Debugger/VariablesViewer.py" line="309"/> <source>Globals</source> <translation>Global</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="311"/> + <location filename="Debugger/VariablesViewer.py" line="313"/> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Das Globale Variablen Fenster</b><p>Dieses Fenster zeigt die globalen Variablen des untersuchten Programmes an.</p></translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="317"/> + <location filename="Debugger/VariablesViewer.py" line="319"/> <source>Local Variables</source> <translation>Lokale Variablen</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="318"/> + <location filename="Debugger/VariablesViewer.py" line="320"/> <source>Locals</source> <translation>Lokal</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="322"/> + <location filename="Debugger/VariablesViewer.py" line="324"/> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Das Lokale Variablen Fenster</b><p>Dieses Fenster zeigt die lokalen Variablen des untersuchten Programmes an.</p></translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="318"/> + <location filename="Debugger/VariablesViewer.py" line="320"/> <source>Type</source> <translation>Typ</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="318"/> + <location filename="Debugger/VariablesViewer.py" line="320"/> <source>Value</source> <translation>Wert</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="563"/> + <location filename="Debugger/VariablesViewer.py" line="565"/> <source>{0} items</source> <translation>{0} Einträge</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="352"/> + <location filename="Debugger/VariablesViewer.py" line="354"/> <source>Show Details...</source> <translation>Zeige Details...</translation> </message> <message> - <location filename="Debugger/VariablesViewer.py" line="357"/> + <location filename="Debugger/VariablesViewer.py" line="359"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> @@ -52611,12 +52621,12 @@ <context> <name>VcsMercurialPlugin</name> <message> - <location filename="Plugins/PluginVcsMercurial.py" line="55"/> + <location filename="Plugins/PluginVcsMercurial.py" line="57"/> <source>Version Control - Mercurial</source> <translation>Versionskontrolle - Mercurial</translation> </message> <message> - <location filename="Plugins/PluginVcsMercurial.py" line="125"/> + <location filename="Plugins/PluginVcsMercurial.py" line="127"/> <source>Mercurial</source> <translation>Mercurial</translation> </message> @@ -52762,17 +52772,17 @@ <context> <name>VcsProjectBrowserHelper</name> <message> - <location filename="VCS/ProjectBrowserHelper.py" line="272"/> + <location filename="VCS/ProjectBrowserHelper.py" line="274"/> <source>Remove from repository (and disk)</source> <translation>Vom Repository (und der Platte) löschen</translation> </message> <message> - <location filename="VCS/ProjectBrowserHelper.py" line="255"/> + <location filename="VCS/ProjectBrowserHelper.py" line="257"/> <source>Do you really want to remove these translation files from the repository (and disk)?</source> <translation>Wollen Sie wirklich diese Übersetzungsdateien vom Repository (und der Platte) löschen?</translation> </message> <message> - <location filename="VCS/ProjectBrowserHelper.py" line="272"/> + <location filename="VCS/ProjectBrowserHelper.py" line="274"/> <source>Do you really want to remove these files/directories from the repository (and disk)?</source> <translation>Wollen Sie wirklich diese Dateien/Verzeichnisse vom Repository (und der Platte) löschen?</translation> </message> @@ -52780,142 +52790,142 @@ <context> <name>VcsProjectHelper</name> <message> - <location filename="VCS/ProjectHelper.py" line="64"/> + <location filename="VCS/ProjectHelper.py" line="66"/> <source>New from repository</source> <translation>Neu aus Repository</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="64"/> - <source>&New from repository...</source> - <translation>&Neu aus Repository...</translation> - </message> - <message> <location filename="VCS/ProjectHelper.py" line="66"/> + <source>&New from repository...</source> + <translation>&Neu aus Repository...</translation> + </message> + <message> + <location filename="VCS/ProjectHelper.py" line="68"/> <source>Create a new project from the VCS repository</source> <translation>Erzeuge ein neues Projekt aus dem VCS Repository</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="69"/> + <location filename="VCS/ProjectHelper.py" line="71"/> <source><b>New from repository</b><p>This creates a new local project from the VCS repository.</p></source> <translation><b>Neu aus Repository</b><p>Dies erzeugt ein neues Projekt aus dem VCS Repository.</p></translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="76"/> - <source>Export from repository</source> - <translation>Export aus Repository</translation> - </message> - <message> - <location filename="VCS/ProjectHelper.py" line="76"/> - <source>&Export from repository...</source> - <translation>&Export aus Repository...</translation> - </message> - <message> <location filename="VCS/ProjectHelper.py" line="78"/> + <source>Export from repository</source> + <translation>Export aus Repository</translation> + </message> + <message> + <location filename="VCS/ProjectHelper.py" line="78"/> + <source>&Export from repository...</source> + <translation>&Export aus Repository...</translation> + </message> + <message> + <location filename="VCS/ProjectHelper.py" line="80"/> <source>Export a project from the repository</source> <translation>Exportiert ein Projekt aus dem Repository</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="81"/> + <location filename="VCS/ProjectHelper.py" line="83"/> <source><b>Export from repository</b><p>This exports a project from the repository.</p></source> <translation><b>Export aus Repository</b<<p>Dies exportiert ein Projekt aus dem Repository.</p></translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="88"/> + <location filename="VCS/ProjectHelper.py" line="90"/> <source>Add to repository</source> <translation>Zum Repository hinzufügen</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="88"/> - <source>&Add to repository...</source> - <translation>Zum Repository &hinzufügen...</translation> - </message> - <message> <location filename="VCS/ProjectHelper.py" line="90"/> + <source>&Add to repository...</source> + <translation>Zum Repository &hinzufügen...</translation> + </message> + <message> + <location filename="VCS/ProjectHelper.py" line="92"/> <source>Add the local project to the VCS repository</source> <translation>Fügt das lokale Projekt zum VCS Repository hinzu</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="93"/> + <location filename="VCS/ProjectHelper.py" line="95"/> <source><b>Add to repository</b><p>This adds (imports) the local project to the VCS repository.</p></source> <translation><b>Zum Repository hinzufügen</b><p>Dies fügt das lokale Projekt zum VCS Repository hinzu (Import).</p></translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="165"/> + <location filename="VCS/ProjectHelper.py" line="167"/> <source>New Project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="308"/> + <location filename="VCS/ProjectHelper.py" line="310"/> <source>Select version control system for the project</source> <translation>Wähle das Versionskontrollsystem für das Projekt</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="327"/> + <location filename="VCS/ProjectHelper.py" line="329"/> <source>Would you like to edit the VCS command options?</source> <translation>Möchten sie die VCS Befehlsoptionen bearbeiten?</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="179"/> + <location filename="VCS/ProjectHelper.py" line="181"/> <source>Create project directory</source> <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="179"/> + <location filename="VCS/ProjectHelper.py" line="181"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="254"/> + <location filename="VCS/ProjectHelper.py" line="256"/> <source>New project from repository</source> <translation>Neues Projekt aus Repository</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="204"/> + <location filename="VCS/ProjectHelper.py" line="206"/> <source>Select a project file to open.</source> <translation>Wähle eine zu öffnende Projektdatei aus.</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="246"/> + <location filename="VCS/ProjectHelper.py" line="248"/> <source>Shall the project file be added to the repository?</source> <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="254"/> + <location filename="VCS/ProjectHelper.py" line="256"/> <source>The project could not be retrieved from the repository.</source> <translation>Das Project konnte nicht aus dem Repository geladen werden.</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="327"/> + <location filename="VCS/ProjectHelper.py" line="329"/> <source>Import Project</source> <translation>Projekt importieren</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="381"/> + <location filename="VCS/ProjectHelper.py" line="383"/> <source>Remove project from repository</source> <translation>Projekt aus dem Repository löschen</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="381"/> + <location filename="VCS/ProjectHelper.py" line="383"/> <source>Dou you really want to remove this project from the repository (and disk)?</source> <translation>Wollen Sie wirklich das Projekt vom Repository (und der Platte) löschen?</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="357"/> + <location filename="VCS/ProjectHelper.py" line="359"/> <source>Update</source> <translation>Aktualisieren</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="440"/> + <location filename="VCS/ProjectHelper.py" line="442"/> <source>The project should be reread. Do this now?</source> <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="219"/> + <location filename="VCS/ProjectHelper.py" line="221"/> <source>The project retrieved from the repository does not contain an eric project file (*.e4p). Create it?</source> <translation>Das aus dem Repository geladene Projekt enthält keine eric Projektdatei (*.e4p). Soll sie erzeugt werden?</translation> </message> <message> - <location filename="VCS/ProjectHelper.py" line="440"/> + <location filename="VCS/ProjectHelper.py" line="442"/> <source>Switch</source> <translation>Umschalten</translation> </message> @@ -52923,17 +52933,17 @@ <context> <name>VcsPySvnPlugin</name> <message> - <location filename="Plugins/PluginVcsPySvn.py" line="90"/> + <location filename="Plugins/PluginVcsPySvn.py" line="92"/> <source>Subversion (pysvn)</source> <translation>Subversion (pysvn)</translation> </message> <message> - <location filename="Plugins/PluginVcsPySvn.py" line="59"/> + <location filename="Plugins/PluginVcsPySvn.py" line="61"/> <source>Version Control - Subversion (pysvn)</source> <translation>Versionskontrolle - Subversion (pysvn)</translation> </message> <message> - <location filename="Plugins/PluginVcsPySvn.py" line="119"/> + <location filename="Plugins/PluginVcsPySvn.py" line="121"/> <source>Subversion</source> <translation>Subversion</translation> </message> @@ -52949,22 +52959,22 @@ <context> <name>VcsStatusMonitorThread</name> <message> - <location filename="VCS/StatusMonitorThread.py" line="67"/> + <location filename="VCS/StatusMonitorThread.py" line="69"/> <source>Checking repository status</source> <translation>Überprüfe Repository Status</translation> </message> <message> - <location filename="VCS/StatusMonitorThread.py" line="76"/> + <location filename="VCS/StatusMonitorThread.py" line="78"/> <source>Sending data</source> <translation>Sende Daten</translation> </message> <message> - <location filename="VCS/StatusMonitorThread.py" line="60"/> + <location filename="VCS/StatusMonitorThread.py" line="62"/> <source>Waiting for lock</source> <translation>Warte auf die Sperre</translation> </message> <message> - <location filename="VCS/StatusMonitorThread.py" line="80"/> + <location filename="VCS/StatusMonitorThread.py" line="82"/> <source>Timed out waiting for lock</source> <translation>Zeitüberschreitung beim Warten auf die Sperre</translation> </message> @@ -52972,17 +52982,17 @@ <context> <name>VcsSubversionPlugin</name> <message> - <location filename="Plugins/PluginVcsSubversion.py" line="96"/> + <location filename="Plugins/PluginVcsSubversion.py" line="98"/> <source>Subversion (svn)</source> <translation>Subversion (svn)</translation> </message> <message> - <location filename="Plugins/PluginVcsSubversion.py" line="55"/> + <location filename="Plugins/PluginVcsSubversion.py" line="57"/> <source>Version Control - Subversion (svn)</source> <translation>Versionskontrolle - Subversion (svn)</translation> </message> <message> - <location filename="Plugins/PluginVcsSubversion.py" line="125"/> + <location filename="Plugins/PluginVcsSubversion.py" line="127"/> <source>Subversion</source> <translation>Subversion</translation> </message> @@ -52990,17 +53000,17 @@ <context> <name>VersionControl</name> <message> - <location filename="VCS/VersionControl.py" line="547"/> + <location filename="VCS/VersionControl.py" line="549"/> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="VCS/VersionControl.py" line="547"/> + <location filename="VCS/VersionControl.py" line="549"/> <source>The process {0} could not be started. Ensure, that it is in the search path.</source> <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="VCS/VersionControl.py" line="673"/> + <location filename="VCS/VersionControl.py" line="675"/> <source>Repository status checking is switched off</source> <translation>Repository Statusüberprüfung ist ausgeschaltet</translation> </message> @@ -53008,3102 +53018,3102 @@ <context> <name>ViewManager</name> <message> - <location filename="ViewManager/ViewManager.py" line="499"/> + <location filename="ViewManager/ViewManager.py" line="501"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="499"/> + <location filename="ViewManager/ViewManager.py" line="501"/> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="504"/> - <source>Open an empty editor window</source> - <translation>Öffnet ein leeres Editorfenster</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="506"/> + <source>Open an empty editor window</source> + <translation>Öffnet ein leeres Editorfenster</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="508"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Neu</b><p>Ein neues Editorfenster wird geöffnet.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="513"/> + <location filename="ViewManager/ViewManager.py" line="515"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="513"/> + <location filename="ViewManager/ViewManager.py" line="515"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="530"/> + <location filename="ViewManager/ViewManager.py" line="532"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="530"/> + <location filename="ViewManager/ViewManager.py" line="532"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="536"/> - <source>Close the current window</source> - <translation>Schließt das aktuelle Fenster</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="538"/> + <source>Close the current window</source> + <translation>Schließt das aktuelle Fenster</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="540"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="545"/> + <location filename="ViewManager/ViewManager.py" line="547"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="548"/> - <source>Close all editor windows</source> - <translation>Schließt alle Editorfenster</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="550"/> + <source>Close all editor windows</source> + <translation>Schließt alle Editorfenster</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="552"/> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Alle Fenster schließen</b><p>Dies schließt alle Editorfenster.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="561"/> + <location filename="ViewManager/ViewManager.py" line="563"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="561"/> + <location filename="ViewManager/ViewManager.py" line="563"/> <source>&Save</source> <translation>S&peichern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="567"/> - <source>Save the current file</source> - <translation>Speichert die aktuelle Datei</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="569"/> + <source>Save the current file</source> + <translation>Speichert die aktuelle Datei</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="571"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="582"/> - <source>Save the current file to a new one</source> - <translation>Speichere die aktuelle Datei unter neuem Namen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="584"/> + <source>Save the current file to a new one</source> + <translation>Speichere die aktuelle Datei unter neuem Namen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="586"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Speichen unter</b><p>Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="596"/> - <source>Save all files</source> - <translation>Alle Dateien speichern</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="598"/> + <source>Save all files</source> + <translation>Alle Dateien speichern</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="600"/> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Alle Dateien speichern</b><p>Speichert den Inhalt aller Editorfenster.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="607"/> + <location filename="ViewManager/ViewManager.py" line="609"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="607"/> + <location filename="ViewManager/ViewManager.py" line="609"/> <source>&Print</source> <translation>&Drucken</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="613"/> - <source>Print the current file</source> - <translation>Druckt die aktuelle Datei</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="615"/> + <source>Print the current file</source> + <translation>Druckt die aktuelle Datei</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="617"/> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Datei drucken</b><p>Dies druckt den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="660"/> + <location filename="ViewManager/ViewManager.py" line="662"/> <source>Open &Recent Files</source> <translation>Zu&letzt geöffnete Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="748"/> + <location filename="ViewManager/ViewManager.py" line="750"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="748"/> + <location filename="ViewManager/ViewManager.py" line="750"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="756"/> - <source>Undo the last change</source> - <translation>Die letzte Änderung rückgängig machen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="758"/> + <source>Undo the last change</source> + <translation>Die letzte Änderung rückgängig machen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="760"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung des aktuellen Editors rückgängig.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="765"/> + <location filename="ViewManager/ViewManager.py" line="767"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="765"/> + <location filename="ViewManager/ViewManager.py" line="767"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="772"/> - <source>Redo the last change</source> - <translation>Die letzte Änderung wiederherstellen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="774"/> + <source>Redo the last change</source> + <translation>Die letzte Änderung wiederherstellen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="776"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung des aktuellen Editors wieder her.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="800"/> + <location filename="ViewManager/ViewManager.py" line="802"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="800"/> + <location filename="ViewManager/ViewManager.py" line="802"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="807"/> - <source>Cut the selection</source> - <translation>Schneidet die Auswahl aus</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="809"/> + <source>Cut the selection</source> + <translation>Schneidet die Auswahl aus</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="811"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="816"/> + <location filename="ViewManager/ViewManager.py" line="818"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="816"/> + <location filename="ViewManager/ViewManager.py" line="818"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="824"/> - <source>Copy the selection</source> - <translation>Kopiert die Auswahl</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="826"/> + <source>Copy the selection</source> + <translation>Kopiert die Auswahl</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="828"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="833"/> + <location filename="ViewManager/ViewManager.py" line="835"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="833"/> + <location filename="ViewManager/ViewManager.py" line="835"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="841"/> - <source>Paste the last cut/copied text</source> - <translation>Fügt den Inhalt der Zwischenablage ein</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="843"/> + <source>Paste the last cut/copied text</source> + <translation>Fügt den Inhalt der Zwischenablage ein</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="845"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Einfügen</b><p>Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="851"/> + <location filename="ViewManager/ViewManager.py" line="853"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="858"/> - <source>Clear all text</source> - <translation>Löscht den gesamten Text</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="860"/> + <source>Clear all text</source> + <translation>Löscht den gesamten Text</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="862"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Alles Löschen</b><p>Dies löscht den gesamten Text des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="882"/> + <location filename="ViewManager/ViewManager.py" line="884"/> <source>Indent</source> <translation>Einrücken</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="882"/> + <location filename="ViewManager/ViewManager.py" line="884"/> <source>&Indent</source> <translation>Ei&nrücken</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="889"/> + <location filename="ViewManager/ViewManager.py" line="891"/> <source>Indent line</source> <translation>Zeile einrücken</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="890"/> + <location filename="ViewManager/ViewManager.py" line="892"/> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Einrücken</b><p>Dies erhöht die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="898"/> + <location filename="ViewManager/ViewManager.py" line="900"/> <source>Unindent</source> <translation>Einrücken rückgängig</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="898"/> + <location filename="ViewManager/ViewManager.py" line="900"/> <source>U&nindent</source> <translation>Einrücken rück&gängig</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="905"/> - <source>Unindent line</source> - <translation>Einrücken der Zeile rückgängig machen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="907"/> + <source>Unindent line</source> + <translation>Einrücken der Zeile rückgängig machen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="909"/> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Einrücken rückgängig</b><p>Dies vermindert die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="933"/> + <location filename="ViewManager/ViewManager.py" line="935"/> <source>Comment</source> <translation>Kommentar</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="933"/> + <location filename="ViewManager/ViewManager.py" line="935"/> <source>C&omment</source> <translation>K&ommentar</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="940"/> - <source>Comment Line or Selection</source> - <translation>Kommentiert eine Zeile oder die Auswahl</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="942"/> + <source>Comment Line or Selection</source> + <translation>Kommentiert eine Zeile oder die Auswahl</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="944"/> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="950"/> + <location filename="ViewManager/ViewManager.py" line="952"/> <source>Uncomment</source> <translation>Kommentar entfernen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="950"/> + <location filename="ViewManager/ViewManager.py" line="952"/> <source>Unco&mment</source> <translation>Ko&mmentar entfernen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="957"/> - <source>Uncomment Line or Selection</source> - <translation>Kommentar einer Zeile oder der Auswahl entfernen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="959"/> + <source>Uncomment Line or Selection</source> + <translation>Kommentar einer Zeile oder der Auswahl entfernen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="961"/> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Kommentar entfernen</b><p>Dies entfernt den Kommentar der aktuellen Zeile oder der aktuelle Auswahl.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1037"/> + <location filename="ViewManager/ViewManager.py" line="1039"/> <source>Select all text</source> <translation>Gesamten text auswählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1053"/> + <location filename="ViewManager/ViewManager.py" line="1055"/> <source>Deselect all text</source> <translation>Hebt die Auswahl auf</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1659"/> + <location filename="QScintilla/MiniEditor.py" line="1661"/> <source>Search</source> <translation>Suchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1659"/> + <location filename="QScintilla/MiniEditor.py" line="1661"/> <source>&Search...</source> <translation>&Suchen...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1666"/> - <source>Search for a text</source> - <translation>Sucht nach Text</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="1668"/> + <source>Search for a text</source> + <translation>Sucht nach Text</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1670"/> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Suchen</b><p>Sucht einen Text im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1730"/> + <location filename="QScintilla/MiniEditor.py" line="1732"/> <source>Replace</source> <translation>Ersetzen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1730"/> + <location filename="QScintilla/MiniEditor.py" line="1732"/> <source>&Replace...</source> <translation>&Ersetzen...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1736"/> - <source>Replace some text</source> - <translation>Ersetzt Text</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="1738"/> + <source>Replace some text</source> + <translation>Ersetzt Text</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1740"/> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Ersetzen</b><p>Dies sucht nach Text im aktuellen Editor und ersetzt ihn. Es wird ein Dialog eingeblendet, in dem der Suchtext, der Ersetzungstext und verschieden Such- und Ersetzungsoptionen eingegeben werden kann.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2595"/> + <location filename="ViewManager/ViewManager.py" line="2597"/> <source>Goto Line</source> <translation>Gehe zu Zeile</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2588"/> + <location filename="ViewManager/ViewManager.py" line="2590"/> <source>&Goto Line...</source> <translation>Gehe zu &Zeile...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2596"/> + <location filename="ViewManager/ViewManager.py" line="2598"/> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Gehe zu Zeile</b><p>Dies springt zur angegebenen Zeile im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem die Zeilennummer eingegeben werden kann.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2861"/> + <location filename="ViewManager/ViewManager.py" line="2863"/> <source>Zoom in on the text</source> <translation>Text vergrößern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2878"/> + <location filename="ViewManager/ViewManager.py" line="2880"/> <source>Zoom out on the text</source> <translation>Text verkleinern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2904"/> + <location filename="ViewManager/ViewManager.py" line="2906"/> <source>Zoom</source> <translation>Maßstab</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2904"/> + <location filename="ViewManager/ViewManager.py" line="2906"/> <source>&Zoom</source> <translation>&Maßstab</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2911"/> - <source>Zoom the text</source> - <translation>Den Maßstab des Textes ändern</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2913"/> + <source>Zoom the text</source> + <translation>Den Maßstab des Textes ändern</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2915"/> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Maßstab</b><p>dies ändert den Textmaßstab. Es wird ein dialog eingeblendet, in dem der Maßstab eingegeben werden kann.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2925"/> - <source>Toggle all folds</source> - <translation>Alle Faltungen umschalten</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2921"/> - <source>Toggle &all folds</source> - <translation>&Alle Faltungen umschalten</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2927"/> + <source>Toggle all folds</source> + <translation>Alle Faltungen umschalten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2923"/> + <source>Toggle &all folds</source> + <translation>&Alle Faltungen umschalten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2929"/> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Alle Faltungen umschalten</b><p>Dies schaltet alle Faltungen des aktuellen Editors um.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3705"/> + <location filename="ViewManager/ViewManager.py" line="3707"/> <source>File Modified</source> <translation>Datei geändert</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1067"/> - <source>Convert Line End Characters</source> - <translation>Zeilenende Marke umwandeln</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1062"/> - <source>Convert &Line End Characters</source> - <translation>&Zeilenende Marke umwandeln</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1069"/> + <source>Convert Line End Characters</source> + <translation>Zeilenende Marke umwandeln</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1064"/> + <source>Convert &Line End Characters</source> + <translation>&Zeilenende Marke umwandeln</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1071"/> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Zeilenende Marke umwandeln</b><p>Dies wandelt die Zeilenende Marke in den aktuell eingestellten Typ um.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2954"/> - <source>Toggle current fold</source> - <translation>Aktuelle Faltung umschalten</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2950"/> - <source>Toggle &current fold</source> - <translation>Aktuelle &Faltung umschalten</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2956"/> + <source>Toggle current fold</source> + <translation>Aktuelle Faltung umschalten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2952"/> + <source>Toggle &current fold</source> + <translation>Aktuelle &Faltung umschalten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2958"/> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Aktuelle Faltung umschalten</b><p>Dies schaltet die Faltung der aktuellen Zeile des aktuellen Editors um.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="545"/> + <location filename="ViewManager/ViewManager.py" line="547"/> <source>Clos&e All</source> <translation>Alle &schließen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="576"/> + <location filename="ViewManager/ViewManager.py" line="578"/> <source>Save as</source> <translation>Speichern unter</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="576"/> + <location filename="ViewManager/ViewManager.py" line="578"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="592"/> + <location filename="ViewManager/ViewManager.py" line="594"/> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1031"/> + <location filename="ViewManager/ViewManager.py" line="1033"/> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1031"/> + <location filename="ViewManager/ViewManager.py" line="1033"/> <source>&Select all</source> <translation>A&lles auswählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1046"/> + <location filename="ViewManager/ViewManager.py" line="1048"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1046"/> + <location filename="ViewManager/ViewManager.py" line="1048"/> <source>&Deselect all</source> <translation>Aus&wahl aufheben</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2853"/> + <location filename="ViewManager/ViewManager.py" line="2855"/> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2853"/> + <location filename="ViewManager/ViewManager.py" line="2855"/> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2870"/> + <location filename="ViewManager/ViewManager.py" line="2872"/> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2870"/> + <location filename="ViewManager/ViewManager.py" line="2872"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2863"/> + <location filename="ViewManager/ViewManager.py" line="2865"/> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Vergrößern</b><p>Den angezeigten Text vergrößern.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2880"/> + <location filename="ViewManager/ViewManager.py" line="2882"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Verkleinern</b><p>Den angezeigten Text verkleinern.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1015"/> + <location filename="ViewManager/ViewManager.py" line="1017"/> <source>Select to brace</source> <translation>Zur Klammer auswählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1015"/> + <location filename="ViewManager/ViewManager.py" line="1017"/> <source>Select to &brace</source> <translation>Zur Klammer ausw&ählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1022"/> + <location filename="ViewManager/ViewManager.py" line="1024"/> <source>Select text to the matching brace</source> <translation>Text bis zur passenden Klammer auswählen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2611"/> - <source>Goto Brace</source> - <translation>Gehe zu Klammer</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2604"/> - <source>Goto &Brace</source> - <translation>Gehe zu &Klammer</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2613"/> + <source>Goto Brace</source> + <translation>Gehe zu Klammer</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2606"/> + <source>Goto &Brace</source> + <translation>Gehe zu &Klammer</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2615"/> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Gehe zu Klammer</b><p>Gehe zur passenden Klammer im aktuellen Editor.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2675"/> + <location filename="ViewManager/ViewManager.py" line="2677"/> <source>Search in Files</source> <translation>Suchen in Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2675"/> + <location filename="ViewManager/ViewManager.py" line="2677"/> <source>Search in &Files...</source> <translation>Suchen in &Dateien...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2683"/> - <source>Search for a text in files</source> - <translation>Nach Text in Dateien suchen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2685"/> + <source>Search for a text in files</source> + <translation>Nach Text in Dateien suchen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2687"/> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation><b>Suchen in Dateien</b><p>Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="986"/> + <location filename="ViewManager/ViewManager.py" line="988"/> <source>Stream Comment</source> <translation>Stream Kommentar</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="991"/> - <source>Stream Comment Line or Selection</source> - <translation>Stream kommentiert eine Zeile oder die Auswahl</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1000"/> - <source>Box Comment</source> - <translation>Box Kommentar</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1005"/> - <source>Box Comment Line or Selection</source> - <translation>Box kommentiert eine Zeile oder die Auswahl</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1007"/> - <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> - <translation><b>Box Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die Zeilen der aktuelle Auswahl mit einem Box Kommentar.</p></translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="993"/> + <source>Stream Comment Line or Selection</source> + <translation>Stream kommentiert eine Zeile oder die Auswahl</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1002"/> + <source>Box Comment</source> + <translation>Box Kommentar</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1007"/> + <source>Box Comment Line or Selection</source> + <translation>Box kommentiert eine Zeile oder die Auswahl</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1009"/> + <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> + <translation><b>Box Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die Zeilen der aktuelle Auswahl mit einem Box Kommentar.</p></translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="995"/> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Stream Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl mit einem Stream Kommentar.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="788"/> - <source>Revert to last saved state</source> - <translation>Zurück zum letzten gesichert Zustand</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="781"/> - <source>Re&vert to last saved state</source> - <translation>&Zurück zum letzten gesichert Zustand</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="790"/> + <source>Revert to last saved state</source> + <translation>Zurück zum letzten gesichert Zustand</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="783"/> + <source>Re&vert to last saved state</source> + <translation>&Zurück zum letzten gesichert Zustand</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="792"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Zurück zum letzten gesichert Zustand</b><p>Dies nimmt alle Änderungen des aktuellen Editors bis zum letzten gesicherten Zustand zurück.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2978"/> + <location filename="ViewManager/ViewManager.py" line="2980"/> <source>Split view</source> <translation>Ansicht aufteilen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2978"/> + <location filename="ViewManager/ViewManager.py" line="2980"/> <source>&Split view</source> <translation>An&sicht aufteilen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2982"/> - <source>Add a split to the view</source> - <translation>Fügt eine weiter Ansicht hinzu</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2984"/> + <source>Add a split to the view</source> + <translation>Fügt eine weiter Ansicht hinzu</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2986"/> <source><b>Split view</b><p>Add a split to the view.</p></source> <translation><b>Ansicht aufteilen</b><p>Fügt eine weitere Ansicht hinzu.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2991"/> + <location filename="ViewManager/ViewManager.py" line="2993"/> <source>Arrange horizontally</source> <translation>Horizontal anordnen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2991"/> + <location filename="ViewManager/ViewManager.py" line="2993"/> <source>Arrange &horizontally</source> <translation>&Horizontal anordnen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2996"/> - <source>Arrange the splitted views horizontally</source> - <translation>Ordnet die geteilten Ansichten horizontal an</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2998"/> + <source>Arrange the splitted views horizontally</source> + <translation>Ordnet die geteilten Ansichten horizontal an</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3000"/> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Horizontal anordnen</b><p>Ordnet die geteilten Ansichten horizontal an.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3006"/> + <location filename="ViewManager/ViewManager.py" line="3008"/> <source>Remove split</source> <translation>Geteilte Ansicht löschen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3006"/> + <location filename="ViewManager/ViewManager.py" line="3008"/> <source>&Remove split</source> <translation>Geteilte Ansicht &löschen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3011"/> - <source>Remove the current split</source> - <translation>Löscht die aktuelle Ansicht</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3013"/> + <source>Remove the current split</source> + <translation>Löscht die aktuelle Ansicht</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3015"/> <source><b>Remove split</b><p>Remove the current split.</p></source> <translation><b>Geteilte Ansicht löschen</b><p>Löscht die aktuelle Ansicht</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="547"/> + <location filename="QScintilla/MiniEditor.py" line="549"/> <source>Move left one character</source> <translation>Ein Zeichen nach links</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="547"/> + <location filename="QScintilla/MiniEditor.py" line="549"/> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="558"/> + <location filename="QScintilla/MiniEditor.py" line="560"/> <source>Move right one character</source> <translation>Ein Zeichen nach rechts</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="558"/> + <location filename="QScintilla/MiniEditor.py" line="560"/> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="569"/> + <location filename="QScintilla/MiniEditor.py" line="571"/> <source>Move up one line</source> <translation>Eine Zeile nach oben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="569"/> + <location filename="QScintilla/MiniEditor.py" line="571"/> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="580"/> + <location filename="QScintilla/MiniEditor.py" line="582"/> <source>Move down one line</source> <translation>Eine Zeile nach unten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="580"/> + <location filename="QScintilla/MiniEditor.py" line="582"/> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="591"/> + <location filename="QScintilla/MiniEditor.py" line="593"/> <source>Move left one word part</source> <translation>Ein Wortteil nach links</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="618"/> + <location filename="QScintilla/MiniEditor.py" line="620"/> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="602"/> + <location filename="QScintilla/MiniEditor.py" line="604"/> <source>Move right one word part</source> <translation>Ein Wortteil nach rechts</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1390"/> + <location filename="QScintilla/MiniEditor.py" line="1392"/> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="613"/> + <location filename="QScintilla/MiniEditor.py" line="615"/> <source>Move left one word</source> <translation>Ein Wort nach links</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="661"/> + <location filename="QScintilla/MiniEditor.py" line="663"/> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="627"/> + <location filename="QScintilla/MiniEditor.py" line="629"/> <source>Move right one word</source> <translation>Ein Wort nach rechts</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1173"/> + <location filename="QScintilla/MiniEditor.py" line="1175"/> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1348"/> + <location filename="QScintilla/MiniEditor.py" line="1350"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="664"/> + <location filename="QScintilla/MiniEditor.py" line="666"/> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1362"/> + <location filename="QScintilla/MiniEditor.py" line="1364"/> <source>End</source> <translation>End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="686"/> + <location filename="QScintilla/MiniEditor.py" line="688"/> <source>Scroll view down one line</source> <translation>Eine Zeile nach unten rollen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="756"/> + <location filename="QScintilla/MiniEditor.py" line="758"/> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="694"/> + <location filename="QScintilla/MiniEditor.py" line="696"/> <source>Scroll view up one line</source> <translation>Eine Zeile nach oben rollen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="742"/> + <location filename="QScintilla/MiniEditor.py" line="744"/> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="702"/> + <location filename="QScintilla/MiniEditor.py" line="704"/> <source>Move up one paragraph</source> <translation>Einen Absatz nach oben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="702"/> + <location filename="QScintilla/MiniEditor.py" line="704"/> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="710"/> + <location filename="QScintilla/MiniEditor.py" line="712"/> <source>Move down one paragraph</source> <translation>Einen Absatz nach unten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="710"/> + <location filename="QScintilla/MiniEditor.py" line="712"/> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="718"/> + <location filename="QScintilla/MiniEditor.py" line="720"/> <source>Move up one page</source> <translation>Eine Seite hoch</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="718"/> + <location filename="QScintilla/MiniEditor.py" line="720"/> <source>PgUp</source> <translation>PgUp</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="726"/> + <location filename="QScintilla/MiniEditor.py" line="728"/> <source>Move down one page</source> <translation>Eine Seite nach unten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="726"/> + <location filename="QScintilla/MiniEditor.py" line="728"/> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="745"/> + <location filename="QScintilla/MiniEditor.py" line="747"/> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="759"/> + <location filename="QScintilla/MiniEditor.py" line="761"/> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="765"/> + <location filename="QScintilla/MiniEditor.py" line="767"/> <source>Indent one level</source> <translation>Eine Ebene einrücken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="765"/> + <location filename="QScintilla/MiniEditor.py" line="767"/> <source>Tab</source> <translation>Tab</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="773"/> + <location filename="QScintilla/MiniEditor.py" line="775"/> <source>Unindent one level</source> <translation>Eine Ebene ausrücken</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="773"/> + <location filename="QScintilla/MiniEditor.py" line="775"/> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="781"/> + <location filename="QScintilla/MiniEditor.py" line="783"/> <source>Extend selection left one character</source> <translation>Auswahl um ein Zeichen nach links erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="781"/> + <location filename="QScintilla/MiniEditor.py" line="783"/> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="795"/> + <location filename="QScintilla/MiniEditor.py" line="797"/> <source>Extend selection right one character</source> <translation>Auswahl um ein Zeichen nach rechts erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="795"/> + <location filename="QScintilla/MiniEditor.py" line="797"/> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="809"/> + <location filename="QScintilla/MiniEditor.py" line="811"/> <source>Extend selection up one line</source> <translation>Auswahl um eine Zeile nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="809"/> + <location filename="QScintilla/MiniEditor.py" line="811"/> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="822"/> + <location filename="QScintilla/MiniEditor.py" line="824"/> <source>Extend selection down one line</source> <translation>Auswahl um eine Zeile nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="822"/> + <location filename="QScintilla/MiniEditor.py" line="824"/> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="836"/> + <location filename="QScintilla/MiniEditor.py" line="838"/> <source>Extend selection left one word part</source> <translation>Auswahl um einen Wortteil nach links erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="869"/> + <location filename="QScintilla/MiniEditor.py" line="871"/> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="849"/> + <location filename="QScintilla/MiniEditor.py" line="851"/> <source>Extend selection right one word part</source> <translation>Auswahl um einen Wortteil nach rechts erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1404"/> + <location filename="QScintilla/MiniEditor.py" line="1406"/> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="862"/> + <location filename="QScintilla/MiniEditor.py" line="864"/> <source>Extend selection left one word</source> <translation>Auswahl um ein Wort nach links erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1482"/> + <location filename="QScintilla/MiniEditor.py" line="1484"/> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="878"/> + <location filename="QScintilla/MiniEditor.py" line="880"/> <source>Extend selection right one word</source> <translation>Auswahl um ein Wort nach rechts erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1189"/> + <location filename="QScintilla/MiniEditor.py" line="1191"/> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="901"/> + <location filename="QScintilla/MiniEditor.py" line="903"/> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1280"/> + <location filename="QScintilla/MiniEditor.py" line="1282"/> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="917"/> + <location filename="QScintilla/MiniEditor.py" line="919"/> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="923"/> + <location filename="QScintilla/MiniEditor.py" line="925"/> <source>Extend selection up one paragraph</source> <translation>Auswahl um einen Absatz nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="923"/> + <location filename="QScintilla/MiniEditor.py" line="925"/> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="934"/> + <location filename="QScintilla/MiniEditor.py" line="936"/> <source>Extend selection down one paragraph</source> <translation>Auswahl um einen Absatz nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="934"/> + <location filename="QScintilla/MiniEditor.py" line="936"/> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="946"/> + <location filename="QScintilla/MiniEditor.py" line="948"/> <source>Extend selection up one page</source> <translation>Auswahl um eine Seite nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="946"/> + <location filename="QScintilla/MiniEditor.py" line="948"/> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="957"/> + <location filename="QScintilla/MiniEditor.py" line="959"/> <source>Extend selection down one page</source> <translation>Auswahl um eine Seite nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="957"/> + <location filename="QScintilla/MiniEditor.py" line="959"/> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="981"/> + <location filename="QScintilla/MiniEditor.py" line="983"/> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="997"/> + <location filename="QScintilla/MiniEditor.py" line="999"/> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1003"/> + <location filename="QScintilla/MiniEditor.py" line="1005"/> <source>Delete previous character</source> <translation>Zeichen links löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1003"/> + <location filename="QScintilla/MiniEditor.py" line="1005"/> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1029"/> + <location filename="QScintilla/MiniEditor.py" line="1031"/> <source>Delete current character</source> <translation>Aktuelles Zeichen löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1029"/> + <location filename="QScintilla/MiniEditor.py" line="1031"/> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1040"/> + <location filename="QScintilla/MiniEditor.py" line="1042"/> <source>Delete word to left</source> <translation>Wort links löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1040"/> + <location filename="QScintilla/MiniEditor.py" line="1042"/> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1050"/> + <location filename="QScintilla/MiniEditor.py" line="1052"/> <source>Delete word to right</source> <translation>Wort rechts löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1050"/> + <location filename="QScintilla/MiniEditor.py" line="1052"/> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1058"/> + <location filename="QScintilla/MiniEditor.py" line="1060"/> <source>Delete line to left</source> <translation>Zeile links löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1058"/> + <location filename="QScintilla/MiniEditor.py" line="1060"/> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1068"/> + <location filename="QScintilla/MiniEditor.py" line="1070"/> <source>Delete line to right</source> <translation>Zeile rechts löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1076"/> + <location filename="QScintilla/MiniEditor.py" line="1078"/> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1082"/> + <location filename="QScintilla/MiniEditor.py" line="1084"/> <source>Insert new line</source> <translation>Neue Zeile einfügen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1082"/> + <location filename="QScintilla/MiniEditor.py" line="1084"/> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1091"/> + <location filename="QScintilla/MiniEditor.py" line="1093"/> <source>Delete current line</source> <translation>Aktuelle Zeile löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1091"/> + <location filename="QScintilla/MiniEditor.py" line="1093"/> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1100"/> + <location filename="QScintilla/MiniEditor.py" line="1102"/> <source>Duplicate current line</source> <translation>Aktuelle Zeile duplizieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1100"/> + <location filename="QScintilla/MiniEditor.py" line="1102"/> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1108"/> + <location filename="QScintilla/MiniEditor.py" line="1110"/> <source>Swap current and previous lines</source> <translation>Aktuelle Zeile mit vorhergehender tauschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1108"/> + <location filename="QScintilla/MiniEditor.py" line="1110"/> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1118"/> + <location filename="QScintilla/MiniEditor.py" line="1120"/> <source>Cut current line</source> <translation>Aktuelle Zeile ausschneiden</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1118"/> + <location filename="QScintilla/MiniEditor.py" line="1120"/> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1127"/> + <location filename="QScintilla/MiniEditor.py" line="1129"/> <source>Copy current line</source> <translation>Aktuelle Zeile kopieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1127"/> + <location filename="QScintilla/MiniEditor.py" line="1129"/> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+L</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1136"/> + <location filename="QScintilla/MiniEditor.py" line="1138"/> <source>Toggle insert/overtype</source> <translation>Einfügen/Überschreiben umschalten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1136"/> + <location filename="QScintilla/MiniEditor.py" line="1138"/> <source>Ins</source> <translation>Ins</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1144"/> + <location filename="QScintilla/MiniEditor.py" line="1146"/> <source>Convert selection to lower case</source> <translation>Auswahl in Kleinbuchstaben umwandeln</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1144"/> + <location filename="QScintilla/MiniEditor.py" line="1146"/> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1155"/> + <location filename="QScintilla/MiniEditor.py" line="1157"/> <source>Convert selection to upper case</source> <translation>Auswahl in Großbuchstaben umwandeln</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1155"/> + <location filename="QScintilla/MiniEditor.py" line="1157"/> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3139"/> - <source>Start Macro Recording</source> - <translation>Makroaufzeichnung starten</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3134"/> - <source>S&tart Macro Recording</source> - <translation>Makroaufzeichnung s&tarten</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3141"/> + <source>Start Macro Recording</source> + <translation>Makroaufzeichnung starten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3136"/> + <source>S&tart Macro Recording</source> + <translation>Makroaufzeichnung s&tarten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3143"/> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Makroaufzeichnung starten</b><p>Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3153"/> - <source>Stop Macro Recording</source> - <translation>Makroaufzeichnung stoppen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3148"/> - <source>Sto&p Macro Recording</source> - <translation>Makroaufzeichnung sto&ppen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3155"/> + <source>Stop Macro Recording</source> + <translation>Makroaufzeichnung stoppen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3150"/> + <source>Sto&p Macro Recording</source> + <translation>Makroaufzeichnung sto&ppen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3157"/> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Makroaufzeichnung stoppen</b><p>Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3165"/> + <location filename="ViewManager/ViewManager.py" line="3167"/> <source>Run Macro</source> <translation>Makro ausführen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3162"/> + <location filename="ViewManager/ViewManager.py" line="3164"/> <source>&Run Macro</source> <translation>Makro &ausführen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3166"/> + <location filename="ViewManager/ViewManager.py" line="3168"/> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Makro ausführen</b><p>Führt ein vorher aufgezeichnetes Makro aus.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3177"/> - <source>Delete Macro</source> - <translation>Makro löschen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3173"/> - <source>&Delete Macro</source> - <translation>Makro &löschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3179"/> + <source>Delete Macro</source> + <translation>Makro löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3175"/> + <source>&Delete Macro</source> + <translation>Makro &löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3181"/> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Makro löschen</b><p>Löscht ein vorher aufgezeichnetes Makro.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3189"/> - <source>Load Macro</source> - <translation>Makro laden</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3186"/> - <source>&Load Macro</source> - <translation>Makro la&den</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3201"/> - <source>Save Macro</source> - <translation>Makro speichern</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3198"/> - <source>&Save Macro</source> - <translation>Makro &speichern</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3191"/> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Makro laden</b><p>Lädt ein Makro aus einer Datei.</p></translation> + <source>Load Macro</source> + <translation>Makro laden</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3188"/> + <source>&Load Macro</source> + <translation>Makro la&den</translation> </message> <message> <location filename="ViewManager/ViewManager.py" line="3203"/> + <source>Save Macro</source> + <translation>Makro speichern</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3200"/> + <source>&Save Macro</source> + <translation>Makro &speichern</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3193"/> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Makro laden</b><p>Lädt ein Makro aus einer Datei.</p></translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3205"/> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Makro speichern</b><p>Speichert ein vorher aufgezeichnetes Makro in eine Datei.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3241"/> - <source>Toggle Bookmark</source> - <translation>Lesezeichen setzen/löschen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3234"/> - <source>&Toggle Bookmark</source> - <translation>&Lesezeichen setzen/löschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3243"/> + <source>Toggle Bookmark</source> + <translation>Lesezeichen setzen/löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3236"/> + <source>&Toggle Bookmark</source> + <translation>&Lesezeichen setzen/löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3245"/> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Lesezeichen setzen/löschen</b><p>Setzt/löscht ein Lesezeichen in der aktuellen Zeile des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3257"/> - <source>Next Bookmark</source> - <translation>Nächstes Lesezeichen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3250"/> - <source>&Next Bookmark</source> - <translation>&Nächstes Lesezeichen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3259"/> + <source>Next Bookmark</source> + <translation>Nächstes Lesezeichen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3252"/> + <source>&Next Bookmark</source> + <translation>&Nächstes Lesezeichen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3261"/> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Nächstes Lesezeichen</b><p>Gehe zum nächsten Lesezeichen des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3273"/> - <source>Previous Bookmark</source> - <translation>Vorheriges Lesezeichen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3266"/> - <source>&Previous Bookmark</source> - <translation>&Vorheriges Lesezeichen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3275"/> + <source>Previous Bookmark</source> + <translation>Vorheriges Lesezeichen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3268"/> + <source>&Previous Bookmark</source> + <translation>&Vorheriges Lesezeichen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3277"/> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Vorheriges Lesezeichen</b><p>Gehe zum vorherigen Lesezeichen des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3289"/> - <source>Clear Bookmarks</source> - <translation>Lesezeichen löschen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3282"/> - <source>&Clear Bookmarks</source> - <translation>Lesezeichen l&öschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3291"/> + <source>Clear Bookmarks</source> + <translation>Lesezeichen löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3284"/> + <source>&Clear Bookmarks</source> + <translation>Lesezeichen l&öschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3293"/> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Lesezeichen löschen</b><p>Lesezeichen aller Editoren löschen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3480"/> + <location filename="ViewManager/ViewManager.py" line="3482"/> <source>&Bookmarks</source> <translation>&Lesezeichen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2969"/> - <source>Remove all highlights</source> - <translation>Hervorhebungen löschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2971"/> + <source>Remove all highlights</source> + <translation>Hervorhebungen löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2973"/> <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> <translation><b>Hervorhebungen löschen</b><p>Hervorhebungen aller Editoren löschen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1090"/> + <location filename="ViewManager/ViewManager.py" line="1092"/> <source>Autocomplete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2299"/> + <location filename="ViewManager/ViewManager.py" line="2301"/> <source>&Autocomplete</source> <translation>&Vervollständigen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1097"/> - <source>Autocomplete current word</source> - <translation>Aktuelles Wort vervollständigen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1099"/> + <source>Autocomplete current word</source> + <translation>Aktuelles Wort vervollständigen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1101"/> <source><b>Autocomplete</b><p>Performs an autocompletion of the word containing the cursor.</p></source> <translation><b>Vervollständigen</b><p>Führt eine Vervollständigung des Wortes, das den Cursor enthält, durch.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="662"/> + <location filename="ViewManager/ViewManager.py" line="664"/> <source>Open &Bookmarked Files</source> <translation>Ge&merkte Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="4389"/> + <location filename="ViewManager/ViewManager.py" line="4391"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="4385"/> - <source>&Add</source> - <translation>&Hinzufügen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="4387"/> + <source>&Add</source> + <translation>&Hinzufügen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="4389"/> <source>&Edit...</source> <translation>&Bearbeiten...</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1211"/> + <location filename="QScintilla/MiniEditor.py" line="1213"/> <source>Extend rectangular selection down one line</source> <translation>Rechteckige Auswahl um eine Zeile nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1211"/> + <location filename="QScintilla/MiniEditor.py" line="1213"/> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1226"/> + <location filename="QScintilla/MiniEditor.py" line="1228"/> <source>Extend rectangular selection up one line</source> <translation>Rechteckige Auswahl um eine Zeile nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1226"/> + <location filename="QScintilla/MiniEditor.py" line="1228"/> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1240"/> + <location filename="QScintilla/MiniEditor.py" line="1242"/> <source>Extend rectangular selection left one character</source> <translation>Rechteckige Auswahl um ein Zeichen nach links erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1240"/> + <location filename="QScintilla/MiniEditor.py" line="1242"/> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1255"/> + <location filename="QScintilla/MiniEditor.py" line="1257"/> <source>Extend rectangular selection right one character</source> <translation>Rechteckige Auswahl um ein Zeichen nach rechts erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1255"/> + <location filename="QScintilla/MiniEditor.py" line="1257"/> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1302"/> + <location filename="QScintilla/MiniEditor.py" line="1304"/> <source>Extend rectangular selection up one page</source> <translation>Rechteckige Auswahl um eine Seite nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1314"/> + <location filename="QScintilla/MiniEditor.py" line="1316"/> <source>Extend rectangular selection down one page</source> <translation>Rechteckige Auswahl um eine Seite nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1176"/> + <location filename="QScintilla/MiniEditor.py" line="1178"/> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1195"/> + <location filename="QScintilla/MiniEditor.py" line="1197"/> <source>Formfeed</source> <translation>Seitenumbruch</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1081"/> - <source>Shorten empty lines</source> - <translation>Leere Zeilen verkürzen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1083"/> + <source>Shorten empty lines</source> + <translation>Leere Zeilen verkürzen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1085"/> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Leere Zeilen verkürzen</b><p>Zeilen, die nur aus Leerzeichen und Tabulatoren bestehen, werden verkürzt.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1203"/> + <location filename="QScintilla/MiniEditor.py" line="1205"/> <source>Escape</source> <translation>Abbruch</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1203"/> + <location filename="QScintilla/MiniEditor.py" line="1205"/> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1106"/> + <location filename="ViewManager/ViewManager.py" line="1108"/> <source>Autocomplete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1113"/> - <source>Autocomplete current word from Document</source> - <translation>Aktuelles Wort vom Dokument vervollständigen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1115"/> + <source>Autocomplete current word from Document</source> + <translation>Aktuelles Wort vom Dokument vervollständigen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1117"/> <source><b>Autocomplete from Document</b><p>Performs an autocompletion from document of the word containing the cursor.</p></source> <translation><b>Vervollständigung vom Dokument</b><p>Vervollständigt das Wort, das den Cursor enthält, vom Dokument.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1123"/> + <location filename="ViewManager/ViewManager.py" line="1125"/> <source>Autocomplete from APIs</source> <translation>Vervollständigung von APIs</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1130"/> - <source>Autocomplete current word from APIs</source> - <translation>Aktuelles Wort von APIs vervollständigen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1132"/> + <source>Autocomplete current word from APIs</source> + <translation>Aktuelles Wort von APIs vervollständigen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1134"/> <source><b>Autocomplete from APIs</b><p>Performs an autocompletion from APIs of the word containing the cursor.</p></source> <translation><b>Vervollständigung von APIs</b><p>Vervollständigt das Wort, das den Cursor enthält, von APIs.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3304"/> - <source>Goto Syntax Error</source> - <translation>Zu Syntaxfehler gehen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3298"/> - <source>&Goto Syntax Error</source> - <translation>Zu Syntaxfehler &gehen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3306"/> + <source>Goto Syntax Error</source> + <translation>Zu Syntaxfehler gehen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3300"/> + <source>&Goto Syntax Error</source> + <translation>Zu Syntaxfehler &gehen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3308"/> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Zu Syntaxfehler gehen</b><p>Gehe zum nächsten Syntaxfehler des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3318"/> - <source>Clear Syntax Errors</source> - <translation>Syntaxfehler löschen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3313"/> - <source>Clear &Syntax Errors</source> - <translation>Synta&xfehler löschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3320"/> + <source>Clear Syntax Errors</source> + <translation>Syntaxfehler löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3315"/> + <source>Clear &Syntax Errors</source> + <translation>Synta&xfehler löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3322"/> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Syntaxfehler löschen</b><p>Syntaxfehler aller Editoren löschen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="638"/> + <location filename="ViewManager/ViewManager.py" line="640"/> <source>Search File</source> <translation>Datei suchen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="638"/> + <location filename="ViewManager/ViewManager.py" line="640"/> <source>Search &File...</source> <translation>Da&tei suchen...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="644"/> - <source>Search for a file</source> - <translation>Nach einer Datei suchen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="646"/> + <source>Search for a file</source> + <translation>Nach einer Datei suchen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="648"/> <source><b>Search File</b><p>Search for a file.</p></source> <translation><b>Datei suchen</b><p>Nach einer Datei suchen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3382"/> - <source>Next uncovered line</source> - <translation>Nächste nichtabgedeckte Zeile</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3376"/> - <source>&Next uncovered line</source> - <translation>&Nächste nichtabgedeckte Zeile</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3384"/> + <source>Next uncovered line</source> + <translation>Nächste nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3378"/> + <source>&Next uncovered line</source> + <translation>&Nächste nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3386"/> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Nächste nichtabgedeckte Zeile</b><p>Gehe zur nächsten als nicht abgedeckt markierten Zeile des aktiven Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3398"/> - <source>Previous uncovered line</source> - <translation>Vorige nichtabgedeckte Zeile</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3391"/> - <source>&Previous uncovered line</source> - <translation>&Vorige nichtabgedeckte Zeile</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3400"/> + <source>Previous uncovered line</source> + <translation>Vorige nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3393"/> + <source>&Previous uncovered line</source> + <translation>&Vorige nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3402"/> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Vorige nichtabgedeckte Zeile</b><p>Gehe zur vorigen als nicht abgedeckt markierten Zeile des aktiven Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="748"/> + <location filename="ViewManager/ViewManager.py" line="750"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="800"/> + <location filename="ViewManager/ViewManager.py" line="802"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="833"/> + <location filename="ViewManager/ViewManager.py" line="835"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1013"/> + <location filename="QScintilla/MiniEditor.py" line="1015"/> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3705"/> + <location filename="ViewManager/ViewManager.py" line="3707"/> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="519"/> + <location filename="ViewManager/ViewManager.py" line="521"/> <source>Open a file</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="520"/> + <location filename="ViewManager/ViewManager.py" line="522"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Datei öffnen</b><p>Sie werden nach dem Namen einer Datei gefragt, die in einem Editor geöffnet werden soll.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2761"/> + <location filename="ViewManager/ViewManager.py" line="2763"/> <source>Quicksearch</source> <translation>Schnellsuche</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2534"/> + <location filename="ViewManager/ViewManager.py" line="2536"/> <source>Ctrl+Shift+K</source> <comment>Search|Quicksearch</comment> <translation>Ctrl+Shift+K</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2542"/> + <location filename="ViewManager/ViewManager.py" line="2544"/> <source>Perform a quicksearch</source> <translation>Führe eine Schnellsuche durch</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2554"/> + <location filename="ViewManager/ViewManager.py" line="2556"/> <source>Quicksearch backwards</source> <translation>Schnellsuche rückwärts</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2554"/> + <location filename="ViewManager/ViewManager.py" line="2556"/> <source>Ctrl+Shift+J</source> <comment>Search|Quicksearch backwards</comment> <translation>Ctrl+Shift+J</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2561"/> + <location filename="ViewManager/ViewManager.py" line="2563"/> <source>Perform a quicksearch backwards</source> <translation>Führe eine Schnellsuche rückwärts durch</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2534"/> + <location filename="ViewManager/ViewManager.py" line="2536"/> <source>&Quicksearch</source> <translation>Schne&llsuche</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2554"/> + <location filename="ViewManager/ViewManager.py" line="2556"/> <source>Quicksearch &backwards</source> <translation>Schnellsuche &rückwärts</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2570"/> + <location filename="ViewManager/ViewManager.py" line="2572"/> <source>Quicksearch extend</source> <translation>Schnellsuche erweitern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2570"/> + <location filename="ViewManager/ViewManager.py" line="2572"/> <source>Quicksearch e&xtend</source> <translation>Schnellsuche er&weitern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2570"/> + <location filename="ViewManager/ViewManager.py" line="2572"/> <source>Ctrl+Shift+H</source> <comment>Search|Quicksearch extend</comment> <translation>Ctrl+Shift+H</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2578"/> + <location filename="ViewManager/ViewManager.py" line="2580"/> <source>Extend the quicksearch to the end of the current word</source> <translation>Erweitere die Schnellsuche bis zum Ende des aktuellen Wortes</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2580"/> + <location filename="ViewManager/ViewManager.py" line="2582"/> <source><b>Quicksearch extend</b><p>This extends the quicksearch text to the end of the word currently found.</p></source> <translation><b>Schnellsuche erweitern</b><p>Dies erweitert den Schnellsuchetext bis zum Ende des aktuell gefundenen Wortes.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="915"/> + <location filename="ViewManager/ViewManager.py" line="917"/> <source>Smart indent</source> <translation>Überwachte Einrückung</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="923"/> - <source>Smart indent Line or Selection</source> - <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="925"/> + <source>Smart indent Line or Selection</source> + <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="927"/> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Überwachte Einrückung</b><p>Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3020"/> + <location filename="ViewManager/ViewManager.py" line="3022"/> <source>Next split</source> <translation>Nächste Ansichte</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3020"/> + <location filename="ViewManager/ViewManager.py" line="3022"/> <source>&Next split</source> <translation>&Nächste Ansicht</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3026"/> - <source>Move to the next split</source> - <translation>Gehe zur nächsten Ansicht</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3028"/> + <source>Move to the next split</source> + <translation>Gehe zur nächsten Ansicht</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3030"/> <source><b>Next split</b><p>Move to the next split.</p></source> <translation><b>Nächste Ansicht</b><p>Gehe zur nächsten Ansicht.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3035"/> + <location filename="ViewManager/ViewManager.py" line="3037"/> <source>Previous split</source> <translation>Vorherige Ansicht</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3035"/> + <location filename="ViewManager/ViewManager.py" line="3037"/> <source>&Previous split</source> <translation>&Vorherige Ansicht</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3041"/> - <source>Move to the previous split</source> - <translation>Gehe zur vorherigen Ansicht</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3043"/> + <source>Move to the previous split</source> + <translation>Gehe zur vorherigen Ansicht</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3045"/> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Vorherige Ansicht</b><p>Gehe zur vorherigen Ansicht.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1082"/> + <location filename="QScintilla/MiniEditor.py" line="1084"/> <source>Enter</source> <translation>Eingabe</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1149"/> - <source>Autocomplete current word from Document and APIs</source> - <translation>Aktuelles Wort vom Dokument und von APIs vervollständigen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1140"/> - <source>Autocomplete from Document and APIs</source> - <translation>Vervollständigung vom Dokument und von APIs</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="1140"/> - <source>Alt+Shift+Space</source> - <comment>Edit|Autocomplete from Document and APIs</comment> - <translation>Alt+Shift+Space</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1151"/> + <source>Autocomplete current word from Document and APIs</source> + <translation>Aktuelles Wort vom Dokument und von APIs vervollständigen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1142"/> + <source>Autocomplete from Document and APIs</source> + <translation>Vervollständigung vom Dokument und von APIs</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1142"/> + <source>Alt+Shift+Space</source> + <comment>Edit|Autocomplete from Document and APIs</comment> + <translation>Alt+Shift+Space</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1153"/> <source><b>Autocomplete from Document and APIs</b><p>Performs an autocompletion from document and APIs of the word containing the cursor.</p></source> <translation><b>Vervollständigung vom Dokument und von APIs</b><p>Vervollständigt das Wort, das den Cursor enthält, vom Dokument und von APIs.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2940"/> - <source>Toggle all folds (including children)</source> - <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2935"/> - <source>Toggle all &folds (including children)</source> - <translation>Alle Faltungen &umschalten (inkl. Unterfaltungen)</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2942"/> + <source>Toggle all folds (including children)</source> + <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2937"/> + <source>Toggle all &folds (including children)</source> + <translation>Alle Faltungen &umschalten (inkl. Unterfaltungen)</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2944"/> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Alle Faltungen umschalten (inkl. Unterfaltungen)</b><p>Dies schaltet alle Faltungen des aktuellen Editors inklusive Unterfaltungen um.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1642"/> + <location filename="QScintilla/MiniEditor.py" line="1644"/> <source>Duplicate current selection</source> <translation>Aktuelle Auswahl duplizieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1642"/> + <location filename="QScintilla/MiniEditor.py" line="1644"/> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="499"/> + <location filename="ViewManager/ViewManager.py" line="501"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="513"/> + <location filename="ViewManager/ViewManager.py" line="515"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="530"/> + <location filename="ViewManager/ViewManager.py" line="532"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="561"/> + <location filename="ViewManager/ViewManager.py" line="563"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="576"/> + <location filename="ViewManager/ViewManager.py" line="578"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="607"/> + <location filename="ViewManager/ViewManager.py" line="609"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="638"/> + <location filename="ViewManager/ViewManager.py" line="640"/> <source>Alt+Ctrl+F</source> <comment>File|Search File</comment> <translation>Alt+Ctrl+F</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="659"/> + <location filename="ViewManager/ViewManager.py" line="661"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="705"/> + <location filename="ViewManager/ViewManager.py" line="707"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="748"/> + <location filename="ViewManager/ViewManager.py" line="750"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="765"/> + <location filename="ViewManager/ViewManager.py" line="767"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="781"/> + <location filename="ViewManager/ViewManager.py" line="783"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="800"/> + <location filename="ViewManager/ViewManager.py" line="802"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="816"/> + <location filename="ViewManager/ViewManager.py" line="818"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="816"/> + <location filename="ViewManager/ViewManager.py" line="818"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="833"/> + <location filename="ViewManager/ViewManager.py" line="835"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="851"/> + <location filename="ViewManager/ViewManager.py" line="853"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="882"/> + <location filename="ViewManager/ViewManager.py" line="884"/> <source>Ctrl+I</source> <comment>Edit|Indent</comment> <translation>Ctrl+I</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="898"/> + <location filename="ViewManager/ViewManager.py" line="900"/> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="915"/> + <location filename="ViewManager/ViewManager.py" line="917"/> <source>Ctrl+Alt+I</source> <comment>Edit|Smart indent</comment> <translation>Ctrl+Alt+I</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="933"/> + <location filename="ViewManager/ViewManager.py" line="935"/> <source>Ctrl+M</source> <comment>Edit|Comment</comment> <translation>Ctrl+M</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="950"/> + <location filename="ViewManager/ViewManager.py" line="952"/> <source>Alt+Ctrl+M</source> <comment>Edit|Uncomment</comment> <translation>Alt+Ctrl+M</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1015"/> + <location filename="ViewManager/ViewManager.py" line="1017"/> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1031"/> + <location filename="ViewManager/ViewManager.py" line="1033"/> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1046"/> + <location filename="ViewManager/ViewManager.py" line="1048"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1090"/> + <location filename="ViewManager/ViewManager.py" line="1092"/> <source>Ctrl+Space</source> <comment>Edit|Autocomplete</comment> <translation>Ctrl+Space</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1106"/> + <location filename="ViewManager/ViewManager.py" line="1108"/> <source>Ctrl+Shift+Space</source> <comment>Edit|Autocomplete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1123"/> + <location filename="ViewManager/ViewManager.py" line="1125"/> <source>Ctrl+Alt+Space</source> <comment>Edit|Autocomplete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2328"/> + <location filename="ViewManager/ViewManager.py" line="2330"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2378"/> + <location filename="ViewManager/ViewManager.py" line="2380"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1659"/> + <location filename="QScintilla/MiniEditor.py" line="1661"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1730"/> + <location filename="QScintilla/MiniEditor.py" line="1732"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2588"/> + <location filename="ViewManager/ViewManager.py" line="2590"/> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2604"/> + <location filename="ViewManager/ViewManager.py" line="2606"/> <source>Ctrl+L</source> <comment>Search|Goto Brace</comment> <translation>Ctrl+L</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2675"/> + <location filename="ViewManager/ViewManager.py" line="2677"/> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2853"/> + <location filename="ViewManager/ViewManager.py" line="2855"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2870"/> + <location filename="ViewManager/ViewManager.py" line="2872"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2904"/> + <location filename="ViewManager/ViewManager.py" line="2906"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3020"/> + <location filename="ViewManager/ViewManager.py" line="3022"/> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3035"/> + <location filename="ViewManager/ViewManager.py" line="3037"/> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3082"/> + <location filename="ViewManager/ViewManager.py" line="3084"/> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3111"/> + <location filename="ViewManager/ViewManager.py" line="3113"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3218"/> + <location filename="ViewManager/ViewManager.py" line="3220"/> <source>&Macros</source> <translation>&Makros</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3234"/> + <location filename="ViewManager/ViewManager.py" line="3236"/> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3250"/> + <location filename="ViewManager/ViewManager.py" line="3252"/> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3266"/> + <location filename="ViewManager/ViewManager.py" line="3268"/> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3282"/> + <location filename="ViewManager/ViewManager.py" line="3284"/> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3523"/> + <location filename="ViewManager/ViewManager.py" line="3525"/> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3669"/> + <location filename="ViewManager/ViewManager.py" line="3671"/> <source>Open files</source> <translation>Dateien öffnen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3414"/> - <source>Next Task</source> - <translation>Nächste Aufgabe</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3408"/> - <source>&Next Task</source> - <translation>&Nächste Aufgabe</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3416"/> + <source>Next Task</source> + <translation>Nächste Aufgabe</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3410"/> + <source>&Next Task</source> + <translation>&Nächste Aufgabe</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3418"/> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Nächste Aufgabe</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3430"/> - <source>Previous Task</source> - <translation>Vorherige Aufgabe</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3423"/> - <source>&Previous Task</source> - <translation>&Vorherige Aufgabe</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3432"/> + <source>Previous Task</source> + <translation>Vorherige Aufgabe</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3425"/> + <source>&Previous Task</source> + <translation>&Vorherige Aufgabe</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3434"/> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Vorherige Aufgabe</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2309"/> + <location filename="ViewManager/ViewManager.py" line="2311"/> <source>&Search</source> <translation>&Suchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1677"/> + <location filename="QScintilla/MiniEditor.py" line="1679"/> <source>Search next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1677"/> + <location filename="QScintilla/MiniEditor.py" line="1679"/> <source>Search &next</source> <translation>&Weitersuchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1677"/> + <location filename="QScintilla/MiniEditor.py" line="1679"/> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1695"/> + <location filename="QScintilla/MiniEditor.py" line="1697"/> <source>Search previous</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1695"/> + <location filename="QScintilla/MiniEditor.py" line="1697"/> <source>Search &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1695"/> + <location filename="QScintilla/MiniEditor.py" line="1697"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1024"/> + <location filename="ViewManager/ViewManager.py" line="1026"/> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Zur Klammer auswählen</b><p>Im aktuellen Editor Text bis zur passenden Klammer auswählen.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1039"/> + <location filename="ViewManager/ViewManager.py" line="1041"/> <source><b>Select All</b><p>Select all text of the current editor.</p></source> <translation><b>Alles auswählen</b><p>Dies wählt den gesamten Text des aktuellen Editors aus.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1055"/> + <location filename="ViewManager/ViewManager.py" line="1057"/> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Auswahl aufheben</b><p>Dies hebt die Auswahl des aktuellen Editors auf.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="725"/> + <location filename="ViewManager/ViewManager.py" line="727"/> <source>Export as</source> <translation>Exportieren als</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2806"/> + <location filename="ViewManager/ViewManager.py" line="2808"/> <source>Quicksearch Textedit</source> <translation>Texteingabe für Schnellsuche</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1713"/> + <location filename="QScintilla/MiniEditor.py" line="1715"/> <source>Clear search markers</source> <translation>Suchmarkierungen löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1713"/> + <location filename="QScintilla/MiniEditor.py" line="1715"/> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1721"/> + <location filename="QScintilla/MiniEditor.py" line="1723"/> <source>Clear all displayed search markers</source> <translation>Löscht alle angezeigten Suchmarkierungen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1723"/> + <location filename="QScintilla/MiniEditor.py" line="1725"/> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Suchmarkierungen löschen</b><p>Löscht alle angezeigten Suchmarkierungen.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1685"/> - <source>Search next occurrence of text</source> - <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="1687"/> + <source>Search next occurrence of text</source> + <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1689"/> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Weitersuchen</b><p>Nach der nächsten Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1703"/> - <source>Search previous occurrence of text</source> - <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation> - </message> - <message> <location filename="QScintilla/MiniEditor.py" line="1705"/> + <source>Search previous occurrence of text</source> + <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation> + </message> + <message> + <location filename="QScintilla/MiniEditor.py" line="1707"/> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Rückwärtssuchen</b><p>Nach der vorherigen Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2544"/> + <location filename="ViewManager/ViewManager.py" line="2546"/> <source><b>Quicksearch</b><p>This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.</p></source> <translation><b>Schnellsuche</b><p>Dies aktiviert die Schnellsuchfunktion der IDE, indem das Schnellsucheingabefeld aktiviert wird. Ist dieses Feld bereits aktiv und enthält Text, so wird das nächste Vorkommen dieses Textes gesucht.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2563"/> + <location filename="ViewManager/ViewManager.py" line="2565"/> <source><b>Quicksearch backwards</b><p>This searches the previous occurrence of the quicksearch text.</p></source> <translation><b>Schnellsuche rückwärts</b><p>Dies sucht das letzte Vorkommen des Schnellsuchtextes.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2784"/> + <location filename="ViewManager/ViewManager.py" line="2786"/> <source><p>Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the 'quicksearch extend' action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.</p></source> <translation><p>Gib den Suchtext direkt in dieses Feld ein. Die Suche wird unabhängig von der Schreibweise durchgeführt. Die Schnellsuchefunktion wird durch Auslösen der Schnellsuche Aktion (standard Strg+Umschalt+K) aktiviert, falls dieses Eingabefeld nicht den Fokus besitzt. Sonst wird das nächste Vorkommen des eingegebenen Textes gesucht. Die Schnellsuche rückwärts Aktion (standard Strg+Umschalt+J) sucht rückwärts. Aktivierung der 'Schnellsuche erweitern' Aktion (standard Strg+Umschalt+H) erweitert den aktuellen Suchtext bis zum Ende des aktuell gefundenen Wortes. Während das Schnellsucheeingabefeld den Fokus besitzt, kann die Schnellsuche durch Betätigung der Return-Taste beendet werden.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1159"/> + <location filename="ViewManager/ViewManager.py" line="1161"/> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1159"/> + <location filename="ViewManager/ViewManager.py" line="1161"/> <source>&Calltip</source> <translation>&Calltip</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1159"/> + <location filename="ViewManager/ViewManager.py" line="1161"/> <source>Alt+Space</source> <comment>Edit|Calltip</comment> <translation>Alt+Space</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1166"/> - <source>Show Calltips</source> - <translation>Calltips anzeigen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="1168"/> + <source>Show Calltips</source> + <translation>Calltips anzeigen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="1170"/> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Calltip</b><p>Zeige Calltips basierend auf den links vom Cursor befindlichen Zeichen an.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="432"/> + <location filename="QScintilla/MiniEditor.py" line="434"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="628"/> - <source>Print preview of the current file</source> - <translation>Druckvorschau der aktuellen Datei</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="630"/> + <source>Print preview of the current file</source> + <translation>Druckvorschau der aktuellen Datei</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="632"/> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Druckvorschau</b><p>Zeift eine Druckvorschau des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1729"/> + <location filename="ViewManager/ViewManager.py" line="1731"/> <source>Insert new line below current line</source> <translation>Neue Zeile unterhalb der aktuellen einfügen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1729"/> + <location filename="ViewManager/ViewManager.py" line="1731"/> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="1729"/> + <location filename="ViewManager/ViewManager.py" line="1731"/> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2694"/> + <location filename="ViewManager/ViewManager.py" line="2696"/> <source>Replace in Files</source> <translation>Ersetzen in Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2694"/> + <location filename="ViewManager/ViewManager.py" line="2696"/> <source>Replace in F&iles...</source> <translation>Ersetzen in Da&teien...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2694"/> + <location filename="ViewManager/ViewManager.py" line="2696"/> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2701"/> + <location filename="ViewManager/ViewManager.py" line="2703"/> <source>Search for a text in files and replace it</source> <translation>Nach Text in Dateien suchen und ihn ersetzen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2703"/> + <location filename="ViewManager/ViewManager.py" line="2705"/> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation><b>Ersetzen in Dateien</b><p>Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3556"/> + <location filename="ViewManager/ViewManager.py" line="3558"/> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3565"/> + <location filename="ViewManager/ViewManager.py" line="3567"/> <source>Perform spell check of current editor</source> <translation>Führe eine Rechtschreibprüfung des aktuellen Editors durch</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3574"/> + <location filename="ViewManager/ViewManager.py" line="3576"/> <source>Automatic spell checking</source> <translation>Automatische Rechtschreibprüfung</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3574"/> + <location filename="ViewManager/ViewManager.py" line="3576"/> <source>&Automatic spell checking</source> <translation>&Automatische Rechtschreibprüfung</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3581"/> - <source>(De-)Activate automatic spell checking</source> - <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3583"/> + <source>(De-)Activate automatic spell checking</source> + <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3585"/> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Automatische Rechtschreibprüfung</b><p>Aktiviert bzw. deaktiviert die automatische Rechtschreibprüfung aller Editoren.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3642"/> + <location filename="ViewManager/ViewManager.py" line="3644"/> <source>Spelling</source> <translation>Rechtschreibung</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="4005"/> + <location filename="ViewManager/ViewManager.py" line="4007"/> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="4010"/> + <location filename="ViewManager/ViewManager.py" line="4012"/> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3334"/> - <source>Next warning message</source> - <translation>Nächste Warnung</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3327"/> - <source>&Next warning message</source> - <translation>&Nächste Warnung</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3336"/> + <source>Next warning message</source> + <translation>Nächste Warnung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3329"/> + <source>&Next warning message</source> + <translation>&Nächste Warnung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3338"/> <source><b>Next warning message</b><p>Go to next line of the current editor having a py3flakes warning.</p></source> <translation><b>Nächste Warnung</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine py3flakes Warning besitzt.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3351"/> - <source>Previous warning message</source> - <translation>Vorherige Warnung</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3344"/> - <source>&Previous warning message</source> - <translation>&Vorherige Warnung</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3353"/> + <source>Previous warning message</source> + <translation>Vorherige Warnung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3346"/> + <source>&Previous warning message</source> + <translation>&Vorherige Warnung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3355"/> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a py3flakes warning.</p></source> <translation><b>Vorherige Warnung</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine py3flakes Warning besitzt.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3367"/> - <source>Clear Warning Messages</source> - <translation>Warnungen löschen</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3361"/> - <source>Clear &Warning Messages</source> - <translation>&Warnungen löschen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3369"/> + <source>Clear Warning Messages</source> + <translation>Warnungen löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3363"/> + <source>Clear &Warning Messages</source> + <translation>&Warnungen löschen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3371"/> <source><b>Clear Warning Messages</b><p>Clear py3flakes warning messages of all editors.</p></source> <translation><b>Warnungen löschen</b><p>Löscht die py3flakes Warnungen aller Editoren.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="873"/> - <source>Join Lines</source> - <translation>Zeilen verbinden</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="867"/> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation>Ctrl+J</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="875"/> + <source>Join Lines</source> + <translation>Zeilen verbinden</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="869"/> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation>Ctrl+J</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="877"/> <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> <translation><b>Zeilen verbinden</b><p>Verbindet die aktuelle mit der nächsten Zeile.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2628"/> - <source>Goto Last Edit Location</source> - <translation>Gehe zur letzten Editierposition</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2620"/> - <source>Goto Last &Edit Location</source> - <translation>Gehe zur letzten &Editierposition</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="2620"/> - <source>Ctrl+Shift+G</source> - <comment>Search|Goto Last Edit Location</comment> - <translation>Ctrl+Shift+G</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2630"/> + <source>Goto Last Edit Location</source> + <translation>Gehe zur letzten Editierposition</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2622"/> + <source>Goto Last &Edit Location</source> + <translation>Gehe zur letzten &Editierposition</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2622"/> + <source>Ctrl+Shift+G</source> + <comment>Search|Goto Last Edit Location</comment> + <translation>Ctrl+Shift+G</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2632"/> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>Gehe zur letzten Editierposition</b><p>Gehe zu der Textposition, an der die letzte Editieraktion stattgefunden hat.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2637"/> + <location filename="ViewManager/ViewManager.py" line="2639"/> <source>Goto Previous Method or Class</source> <translation>Gehe zur vorherigen Methode oder Klasse</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2637"/> + <location filename="ViewManager/ViewManager.py" line="2639"/> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2644"/> + <location filename="ViewManager/ViewManager.py" line="2646"/> <source>Go to the previous method or class definition</source> <translation>Gehe zur vorherigen Methoden- oder Klassendefinition</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2647"/> + <location filename="ViewManager/ViewManager.py" line="2649"/> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>Gehe zur vorherigen Methode oder Klasse</b><p>Dies springt zur Zeile der vorherigen Methoden- oder Klassendefinition und selektiert den Namen.</p<</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2655"/> + <location filename="ViewManager/ViewManager.py" line="2657"/> <source>Goto Next Method or Class</source> <translation>Gehe zur nächsten Methode oder Klasse</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2655"/> + <location filename="ViewManager/ViewManager.py" line="2657"/> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2662"/> + <location filename="ViewManager/ViewManager.py" line="2664"/> <source>Go to the next method or class definition</source> <translation>Gehe zur nächsten Methoden- oder Klassendefinition</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2665"/> + <location filename="ViewManager/ViewManager.py" line="2667"/> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>Gehe zur nächsten Methode oder Klasse</b><p>Dies springt zur Zeile der nächsten Methoden- oder Klassendefinition und selektiert den Namen.</p<</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3050"/> + <location filename="ViewManager/ViewManager.py" line="3052"/> <source>Preview</source> <translation>Vorschau</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3055"/> - <source>Preview the current file in the web browser</source> - <translation>Zeige eine Vorschau der aktuellen Datei im Web-Browser</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3057"/> + <source>Preview the current file in the web browser</source> + <translation>Zeige eine Vorschau der aktuellen Datei im Web-Browser</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3059"/> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>Vorschau</b><p>Dies öffnet einen Web-Browser mit einer Vorschau der aktuellen Datei.</p></translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="553"/> + <location filename="QScintilla/MiniEditor.py" line="555"/> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="563"/> + <location filename="QScintilla/MiniEditor.py" line="565"/> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="574"/> + <location filename="QScintilla/MiniEditor.py" line="576"/> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="585"/> + <location filename="QScintilla/MiniEditor.py" line="587"/> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="641"/> + <location filename="QScintilla/MiniEditor.py" line="643"/> <source>Move to first visible character in document line</source> <translation>Zum ersten sichtbaren Zeichen der Dokumentzeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="654"/> + <location filename="QScintilla/MiniEditor.py" line="656"/> <source>Move to start of display line</source> <translation>Zum Beginn der Anzeigezeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="670"/> + <location filename="QScintilla/MiniEditor.py" line="672"/> <source>Move to end of document line</source> <translation>Zum Ende der Dokumentenzeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="677"/> + <location filename="QScintilla/MiniEditor.py" line="679"/> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="731"/> + <location filename="QScintilla/MiniEditor.py" line="733"/> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="737"/> + <location filename="QScintilla/MiniEditor.py" line="739"/> <source>Move to start of document</source> <translation>Zum Dokumentenanfang springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="751"/> + <location filename="QScintilla/MiniEditor.py" line="753"/> <source>Move to end of document</source> <translation>Zum Dokumentenende springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="789"/> + <location filename="QScintilla/MiniEditor.py" line="791"/> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="803"/> + <location filename="QScintilla/MiniEditor.py" line="805"/> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="816"/> + <location filename="QScintilla/MiniEditor.py" line="818"/> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="830"/> + <location filename="QScintilla/MiniEditor.py" line="832"/> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="894"/> + <location filename="QScintilla/MiniEditor.py" line="896"/> <source>Extend selection to first visible character in document line</source> <translation>Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="907"/> + <location filename="QScintilla/MiniEditor.py" line="909"/> <source>Extend selection to end of document line</source> <translation>Auswahl zum Ende der Dokumentenzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="914"/> + <location filename="QScintilla/MiniEditor.py" line="916"/> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="965"/> + <location filename="QScintilla/MiniEditor.py" line="967"/> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="971"/> + <location filename="QScintilla/MiniEditor.py" line="973"/> <source>Extend selection to start of document</source> <translation>Auswahl zum Dokumentenanfang erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="978"/> + <location filename="QScintilla/MiniEditor.py" line="980"/> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="987"/> + <location filename="QScintilla/MiniEditor.py" line="989"/> <source>Extend selection to end of document</source> <translation>Auswahl zum Dokumentenende erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="994"/> + <location filename="QScintilla/MiniEditor.py" line="996"/> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1010"/> + <location filename="QScintilla/MiniEditor.py" line="1012"/> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1019"/> + <location filename="QScintilla/MiniEditor.py" line="1021"/> <source>Delete previous character if not at start of line</source> <translation>Zeichen links löschen, wenn nicht am Zeilenanfang</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1034"/> + <location filename="QScintilla/MiniEditor.py" line="1036"/> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1073"/> + <location filename="QScintilla/MiniEditor.py" line="1075"/> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1166"/> + <location filename="QScintilla/MiniEditor.py" line="1168"/> <source>Move to end of display line</source> <translation>Zum Ende der Anzeigezeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1182"/> + <location filename="QScintilla/MiniEditor.py" line="1184"/> <source>Extend selection to end of display line</source> <translation>Auswahl zum Ende der Anzeigezeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1220"/> + <location filename="QScintilla/MiniEditor.py" line="1222"/> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1234"/> + <location filename="QScintilla/MiniEditor.py" line="1236"/> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1249"/> + <location filename="QScintilla/MiniEditor.py" line="1251"/> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1264"/> + <location filename="QScintilla/MiniEditor.py" line="1266"/> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1270"/> + <location filename="QScintilla/MiniEditor.py" line="1272"/> <source>Extend rectangular selection to first visible character in document line</source> <translation>Rechteckige Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1286"/> + <location filename="QScintilla/MiniEditor.py" line="1288"/> <source>Extend rectangular selection to end of document line</source> <translation>Rechteckige Auswahl zum Ende der Dokumentenzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1293"/> + <location filename="QScintilla/MiniEditor.py" line="1295"/> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1296"/> + <location filename="QScintilla/MiniEditor.py" line="1298"/> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1314"/> + <location filename="QScintilla/MiniEditor.py" line="1316"/> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1323"/> + <location filename="QScintilla/MiniEditor.py" line="1325"/> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1341"/> + <location filename="QScintilla/MiniEditor.py" line="1343"/> <source>Scroll to start of document</source> <translation>Zum Dokumentenanfang rollen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1355"/> + <location filename="QScintilla/MiniEditor.py" line="1357"/> <source>Scroll to end of document</source> <translation>Zum Dokumentenende rollen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1369"/> + <location filename="QScintilla/MiniEditor.py" line="1371"/> <source>Scroll vertically to center current line</source> <translation>Vertical rollen, um aktuelle Zeile zu zentrieren</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1376"/> + <location filename="QScintilla/MiniEditor.py" line="1378"/> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1383"/> + <location filename="QScintilla/MiniEditor.py" line="1385"/> <source>Move to end of next word</source> <translation>Zum Ende des nächsten Wortes springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1397"/> + <location filename="QScintilla/MiniEditor.py" line="1399"/> <source>Extend selection to end of next word</source> <translation>Auswahl bis zum Ende des nächsten Wortes erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1411"/> + <location filename="QScintilla/MiniEditor.py" line="1413"/> <source>Move to end of previous word</source> <translation>Zum Ende des vorigen Wortes springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1422"/> + <location filename="QScintilla/MiniEditor.py" line="1424"/> <source>Extend selection to end of previous word</source> <translation>Auswahl bis zum Ende des vorigen Wortes erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1433"/> + <location filename="QScintilla/MiniEditor.py" line="1435"/> <source>Move to start of document line</source> <translation>Zum Beginn der Dokumentenzeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1440"/> + <location filename="QScintilla/MiniEditor.py" line="1442"/> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1447"/> + <location filename="QScintilla/MiniEditor.py" line="1449"/> <source>Extend selection to start of document line</source> <translation>Auswahl zum Beginn der Dokumentenzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1454"/> + <location filename="QScintilla/MiniEditor.py" line="1456"/> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1461"/> + <location filename="QScintilla/MiniEditor.py" line="1463"/> <source>Extend rectangular selection to start of document line</source> <translation>Rechteckige Auswahl zum Beginn der Dokumentenzeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1468"/> + <location filename="QScintilla/MiniEditor.py" line="1470"/> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1475"/> + <location filename="QScintilla/MiniEditor.py" line="1477"/> <source>Extend selection to start of display line</source> <translation>Auswahl zum Beginn der Anzeigezeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1489"/> + <location filename="QScintilla/MiniEditor.py" line="1491"/> <source>Move to start of display or document line</source> <translation>Zum Beginn der Dokumenten- oder Anzeigezeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1500"/> + <location filename="QScintilla/MiniEditor.py" line="1502"/> <source>Extend selection to start of display or document line</source> <translation>Auswahl zum Beginn der Dokumenten- oder Anzeigezeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1512"/> + <location filename="QScintilla/MiniEditor.py" line="1514"/> <source>Move to first visible character in display or document line</source> <translation>Zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1526"/> + <location filename="QScintilla/MiniEditor.py" line="1528"/> <source>Extend selection to first visible character in display or document line</source> <translation>Auswahl zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1540"/> + <location filename="QScintilla/MiniEditor.py" line="1542"/> <source>Move to end of display or document line</source> <translation>Zum Ende der Dokumenten- oder Anzeigezeile springen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1551"/> + <location filename="QScintilla/MiniEditor.py" line="1553"/> <source>Extend selection to end of display or document line</source> <translation>Auswahl zum Ende der Dokumenten- oder Anzeigezeile erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1563"/> + <location filename="QScintilla/MiniEditor.py" line="1565"/> <source>Stuttered move up one page</source> <translation>"Stotternd" um eine Seite nach oben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1574"/> + <location filename="QScintilla/MiniEditor.py" line="1576"/> <source>Stuttered extend selection up one page</source> <translation>Auswahl "stotternd" um eine Seite nach oben erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1585"/> + <location filename="QScintilla/MiniEditor.py" line="1587"/> <source>Stuttered move down one page</source> <translation>"Stotternd" um eine Seite nach unten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1596"/> + <location filename="QScintilla/MiniEditor.py" line="1598"/> <source>Stuttered extend selection down one page</source> <translation>Auswahl "stotternd" um eine Seite nach unten erweitern</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1607"/> + <location filename="QScintilla/MiniEditor.py" line="1609"/> <source>Delete right to end of next word</source> <translation>Rechts bis zum Ende des nächsten Wortes löschen</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1614"/> + <location filename="QScintilla/MiniEditor.py" line="1616"/> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1621"/> + <location filename="QScintilla/MiniEditor.py" line="1623"/> <source>Move selected lines up one line</source> <translation>Ausgewählte Zeilen um eine Zeile nach oben</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1632"/> + <location filename="QScintilla/MiniEditor.py" line="1634"/> <source>Move selected lines down one line</source> <translation>Ausgewählte Zeilen um eine Zeile nach unten</translation> </message> <message> - <location filename="QScintilla/MiniEditor.py" line="1302"/> + <location filename="QScintilla/MiniEditor.py" line="1304"/> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="967"/> + <location filename="ViewManager/ViewManager.py" line="969"/> <source>Toggle Comment</source> <translation>Kommentar umschalten</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="967"/> + <location filename="ViewManager/ViewManager.py" line="969"/> <source>Ctrl+Shift+M</source> <comment>Edit|Toggle Comment</comment> <translation>Ctrl+Shift+M</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="975"/> + <location filename="ViewManager/ViewManager.py" line="977"/> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Schalte den Kommentar der aktuellen Zeile, Auswahl oder Kommentarblocks um</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="977"/> + <location filename="ViewManager/ViewManager.py" line="979"/> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation><b>Kommentar umschalten</b><p>Falls die aktuelle Zeile nicht mit einem Blockkommentar beginnt, so wird die aktuelle Zeile oder Auswahl kommentiert. Ist sie kommentiert, so wird dieser Blockkommentar entkommentiert.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2887"/> + <location filename="ViewManager/ViewManager.py" line="2889"/> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2887"/> + <location filename="ViewManager/ViewManager.py" line="2889"/> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2887"/> + <location filename="ViewManager/ViewManager.py" line="2889"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2894"/> + <location filename="ViewManager/ViewManager.py" line="2896"/> <source>Reset the zoom of the text</source> <translation>Die Textgröße zurücksetzen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2896"/> + <location filename="ViewManager/ViewManager.py" line="2898"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2853"/> + <location filename="ViewManager/ViewManager.py" line="2855"/> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Vergrößern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2870"/> + <location filename="ViewManager/ViewManager.py" line="2872"/> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Verkleinern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="592"/> + <location filename="ViewManager/ViewManager.py" line="594"/> <source>Save a&ll</source> <translation>&Alle speichern</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3445"/> - <source>Next Change</source> - <translation>Nächste Änderung</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3439"/> - <source>&Next Change</source> - <translation>&Nächste Änderung</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3447"/> + <source>Next Change</source> + <translation>Nächste Änderung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3441"/> + <source>&Next Change</source> + <translation>&Nächste Änderung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3449"/> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation><b>Nächste Änderung</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3461"/> - <source>Previous Change</source> - <translation>Vorherige Änderung</translation> - </message> - <message> - <location filename="ViewManager/ViewManager.py" line="3454"/> - <source>&Previous Change</source> - <translation>&Vorherige Änderung</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3463"/> + <source>Previous Change</source> + <translation>Vorherige Änderung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3456"/> + <source>&Previous Change</source> + <translation>&Vorherige Änderung</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3465"/> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation><b>Vorherige Änderung</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine Änderung enthält.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3556"/> + <location filename="ViewManager/ViewManager.py" line="3558"/> <source>Check spelling</source> <translation>Rechtschreibprüfung</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3556"/> + <location filename="ViewManager/ViewManager.py" line="3558"/> <source>Check &spelling...</source> <translation>&Rechtschreibprüfung...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3567"/> + <location filename="ViewManager/ViewManager.py" line="3569"/> <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> <translation><b>Rechtschreibprüfung<b><p>Führe eine Rechtschreibprüfung des aktuellen Editors durch.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3609"/> - <source>Edit Dictionary</source> - <translation>Wörterbuch bearbeiten</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="3611"/> + <source>Edit Dictionary</source> + <translation>Wörterbuch bearbeiten</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="3613"/> <source>Project Word List</source> <translation>Projekt-Wörterliste</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3614"/> + <location filename="ViewManager/ViewManager.py" line="3616"/> <source>Project Exception List</source> <translation>Projekt-Ausnahmenliste</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3618"/> + <location filename="ViewManager/ViewManager.py" line="3620"/> <source>User Word List</source> <translation>Nutzer-Wörterliste</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="3621"/> + <location filename="ViewManager/ViewManager.py" line="3623"/> <source>User Exception List</source> <translation>Nutzer-Ausnahmenliste</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5435"/> + <location filename="ViewManager/ViewManager.py" line="5437"/> <source>Edit Project Word List</source> <translation>Projekt-Wörterliste bearbeiten</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5435"/> + <location filename="ViewManager/ViewManager.py" line="5437"/> <source>No word list defined for the current project.</source> <translation>Für das aktuelle Projekt ist keine Wörterliste festgelegt.</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5448"/> + <location filename="ViewManager/ViewManager.py" line="5450"/> <source>Edit Project Exception List</source> <translation>Projekt-Ausnahmenliste bearbeiten</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5448"/> + <location filename="ViewManager/ViewManager.py" line="5450"/> <source>No exception list defined for the current project.</source> <translation>Für das aktuelle Projekt ist keine Ausnahmenliste festgelegt.</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5510"/> + <location filename="ViewManager/ViewManager.py" line="5512"/> <source>Edit Spelling Dictionary</source> <translation>Wörterbuch bearbeiten</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5491"/> + <location filename="ViewManager/ViewManager.py" line="5493"/> <source>Editing {0}</source> <translation>Bearbeite {0}</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5479"/> + <location filename="ViewManager/ViewManager.py" line="5481"/> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5501"/> + <location filename="ViewManager/ViewManager.py" line="5503"/> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="5510"/> + <location filename="ViewManager/ViewManager.py" line="5512"/> <source>The spelling dictionary was saved successfully.</source> <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2481"/> + <location filename="ViewManager/ViewManager.py" line="2483"/> <source>Search current word forward</source> <translation>Aktuelles Wort vorwärts suchen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2481"/> + <location filename="ViewManager/ViewManager.py" line="2483"/> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2489"/> + <location filename="ViewManager/ViewManager.py" line="2491"/> <source>Search next occurrence of the current word</source> <translation>Das nächste Vorkommen des aktuellen Wortes suchen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2491"/> + <location filename="ViewManager/ViewManager.py" line="2493"/> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation><b>Aktuelles Wort vorwärts suchen</b><p>Sucht das nächste Vorkommen des aktuellen Wortes des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2499"/> + <location filename="ViewManager/ViewManager.py" line="2501"/> <source>Search current word backward</source> <translation>Aktuelles Wort rückwärts suchen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2499"/> + <location filename="ViewManager/ViewManager.py" line="2501"/> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2507"/> - <source>Search previous occurrence of the current word</source> - <translation>Das vorherige Vorkommen des aktuellen Wortes suchen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2509"/> + <source>Search previous occurrence of the current word</source> + <translation>Das vorherige Vorkommen des aktuellen Wortes suchen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2511"/> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation><b>Aktuelles Wort rückwärts suchen</b><p>Sucht das vorherige Vorkommen des aktuellen Wortes des aktuellen Editors.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2713"/> + <location filename="ViewManager/ViewManager.py" line="2715"/> <source>Search in Open Files</source> <translation>Suchen in geöffneten Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2713"/> + <location filename="ViewManager/ViewManager.py" line="2715"/> <source>Search in Open Files...</source> <translation>Suchen in geöffneten Dateien...</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2713"/> + <location filename="ViewManager/ViewManager.py" line="2715"/> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2721"/> - <source>Search for a text in open files</source> - <translation>Nach Text in geöffneten Dateien suchen</translation> - </message> - <message> <location filename="ViewManager/ViewManager.py" line="2723"/> + <source>Search for a text in open files</source> + <translation>Nach Text in geöffneten Dateien suchen</translation> + </message> + <message> + <location filename="ViewManager/ViewManager.py" line="2725"/> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation><b>Suchen in geöffneten Dateien</b><p>Sucht nach Text in den aktuell geöffneten Dateien. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2732"/> + <location filename="ViewManager/ViewManager.py" line="2734"/> <source>Replace in Open Files</source> <translation>Ersetzen in geöffneten Dateien</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2732"/> + <location filename="ViewManager/ViewManager.py" line="2734"/> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2739"/> + <location filename="ViewManager/ViewManager.py" line="2741"/> <source>Search for a text in open files and replace it</source> <translation>Nach Text in geöffneten Dateien suchen und ihn ersetzen</translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2741"/> + <location filename="ViewManager/ViewManager.py" line="2743"/> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation><b>Ersetzen in geöffneten Dateien</b><p>Sucht nach Text in den aktuell geöffneten Dateien und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="ViewManager/ViewManager.py" line="2732"/> + <location filename="ViewManager/ViewManager.py" line="2734"/> <source>Replace in Open Files...</source> <translation>Ersetzen in geöffneten Dateien...</translation> </message> @@ -56265,17 +56275,17 @@ <context> <name>VirusTotalAPI</name> <message> - <location filename="Helpviewer/VirusTotalApi.py" line="77"/> + <location filename="Helpviewer/VirusTotalApi.py" line="79"/> <source>Request limit has been reached.</source> <translation>Die Anfragegrenze wurde erreicht.</translation> </message> <message> - <location filename="Helpviewer/VirusTotalApi.py" line="78"/> + <location filename="Helpviewer/VirusTotalApi.py" line="80"/> <source>Invalid key given.</source> <translation>Ungültiger Schlüssel angegeben.</translation> </message> <message> - <location filename="Helpviewer/VirusTotalApi.py" line="79"/> + <location filename="Helpviewer/VirusTotalApi.py" line="81"/> <source>Requested item is not present.</source> <translation>Angefragtes Element ist nicht vorhanden.</translation> </message> @@ -56283,7 +56293,7 @@ <context> <name>VmListspacePlugin</name> <message> - <location filename="Plugins/PluginVmListspace.py" line="23"/> + <location filename="Plugins/PluginVmListspace.py" line="25"/> <source>Listspace</source> <translation>Fensterstapel m. Liste</translation> </message> @@ -56291,7 +56301,7 @@ <context> <name>VmTabviewPlugin</name> <message> - <location filename="Plugins/PluginVmTabview.py" line="23"/> + <location filename="Plugins/PluginVmTabview.py" line="25"/> <source>Tabbed View</source> <translation>Karteikarten</translation> </message> @@ -56299,27 +56309,27 @@ <context> <name>WatchPointModel</name> <message> - <location filename="Debugger/WatchPointModel.py" line="29"/> + <location filename="Debugger/WatchPointModel.py" line="31"/> <source>Condition</source> <translation>Bedingung</translation> </message> <message> - <location filename="Debugger/WatchPointModel.py" line="30"/> - <source>Special</source> - <translation>Speziell</translation> - </message> - <message> - <location filename="Debugger/WatchPointModel.py" line="31"/> - <source>Temporary</source> - <translation>Temporär</translation> - </message> - <message> <location filename="Debugger/WatchPointModel.py" line="32"/> - <source>Enabled</source> - <translation>Aktiv</translation> + <source>Special</source> + <translation>Speziell</translation> </message> <message> <location filename="Debugger/WatchPointModel.py" line="33"/> + <source>Temporary</source> + <translation>Temporär</translation> + </message> + <message> + <location filename="Debugger/WatchPointModel.py" line="34"/> + <source>Enabled</source> + <translation>Aktiv</translation> + </message> + <message> + <location filename="Debugger/WatchPointModel.py" line="35"/> <source>Ignore Count</source> <translation># Ignorierungen</translation> </message> @@ -56327,82 +56337,82 @@ <context> <name>WatchPointViewer</name> <message> - <location filename="Debugger/WatchPointViewer.py" line="44"/> + <location filename="Debugger/WatchPointViewer.py" line="46"/> <source>Watchpoints</source> <translation>Beobachtungspunkte</translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="168"/> + <location filename="Debugger/WatchPointViewer.py" line="170"/> <source>Add</source> <translation>Hinzufügen</translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="140"/> + <location filename="Debugger/WatchPointViewer.py" line="142"/> <source>Enable</source> <translation>Aktivieren</translation> </message> <message> + <location filename="Debugger/WatchPointViewer.py" line="174"/> + <source>Enable all</source> + <translation>Alle aktivieren</translation> + </message> + <message> + <location filename="Debugger/WatchPointViewer.py" line="145"/> + <source>Disable</source> + <translation>Deaktivieren</translation> + </message> + <message> + <location filename="Debugger/WatchPointViewer.py" line="178"/> + <source>Disable all</source> + <translation>Alle deaktivieren</translation> + </message> + <message> + <location filename="Debugger/WatchPointViewer.py" line="148"/> + <source>Delete</source> + <translation>Löschen</translation> + </message> + <message> + <location filename="Debugger/WatchPointViewer.py" line="182"/> + <source>Delete all</source> + <translation>Alle löschen</translation> + </message> + <message> <location filename="Debugger/WatchPointViewer.py" line="172"/> - <source>Enable all</source> - <translation>Alle aktivieren</translation> - </message> - <message> - <location filename="Debugger/WatchPointViewer.py" line="143"/> - <source>Disable</source> - <translation>Deaktivieren</translation> + <source>Enable selected</source> + <translation>Ausgewählte aktivieren</translation> </message> <message> <location filename="Debugger/WatchPointViewer.py" line="176"/> - <source>Disable all</source> - <translation>Alle deaktivieren</translation> - </message> - <message> - <location filename="Debugger/WatchPointViewer.py" line="146"/> - <source>Delete</source> - <translation>Löschen</translation> + <source>Disable selected</source> + <translation>Ausgewählte deaktivieren</translation> </message> <message> <location filename="Debugger/WatchPointViewer.py" line="180"/> - <source>Delete all</source> - <translation>Alle löschen</translation> - </message> - <message> - <location filename="Debugger/WatchPointViewer.py" line="170"/> - <source>Enable selected</source> - <translation>Ausgewählte aktivieren</translation> - </message> - <message> - <location filename="Debugger/WatchPointViewer.py" line="174"/> - <source>Disable selected</source> - <translation>Ausgewählte deaktivieren</translation> - </message> - <message> - <location filename="Debugger/WatchPointViewer.py" line="178"/> <source>Delete selected</source> <translation>Ausgewählte löschen</translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="138"/> + <location filename="Debugger/WatchPointViewer.py" line="140"/> <source>Edit...</source> <translation>Bearbeiten...</translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="226"/> + <location filename="Debugger/WatchPointViewer.py" line="228"/> <source><p>A watch expression '<b>{0}</b>' already exists.</p></source> <translation><p>Ein Beobachtungsausdruck '<b>{0}</b>' existiert bereits.</p></translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="230"/> + <location filename="Debugger/WatchPointViewer.py" line="232"/> <source><p>A watch expression '<b>{0}</b>' for the variable <b>{1}</b> already exists.</p></source> <translation><p>Ein Beobachtungsausdruck '<b>{0}</b>' für die Variable <b>{1}</b> existiert bereits.</p></translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="233"/> + <location filename="Debugger/WatchPointViewer.py" line="235"/> <source>Watch expression already exists</source> <translation>Beaobachtungsausdruck existiert bereits</translation> </message> <message> - <location filename="Debugger/WatchPointViewer.py" line="182"/> + <location filename="Debugger/WatchPointViewer.py" line="184"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> @@ -56443,37 +56453,37 @@ <context> <name>WebDatabasesModel</name> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="28"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="30"/> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="29"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="31"/> <source>Size</source> <translation>Größe</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="100"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="102"/> <source>Local</source> <translation>Lokal</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="118"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="120"/> <source>{0} ({1})</source> <translation>{0} ({1})</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="206"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="208"/> <source>bytes</source> <translation>Bytes</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="209"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="211"/> <source>kB</source> <translation>kB</translation> </message> <message> - <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="212"/> + <location filename="Helpviewer/OfflineStorage/WebDatabasesModel.py" line="214"/> <source>MB</source> <translation>MB</translation> </message> @@ -56481,12 +56491,12 @@ <context> <name>WidgetArea</name> <message> - <location filename="Tools/TRPreviewer.py" line="750"/> + <location filename="Tools/TRPreviewer.py" line="752"/> <source>Load UI File</source> <translation>UI Datei laden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="750"/> + <location filename="Tools/TRPreviewer.py" line="752"/> <source><p>The file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.</p></translation> </message> @@ -56494,12 +56504,12 @@ <context> <name>WidgetView</name> <message> - <location filename="Tools/TRPreviewer.py" line="696"/> + <location filename="Tools/TRPreviewer.py" line="698"/> <source>Load UI File</source> <translation>UI Datei laden</translation> </message> <message> - <location filename="Tools/TRPreviewer.py" line="696"/> + <location filename="Tools/TRPreviewer.py" line="698"/> <source><p>The file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.</p></translation> </message> @@ -56507,27 +56517,27 @@ <context> <name>XMLStreamReaderBase</name> <message> - <location filename="E5XML/XMLStreamReaderBase.py" line="55"/> + <location filename="E5XML/XMLStreamReaderBase.py" line="57"/> <source>XML parse error</source> <translation>XML Parse-Fehler</translation> </message> <message> - <location filename="E5XML/XMLStreamReaderBase.py" line="176"/> + <location filename="E5XML/XMLStreamReaderBase.py" line="178"/> <source>Pickle data encoding '{0}' is not supported.</source> <translation>Pickle Datenkodierung '{0}' wird nicht unterstützt.</translation> </message> <message> - <location filename="E5XML/XMLStreamReaderBase.py" line="51"/> + <location filename="E5XML/XMLStreamReaderBase.py" line="53"/> <source><p>XML parse error in file <b>{0}</b>, line {1}, column {2}</p><p>Error: {3}</p></source> <translation><p>XML Parse-Fehler in der Datei <b>{0}</b>, Zeile {1}, Spalte {2}</p><p>Fehler: {3}</p></translation> </message> <message> - <location filename="E5XML/XMLStreamReaderBase.py" line="74"/> + <location filename="E5XML/XMLStreamReaderBase.py" line="76"/> <source>File format version '{0}' is not supported.</source> <translation>Dateiformat Version '{0}' wird nicht unterstützt.</translation> </message> <message> - <location filename="E5XML/XMLStreamReaderBase.py" line="83"/> + <location filename="E5XML/XMLStreamReaderBase.py" line="85"/> <source>Bad value: {0}</source> <translation>Ungültiger Wert: {0}</translation> </message> @@ -56535,59 +56545,59 @@ <context> <name>XbelImporter</name> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="30"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="32"/> <source>eric5 Web Browser stores its bookmarks in the <b>{0}</b> XML file. This file is usually located in</source> <translation>Der eric5 Web Browser speichert seine Lesezeichen in der XML-Datei <b>{0}</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="61"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="63"/> <source>Please choose the file to begin importing bookmarks.</source> <translation>Bitte wähle die Datei, um den Import von Lesezeichen zu starten.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="61"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="63"/> <source>XBEL Bookmarks</source> <translation>XBEL Lesezeichen</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="108"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="110"/> <source>File '{0}' does not exist.</source> <translation>Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="136"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="138"/> <source>eric5 Web Browser Import</source> <translation>eric5 Web Browser Import</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="140"/> - <source>XBEL Import</source> - <translation>XBEL Import</translation> - </message> - <message> <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="142"/> + <source>XBEL Import</source> + <translation>XBEL Import</translation> + </message> + <message> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="144"/> <source>Imported {0}</source> <translation>Importiert {0}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="61"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="63"/> <source>You can import bookmarks from any browser that supports XBEL exporting. This file has usually the extension .xbel or .xml.</source> <translation>Es können Lesezeichen von jedem Browser, der den XBEL Export unterstützt, importiert werden. Diese Datei hat üblicherweise die Endung .xbel oder .xml.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="49"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="51"/> <source>Konqueror stores its bookmarks in the <b>bookmarks.xml</b> XML file. This file is usually located in</source> <translation>Konqueror speichert seine Lesezeichen in der XML-Datei <b>bookmarks.xml</b>. Diese Datei befindet sich gewöhnlich in</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="126"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="128"/> <source>Error when importing bookmarks on line {0}, column {1}: {2}</source> <translation>Fehler beim Importieren der Lesezeichen in Zeile {0}, Spalte {1}: {2}</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="138"/> + <location filename="Helpviewer/Bookmarks/BookmarksImporters/XbelImporter.py" line="140"/> <source>Konqueror Import</source> <translation>Konqueror Import</translation> </message> @@ -56595,12 +56605,12 @@ <context> <name>XbelReader</name> <message> - <location filename="Helpviewer/Bookmarks/XbelReader.py" line="71"/> + <location filename="Helpviewer/Bookmarks/XbelReader.py" line="73"/> <source>The file is not an XBEL version 1.0 file.</source> <translation>Die Datei ist keine XBEL Version 1.0 Datei.</translation> </message> <message> - <location filename="Helpviewer/Bookmarks/XbelReader.py" line="211"/> + <location filename="Helpviewer/Bookmarks/XbelReader.py" line="213"/> <source>Unknown title</source> <translation>Unbekannter Titel</translation> </message> @@ -56637,12 +56647,12 @@ <context> <name>eric5</name> <message> - <location filename="eric5.py" line="253"/> + <location filename="eric5.py" line="264"/> <source>Generating Main Window...</source> <translation>Erzeuge das Hauptfenster...</translation> </message> <message> - <location filename="eric5.py" line="248"/> + <location filename="eric5.py" line="259"/> <source>Starting...</source> <translation>Starte...</translation> </message> @@ -56650,24 +56660,24 @@ <context> <name>mercurial</name> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1281"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1287"/> <source><tr><td><b>Parent #{0}</b></td><td></td></tr> <tr><td><b>Changeset</b></td><td>{1}</td></tr></source> <translation><tr><td><b>Vorgänger #{0}</b></td><td></td></tr> <tr><td><b>Änderungssatz</b></td><td>{1}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1788"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1794"/> <source><tr><td><b>Tags</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Marken</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1796"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1802"/> <source><tr><td><b>Branches</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Zweige</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1297"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1303"/> <source><tr><td><b>Last author</b></td><td>{0}</td></tr> <tr><td><b>Committed date</b></td><td>{1}</td></tr> <tr><td><b>Committed time</b></td><td>{2}</td></tr></source> @@ -56676,7 +56686,7 @@ <tr><td><b>Committed um</b></td><td>{2}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1327"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1333"/> <source><h3>Repository information</h3> <p><table> <tr><td><b>Mercurial V.</b></td><td>{0}</td></tr> @@ -56693,24 +56703,24 @@ {2}</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1782"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1788"/> <source><tr><td><b>Tip</b></td><td></td></tr> </source> <translation><tr><td><b>Spitze</b></td><td></td></tr> </translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1784"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1790"/> <source><tr><td><b>Changeset</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Änderungssatz</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1800"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1806"/> <source><tr><td><b>Parents</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Vorgänger</b></td><td>{0}</td></tr></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1803"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1809"/> <source><tr><td><b>Last author</b></td><td>{0}</td></tr> <tr><td><b>Committed date</b></td><td>{1}</td></tr> <tr><td><b>Committed time</b></td><td>{2}</td></tr> @@ -56721,7 +56731,7 @@ </table></p></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1792"/> + <location filename="Plugins/VcsPlugins/vcsMercurial/hg.py" line="1798"/> <source><tr><td><b>Bookmarks</b></td><td>{0}</td></tr></source> <translation><tr><td><b>Lesezeichen</b></td><td>{0}</td></tr></translation> </message> @@ -56907,75 +56917,85 @@ <context> <name>py3Flakes</name> <message> - <location filename="Utilities/py3flakes/messages.py" line="53"/> + <location filename="Utilities/py2flakes/messages.py" line="62"/> <source>{0!r} imported but unused.</source> <translation>{0!r} importiert aber nicht benutzt.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="72"/> + <location filename="Utilities/py2flakes/messages.py" line="81"/> <source>Redefinition of unused {0!r} from line {1!r}.</source> <translation>Redefinition von nicht benutztem {0!r} aus Zeile {1!r}.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="92"/> + <location filename="Utilities/py2flakes/messages.py" line="118"/> <source>Import {0!r} from line {1!r} shadowed by loop variable.</source> <translation>Import {0!r} aus Zeile {1!r} durch lokale Variable verdeckt.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="112"/> + <location filename="Utilities/py2flakes/messages.py" line="138"/> <source>'from {0} import *' used; unable to detect undefined names.</source> <translation>'from {0} import *' verwendet; nicht definierte Namen können nicht entdeckt werden.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="131"/> + <location filename="Utilities/py2flakes/messages.py" line="157"/> <source>Undefined name {0!r}.</source> <translation>Nicht definierter Name {0!r}.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="149"/> + <location filename="Utilities/py2flakes/messages.py" line="175"/> <source>Undefined name {0!r} in __all__.</source> <translation>Nicht definierter Name {0!r} in __all__.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="167"/> + <location filename="Utilities/py2flakes/messages.py" line="194"/> <source>Local variable {0!r} (defined in enclosing scope on line {1!r}) referenced before assignment.</source> <translation>Lokale Variable {0!r} (definiert im Sichtbarkeitsbereich in Zeile {1!r}) wird vor einer Zuweisung verwendet.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="188"/> + <location filename="Utilities/py2flakes/messages.py" line="215"/> <source>Duplicate argument {0!r} in function definition.</source> <translation>Doppeltes Argument {0!r} in Funktionsdefinition.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="207"/> + <location filename="Utilities/py3flakes/messages.py" line="234"/> <source>Redefinition of function {0!r} from line {1!r}.</source> <translation>Redefinition der Funktion {0!r} aus Zeile {1!r}.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="227"/> + <location filename="Utilities/py2flakes/messages.py" line="254"/> <source>Future import(s) {0!r} after other statements.</source> <translation>Future Import(s) {0!r} nach anderen Statements.</translation> </message> <message> - <location filename="Utilities/py3flakes/messages.py" line="249"/> + <location filename="Utilities/py2flakes/messages.py" line="276"/> <source>Local variable {0!r} is assigned to but never used.</source> <translation>Lokale Variable {0!r} wurde zugewiesen aber nicht verwendet.</translation> </message> + <message> + <location filename="Utilities/py2flakes/messages.py" line="98"/> + <source>List comprehension redefines {0!r} from line {1!r}.</source> + <translation>Redefinition von {0!r} aus Zeile {1!r} durch eine List Comprehension.</translation> + </message> + <message> + <location filename="Utilities/py2flakes/messages.py" line="234"/> + <source>Redefinition of {0!r} from line {1!r}.</source> + <translation>Redefinition von {0!r} aus Zeile {1!r}.</translation> + </message> </context> <context> <name>subversion</name> <message> - <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1511"/> + <location filename="Plugins/VcsPlugins/vcsSubversion/subversion.py" line="1517"/> <source><h3>Repository information</h3><table><tr><td><b>Subversion V.</b></td><td>{0}</td></tr><tr><td><b>URL</b></td><td>{1}</td></tr><tr><td><b>Current revision</b></td><td>{2}</td></tr><tr><td><b>Committed revision</b></td><td>{3}</td></tr><tr><td><b>Committed date</b></td><td>{4}</td></tr><tr><td><b>Comitted time</b></td><td>{5}</td></tr><tr><td><b>Last author</b></td><td>{6}</td></tr></table></source> <translation><h3>Repository Informationen</h3><table><tr><td><b>Subversion V.</b></td><td>{0}</td></tr><tr><td><b>URL</b></td><td>{1}</td></tr><tr><td><b>Aktuelle Revision</b></td><td>{2}</td></tr><tr><td><b>Eingepflegte Revision</b></td><td>{3}</td></tr><tr><td><b>Einpflegedatum</b></td><td>{4}</td></tr><tr><td><b>Einpflegezeit</b></td><td>{5}</td></tr><tr><td><b>Letzter Autor</b></td><td>{6}</td></tr></table></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1639"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1641"/> <source>unknown</source> <translation>Unbekannt</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1640"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/subversion.py" line="1642"/> <source><h3>Repository information</h3><table><tr><td><b>PySvn V.</b></td><td>{0}</td></tr><tr><td><b>Subversion V.</b></td><td>{1}</td></tr><tr><td><b>Subversion API V.</b></td><td>{2}</td></tr><tr><td><b>URL</b></td><td>{3}</td></tr><tr><td><b>Current revision</b></td><td>{4}</td></tr><tr><td><b>Committed revision</b></td><td>{5}</td></tr><tr><td><b>Committed date</b></td><td>{6}</td></tr><tr><td><b>Comitted time</b></td><td>{7}</td></tr><tr><td><b>Last author</b></td><td>{8}</td></tr></table></source> <translation><h3>Repository Informationen</h3><table><tr><td><b>PySvn V.</b></td><td>{0}</td></tr><tr><td><b>Subversion V.</b></td><td>{1}</td></tr><tr><td><b>Subversion API V.</b></td><td>{2}</td></tr><tr><td><b>URL</b></td><td>{3}</td></tr><tr><td><b>Aktuelle Revision</b></td><td>{4}</td></tr><tr><td><b>Eingepflegte Revision</b></td><td>{5}</td></tr><tr><td><b>Einpflegedatum</b></td><td>{6}</td></tr><tr><td><b>Einpflegezeit</b></td><td>{7}</td></tr><tr><td><b>Letzter Autor</b></td><td>{8}</td></tr></table></translation> </message>